{"info":{"_postman_id":"51f825dd-7a4f-4316-a6ce-15f2d8f1dc65","name":"Harmony Node API","description":"<html><head></head><body><p>Harmony is a fast and secure blockchain for decentralized applications. Our production Mainnet supports 2 shards of 500 nodes, producing blocks in 2 seconds with finality.</p>\n<p>Our Effective Proof-of-Stake (EPoS) reduces centralization while supporting stake delegation, reward compounding, and double-sign slashing.</p>\n<h1 id=\"api-frameworks\">API Frameworks</h1>\n<p>There are 2 API frameworks to interact with the nodes on the Harmony network:</p>\n<ul>\n<li><p>RPCs (Remote Procedure Calls)</p>\n</li>\n<li><p>Rosetta</p>\n</li>\n</ul>\n<h1 id=\"sdks\">SDKs</h1>\n<p>Harmony has several SDKs that you can use to interact with the network.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Language</th>\n<th>Github</th>\n<th>Documentation</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Javascript</td>\n<td><a href=\"https://github.com/harmony-one/sdk\">https://github.com/harmony-one/sdk</a></td>\n<td><a href=\"https://harmony.one/js-sdk\">https://harmony.one/js-sdk</a></td>\n</tr>\n<tr>\n<td>Golang</td>\n<td><a href=\"https://github.com/harmony-one/go-sdk\">https://github.com/harmony-one/go-sdk</a></td>\n<td>N/A</td>\n</tr>\n<tr>\n<td>Java</td>\n<td><a href=\"https://github.com/harmony-one/harmonyj\">https://github.com/harmony-one/harmonyj</a></td>\n<td>N/A</td>\n</tr>\n<tr>\n<td>Python</td>\n<td><a href=\"https://github.com/harmony-one/pyhmy\">https://github.com/harmony-one/pyhmy</a></td>\n<td>N/A</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"rosetta-sdks\">Rosetta SDKs</h1>\n<p>Harmony is in the process of updating the main SDKs to use the Harmony Rosetta API.<br>Rosetta and the community has full SDKs for any Rosetta enabled network, including Harmony.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Language</th>\n<th>Github</th>\n<th>Documentation</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Javascript</td>\n<td><a href=\"https://github.com/SmartArray/rosetta-node-sdk\">https://github.com/SmartArray/rosetta-node-sdk</a></td>\n<td><a href=\"https://www.rosetta-api.org/docs/welcome.html\">https://www.rosetta-api.org/docs/welcome.html</a></td>\n</tr>\n<tr>\n<td>Golang</td>\n<td><a href=\"https://github.com/coinbase/rosetta-sdk-go\">https://github.com/coinbase/rosetta-sdk-go</a></td>\n<td><a href=\"https://www.rosetta-api.org/docs/welcome.html\">https://www.rosetta-api.org/docs/welcome.html</a></td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><em>Any Harmony specific details for Rosetta is documented in the section below.</em></p>\n</blockquote>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"API Frameworks","slug":"api-frameworks"},{"content":"SDKs","slug":"sdks"},{"content":"Rosetta SDKs","slug":"rosetta-sdks"}],"owner":"8725027","collectionId":"51f825dd-7a4f-4316-a6ce-15f2d8f1dc65","publishedId":"TVYM3F6h","public":true,"customColor":{"top-bar":"FFFF","right-sidebar":"1B295E","highlight":"00AEE9"},"publishDate":"2020-11-01T14:45:55.000Z"},"item":[{"name":"RPC","item":[{"name":"Smart Contract","item":[{"name":"hmyv2_call","event":[{"listen":"test","script":{"id":"6720d1ad-f45d-47da-a5de-6979211c6144","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript","packages":{}}}],"id":"d34b1f82-9b29-4b68-bac7-52fa0a8884b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_call\",\n    \"params\": [\n        {\n            \"to\": \"0x08AE1abFE01aEA60a47663bCe0794eCCD5763c19\"\n        },\n        \"latest\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"description\">Description</h4>\n<p>Executes a smart contract code without saving state</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>Object</code> - Smart contract call object</p>\n<ul>\n<li><p><code>to</code> - <code>String</code> : Smart contract address</p>\n</li>\n<li><p><code>from</code> - <code>String</code> : Wallet address, optional</p>\n</li>\n<li><p><code>gas</code> - <code>Number</code> : Gas to execute the smart contract call, optional</p>\n</li>\n<li><p><code>gasPrice</code> - <code>Number</code> : Gas price to execute smart contract call, optional</p>\n</li>\n<li><p><code>value</code> - <code>Number</code> : Value sent with the smart contract call, optional</p>\n</li>\n<li><p><code>data</code> - <code>String</code> : Hash of smart contract method and parameters, optional</p>\n</li>\n</ul>\n<p><code>Number</code>: Block number in decimal, or string tag \"latest\"</p>\n<h4 id=\"result\">Result</h4>\n<p><code>String</code> - Return value of the executed smart contract</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"28420ceb-d8c3-4729-80cc-a5956e33a506","name":"hmyv2_call","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_call\",\n    \"params\": [\n        {\n            \"to\": \"0x08AE1abFE01aEA60a47663bCe0794eCCD5763c19\"\n        },\n        \"latest\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 Sep 2024 09:59:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"63"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range"},{"key":"Access-Control-Expose-Headers","value":"Content-Length,Content-Range"},{"key":"Strict-Transport-Security","value":"max-age=31536000"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": \"0x\"\n}"}],"_postman_id":"d34b1f82-9b29-4b68-bac7-52fa0a8884b1"},{"name":"hmyv2_estimateGas","event":[{"listen":"test","script":{"id":"2790dfdd-b2ce-4846-ab93-f227fa60bd4a","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"b9bbfe71-8127-4dda-b26c-ff95c4c22abd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_estimateGas\",\n    \"params\": [\n        {\n            \"to\": \"0x08AE1abFE01aEA60a47663bCe0794eCCD5763c19\"\n        }\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"description\">Description</h4>\n<p>Executes a smart contract transction without created a transaction and saving data</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>Object</code> - Smart contract call object</p>\n<ul>\n<li><code>to</code> - <code>String</code> : Smart contract address</li>\n<li><code>from</code> - <code>String</code> : Wallet address, optional</li>\n<li><code>gas</code> - <code>Number</code> : Gas to execute the smart contract call, optional</li>\n<li><code>gasPrice</code> - <code>Number</code> : Gas price to execute smart contract call, optional</li>\n<li><code>value</code> - <code>Number</code> : Value sent with the smart contract call, optional</li>\n<li><code>data</code> - <code>String</code> : Hash of smart contract method and parameters, optional</li>\n</ul>\n<p><code>Number</code> : Block number</p>\n<h4 id=\"result\">Result</h4>\n<p><code>String</code> - Hex of estimated gas price of smart contract call</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"a4a39cdd-921e-4ffb-8f0b-b453e08decf9","name":"hmyv2_estimateGas","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_estimateGas\",\n    \"params\": [\n        {\n            \"to\": \"0x08AE1abFE01aEA60a47663bCe0794eCCD5763c19\"\n        }\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:49:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"67"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": \"0x5208\"\n}"}],"_postman_id":"b9bbfe71-8127-4dda-b26c-ff95c4c22abd"},{"name":"hmyv2_getCode","event":[{"listen":"test","script":{"id":"f762244b-ef88-44e5-9a62-fa8b806dc535","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"e13e9d78-9322-4dc8-8917-f2e721a8e556","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCode\",\n    \"params\": [\n        \"0x08AE1abFE01aEA60a47663bCe0794eCCD5763c19\",\n        370000\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"d7891095-5952-4e19-84e5-534eca742c6c","name":"hmyv2_getCode","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCode\",\n    \"params\": [\n        \"0x08AE1abFE01aEA60a47663bCe0794eCCD5763c19\",\n        370000\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:49:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"63"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": \"0xDEADBEEF\"\n}"}],"_postman_id":"e13e9d78-9322-4dc8-8917-f2e721a8e556"},{"name":"hmyv2_getStorageAt","event":[{"listen":"test","script":{"id":"6f28b30b-98a0-46e4-99ca-12092d0439ac","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"fa8ac8bd-952d-4149-968c-857ca76da43f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStorageAt\",\n    \"params\": [\n        \"0x295a70b2de5e3953354a6a8344e616ed314d7251\",\n        \"0x0\",\n        370000\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li><p><code>String</code> : Smart contract address</p>\n</li>\n<li><p><code>String</code> : Hex representation of storage location</p>\n</li>\n<li><p><code>Number</code> : Block number</p>\n</li>\n</ul>\n<h4 id=\"result\">Result</h4>\n<p><code>String</code> - Data stored at the smart contract location</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"cad34dab-bb27-44d6-b030-caeb47eced54","name":"hmyv2_getStorageAt","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStorageAt\",\n    \"params\": [\n        \"0x295a70b2de5e3953354a6a8344e616ed314d7251\",\n        \"0x0\",\n        370000\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:52:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"66"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": \"0x0000000000000000000000000000000000000000000000000000000000000000\"\n}"}],"_postman_id":"fa8ac8bd-952d-4149-968c-857ca76da43f"}],"id":"99e8449b-788d-4b96-8b0e-c7efabccd20f","description":"<h2 id=\"contract-creation\">Contract Creation</h2>\n<p>Contracts are created via a transaction on-chain. Reference the <strong>Transaction</strong> sections for more details. </p>\n","_postman_id":"99e8449b-788d-4b96-8b0e-c7efabccd20f"},{"name":"Staking","item":[{"name":"Delegation","item":[{"name":"hmyv2_getDelegationsByDelegator","event":[{"listen":"test","script":{"id":"b941505a-0bc8-47fa-b19d-9f9875e408ff","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"454b032c-6072-4ecb-bf24-38b3d6d2af69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getDelegationsByDelegator\",\n    \"params\": [\n        \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> : Delegator address</p>\n<h4 id=\"result\">Result</h4>\n<p><code>JSON Array</code> of <code>JSON Object</code></p>\n<ul>\n<li><code>validator_address</code> - <code>String</code> : Validator wallet address</li>\n<li><code>delegator_address</code> - <code>String</code> : Delegator wallet address</li>\n<li><code>amount</code> - <code>Number</code> : Amount delegated in atto</li>\n<li><code>reward</code> - <code>Number</code> : Unclaimed rewards in Atto</li>\n<li><code>Undelegations</code> - <code>JSON Array</code> : List of pending undelegations</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"9306b661-f7df-4246-a926-52f415057b7b","name":"hmyv2_getDelegationsByDelegator","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getDelegationsByDelegator\",\n    \"params\": [\n        \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:53:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"327"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.90098018e+23,\n            \"delegator_address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n            \"reward\": 1.4393440460783549302254e+22,\n            \"validator_address\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.17573513487e+23,\n            \"delegator_address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n            \"reward\": 1.0878129057499767412378e+22,\n            \"validator_address\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.5286315044e+23,\n            \"delegator_address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n            \"reward\": 1.1433895409790525873224e+22,\n            \"validator_address\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n        }\n    ]\n}"}],"_postman_id":"454b032c-6072-4ecb-bf24-38b3d6d2af69"},{"name":"hmyv2_getDelegationsByDelegatorByBlockNumber","event":[{"listen":"test","script":{"id":"5d5e49e6-6c88-4792-bd93-a1c0b2315aba","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"8ce13bda-e768-47b9-9dbe-193aba410b0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getDelegationsByDelegatorByBlockNumber\",\n    \"params\": [\n        \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n        3700000\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li><code>String</code> : Delegator wallet address</li>\n<li><code>Number</code> : Block number</li>\n</ul>\n<h4 id=\"result\">Result</h4>\n<p>See <code>hmyv2_getDelegationsByDelegator</code> for Delegator field descriptions</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"553cc260-1a99-489a-8737-f540aef696cc","name":"hmyv2_getDelegationsByDelegatorByBlockNumber","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getDelegationsByDelegatorByBlockNumber\",\n    \"params\": [\n        \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n        3700000\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:53:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"319"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.90098018e+23,\n            \"delegator_address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n            \"reward\": 707732421124633545050,\n            \"validator_address\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.17573513487e+23,\n            \"delegator_address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n            \"reward\": 530186649349346919203,\n            \"validator_address\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.17573e+23,\n            \"delegator_address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n            \"reward\": 519118543630209154307,\n            \"validator_address\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n        }\n    ]\n}"}],"_postman_id":"8ce13bda-e768-47b9-9dbe-193aba410b0a"},{"name":"hmyv2_getDelegationsByValidator","event":[{"listen":"test","script":{"id":"6a19cebd-beb1-42d6-b934-d26787f6060b","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"2e02d8db-8fec-41d9-a672-2c9862f63f39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getDelegationsByValidator\",\n    \"params\": [\n        \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li><code>String</code> :  Validator wallet address</li>\n</ul>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of <code>Object</code></p>\n<ul>\n<li><code>validator_address</code> - <code>String</code> : Validator wallet address</li>\n<li><code>delegator_address</code> - <code>String</code> : Delegator wallet address</li>\n<li><code>amount</code> - <code>Number</code> : Amount delegated in Atto</li>\n<li><code>reward</code> - <code>Number</code> : Unclaimed rewards in Atto</li>\n<li><code>Undelegations</code> - <code>JSON Array</code> : List of pending undelegations</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"d301f6c5-af93-41d9-a9ee-3929e813d93b","name":"hmyv2_getDelegationsByValidator","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getDelegationsByValidator\",\n    \"params\": [\n        \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:53:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.51799e+23,\n            \"delegator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n            \"reward\": 4.0532782610072635365154e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1rul9mrxkrfjrupvary3h64uw9aa6qp8n2hd93p\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.0507140418734e+25,\n            \"delegator_address\": \"one142w6su2shfgx8jhckcnakxkjzz63fj0tukdvyz\",\n            \"reward\": 1.60504303651740494686558e+23,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1wcd73jcajz7wsaquzxvcjv94fere2xtqyyjz2q\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1nhz9g98na0x2mgal2z9yth77lw83arf7ndr7zs\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.58654e+23,\n            \"delegator_address\": \"one1atdwrxe98t8kx2cy9r42qjvuslps7dqtxtn6aj\",\n            \"reward\": 229781080725244031185,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1780hukztd6ty8f7z6z6wye0j6hez3ds8jydg5c\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.84954997e+22,\n            \"delegator_address\": \"one157rwjephc5y9vt3wc685uqlfy62amjf0ukavcw\",\n            \"reward\": 34868342253210674471,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6e+22,\n            \"delegator_address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n            \"reward\": 21096534847754641305,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n            \"reward\": 374557440456891689,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one18xfcqu7jf0cq5apweyu5jxr30x9cvetegwqfss\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 6.75000009897e+23,\n                    \"Epoch\": 316\n                }\n            ],\n            \"amount\": 3e+24,\n            \"delegator_address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n            \"reward\": 182362496713372350554,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.23571959731e+23,\n            \"delegator_address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n            \"reward\": 1.300110952117765809299e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vcqez6s3crzmj07kfdy2jz0kd3j0s7sk5qrdye\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one19w8klanmgjqw4waxuv5y2ncwfz5d6f3md74t8x\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1gclsr6czt25s56e7dkpy7cn22096xtqwjqupcm\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n            \"reward\": 198342597438885839,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.961773661e+21,\n            \"delegator_address\": \"one1f6k0cctegv22cadjnurhspl0q4a99k6plx9tsw\",\n            \"reward\": 185029006443520898451,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1sx2lu574e3xxqp67zm6x3hqds9ppnkmzf76fkc\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.48e+21,\n            \"delegator_address\": \"one1alvdxf4hx0ads7s0q9v4g6h5teh0fwkprft6f6\",\n            \"reward\": 85603904203705823310,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1jnvncsmlxtnr9znhqqx9rfexggmuj25gmh8pn7\",\n            \"reward\": 788882632573932027,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1nsvft6gsue0feemx59cd2ujszp985rznp8lzcl\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.383164958737e+23,\n            \"delegator_address\": \"one1rf732ne5z74ahp79c39jpezz07qzuwz2gtwgyn\",\n            \"reward\": 661677331816468648026,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1acyxv69xjgunv3z5ymnjt2w70q7rdardr4a3uz\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2e+21,\n            \"delegator_address\": \"one1p6wcwnajxc208uxpdlx9sqktt6t8kk8nw9hshf\",\n            \"reward\": 102150964911406356352,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1gsghhyd2tpf4my8ave7nm4946ypytjw0sjsa70\",\n            \"reward\": 477120076252291985,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.02e+21,\n            \"delegator_address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n            \"reward\": 14482961582510139266,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1782xv62cx49zdhr474lt4emc97xnvrpt8d6yrx\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.5e+22,\n            \"delegator_address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n            \"reward\": 38540924608886970240,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1lfuvmhz4zgvpeyap5k7qngj25xv84t65vnecye\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3e+21,\n            \"delegator_address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n            \"reward\": 68700991568034929334,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1c6cfkvgjyxw7l89urs25rqe57mkx304und53de\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.53099e+23,\n            \"delegator_address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n            \"reward\": 1.350570421545539927759e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+23,\n            \"delegator_address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n            \"reward\": 2.5021036772087816417382e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n            \"reward\": 25706760160153250532,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.6786e+22,\n            \"delegator_address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n            \"reward\": 55964212249933446436,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1d0974tslprzkxgsatc8ahaxxa2p8phvpgnahjx\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.8233169052e+22,\n            \"delegator_address\": \"one15n3hvvk4huwpp2zxtcvj3jtl76vxlpkjfhr4f5\",\n            \"reward\": 1.189597777385288433521e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.3883401779e+23,\n            \"delegator_address\": \"one1j0nmr445gf35lskevtac7khtudt5vah27af2c9\",\n            \"reward\": 54707783154318501317,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3e+21,\n            \"delegator_address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n            \"reward\": 44291804356104721785,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.264927202e+21,\n            \"delegator_address\": \"one1kt957tv5v6h3ez45zpvwyyu59c2ej9dx0285qw\",\n            \"reward\": 6155000429728435693,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1unmae47j2w3q9vxqs8fjpa33u8eu8w5dfsuh5w\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.134e+22,\n            \"delegator_address\": \"one17gpf07jvactrjk6p6l67au55ap5nd3sknh8l63\",\n            \"reward\": 417687471376278286308,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.4e+22,\n            \"delegator_address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n            \"reward\": 107782803428295324453,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.5e+23,\n            \"delegator_address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n            \"reward\": 3.631254687745942464398e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+22,\n            \"delegator_address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n            \"reward\": 567817538823018576855,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1rjyg5f8cq2utrawfe2hyck96ac7z67j4efgswm\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1rmsztmw3727yjuszwd484z8mvf9v6fkkze4r5s\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.00005e+23,\n            \"delegator_address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n            \"reward\": 2.10114384617549909368e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.0905e+22,\n            \"delegator_address\": \"one1ps4gky30d2y60q59ydu72l7dtch6zvvtmu6x0z\",\n            \"reward\": 743603648705455945962,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one13s9upxk9rsvy8e8dn65s9w54kd4e3yx8lxw5hr\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+21,\n            \"delegator_address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n            \"reward\": 5094386457326007608,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2e+21,\n            \"delegator_address\": \"one19jvw9uruqem0hehduv95km63947p4cvxfgnsg0\",\n            \"reward\": 28672301074010352181,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.3799252e+23,\n            \"delegator_address\": \"one1vkncynzf0kegy80nfa0ppfnktg4ltr7dvlzag9\",\n            \"reward\": 1.233753581818409100925e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.375e+21,\n            \"delegator_address\": \"one1h2kljdu542mrg6zjv33w9nfwt3lpxnzhn6dscz\",\n            \"reward\": 15218093368918611294,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.359398099053e+24,\n            \"delegator_address\": \"one1t4kkz8dl7kg9hmkauyanjrpprfk03jffl7shh2\",\n            \"reward\": 2.0754254551351602377179e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n            \"reward\": 822753349713379119,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n            \"reward\": 465203080526527081,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.672805e+23,\n            \"delegator_address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n            \"reward\": 598489171734967462405,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.001e+21,\n            \"delegator_address\": \"one1nhfnjxfwrkk8653jfz97wtdxvw295nws2vft48\",\n            \"reward\": 5649200934336828078,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.00000586e+22,\n            \"delegator_address\": \"one1d7rudy5z7tsp9th0c8m3p527znu2lxuq8wd0qq\",\n            \"reward\": 14176017910804516957,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1lj4fj7tz2ftp6ahcxsk07usqvaedu524den8kk\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vum7puzcd56ds3dvpyap4mm8e5ctzagzn7fmn3\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1u8pu8pwfh7q7x8e70ptnztwdk6n505adm42yva\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.2016531e+25,\n            \"delegator_address\": \"one1tzjapdswlu93wr0mjul2vggs8x5mqqeelk2pt7\",\n            \"reward\": 1.0343907539898747112589e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.4553966651e+22,\n            \"delegator_address\": \"one1l85psy64zvjjqwz2j6224tekjsslk37ecdggfc\",\n            \"reward\": 74639607673799440958,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.71e+23,\n            \"delegator_address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n            \"reward\": 9.30548943467459071827e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.25e+23,\n            \"delegator_address\": \"one1c0gjxhujxst85e8az6mll2s8tm30609d9ylxe6\",\n            \"reward\": 2.291544449173629556222e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one14x79dn9qunnputr3n0z3594ve7lla77vc3wjrr\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.881784939e+23,\n            \"delegator_address\": \"one18pqt2455nl3n0qs8v5l2zfl7ez5dygwy3q8tm8\",\n            \"reward\": 2.332535502788496429668e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.4e+21,\n            \"delegator_address\": \"one1jfswdzr7cruvpyp2t2ed5znun6uvku7ynqzq22\",\n            \"reward\": 30488262108043087491,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.06830616e+24,\n            \"delegator_address\": \"one1khau8lyy2hqesvve6wp33ful5d3yysuemy97w6\",\n            \"reward\": 8.656191930442105372071e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+22,\n            \"delegator_address\": \"one1sq0jgnwl6r73h30v352jmfr9lfyy35m8vna0te\",\n            \"reward\": 2.114872209715324769472e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1zctfnssn5frpfz9ms0dn5l5dkgl66mjyujdz39\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.7477083333333333e+22,\n            \"delegator_address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n            \"reward\": 9296771384792198756,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n            \"reward\": 373243290251892679,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 2.053e+22,\n                    \"Epoch\": 315\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one1ekqjas85d6d9axn9mapgr3dr9c5kc503qcsdkd\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+21,\n            \"delegator_address\": \"one1qj0f0dwg4jr8lmguxafsuu4pejzcmvz0e277ld\",\n            \"reward\": 12879581032549218129,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.585e+21,\n            \"delegator_address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n            \"reward\": 5778009253550293586,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1fvk8tcpn8dxk7vcy86u6lsc745dcs2tel6k7fq\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+22,\n            \"delegator_address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n            \"reward\": 37547860434013158959,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one162nx454ej6rp0wjag2f8czcayruwrf33xuvhj0\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.667445e+22,\n            \"delegator_address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n            \"reward\": 53812060246525761439,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1rztveplnzzx5q2za6aucxlckqsek65juvlq73w\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.27928547e+23,\n            \"delegator_address\": \"one1pmgre5h990fw2yn4uxkfud4l8drzvsdzr4xczg\",\n            \"reward\": 142362790664699752360,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one109ga287k9pkqg3en8jg2hw2r89tny663uw5vhm\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.60998e+23,\n            \"delegator_address\": \"one1vegzurdx7vgpw4te5jwdvyvx4qsgdy3htk4ncv\",\n            \"reward\": 1.216596622138860774036e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.8e+22,\n            \"delegator_address\": \"one1sklp8wl0dxa0tm3ctrcvpq5r6pzulugx4uy630\",\n            \"reward\": 1.225745962475915762211e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1h7y8znxfcltckram228ru3y8cfpuvwmg5pnpqq\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.05877325e+24,\n            \"delegator_address\": \"one1mgesvhk7yhyc65mr9yardtsmgkyafxn8myfy3l\",\n            \"reward\": 179554333034395396034,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.7015816054e+23,\n            \"delegator_address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n            \"reward\": 22802241459317134513,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1x43shru04v9z7us4f0p954wrly4yv3230cc4ta\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.85795047974e+23,\n            \"delegator_address\": \"one1dazcecu7hhhxy379qprmucn657kwg6fp9653jt\",\n            \"reward\": 1.0975744133161932131517e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7e+21,\n            \"delegator_address\": \"one1q7frj9luhffqvg9hk0f4kv3xrux32gpcuyz84j\",\n            \"reward\": 13998457327700462506,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one152tnq77zlhx4g74wt9jqkk7e8el67u6gun68fu\",\n            \"reward\": 319477359669838398,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1qt6pha5n7sr9xmfchhccxtapr7prnymyhk5t6u\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.5e+22,\n            \"delegator_address\": \"one1uvu4uq272045stknx5a9fssgf0ghgen0sydrkz\",\n            \"reward\": 229567117338752922551,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.0547e+22,\n            \"delegator_address\": \"one10zsqm4mk7gc3n4z6xtywr2am0jnmq283lvwrlw\",\n            \"reward\": 683369055359797794808,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.0377154573754e+24,\n            \"delegator_address\": \"one12tthayx2u7g262afmcfca29ktnx9aajjd8uj5j\",\n            \"reward\": 4.9076045515036225651741e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 8e+22,\n            \"delegator_address\": \"one1xqfcamlmsxjcuvkurp4zvxr8eapfh7u9xypfem\",\n            \"reward\": 671977631497308873454,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.112576e+24,\n            \"delegator_address\": \"one1cvn9mn9zhww75ynp6a9ul8wrcg8lt6lty6wfvk\",\n            \"reward\": 63634215059738782531,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1kjncp7r9er5cuvnxxwuw9xquwsgr4q6uqggr97\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3e+22,\n            \"delegator_address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n            \"reward\": 40997884769471148166,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vuqvgn99dnglxr2u0mae0jaax9ldm6rzg27g4s\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1rq0acfa6ktzcnf593smes3hqs47gmcnx9dv75r\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.019115e+24,\n            \"delegator_address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n            \"reward\": 9.109117228262568851125e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.81425621532e+23,\n            \"delegator_address\": \"one1wuau575jjjgk2e03qps7k8lfh8t3hyw3tgw5f7\",\n            \"reward\": 2.868449501047599397267e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+23,\n            \"delegator_address\": \"one1mlj2ecjmea22jgp9hrpvndhk09fsahhs28mm8x\",\n            \"reward\": 458372196896037681934,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one12frku6ue384mze6x3hcmyqc8w5f6xetlgec7qz\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1u0kjlh56ny568dzaa20gmuramsgwdkfdm74q9w\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.5e+21,\n            \"delegator_address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n            \"reward\": 37905331959002564604,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.518e+23,\n            \"delegator_address\": \"one19ylhvmuka4uel3e8hla3dvadayujseftezee2w\",\n            \"reward\": 1.732624860845588857888e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1uf2mck76qeug6qy9kejq2rjvtqlzw0uz5qx4dh\",\n            \"reward\": 69774780180518162,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.526e+22,\n            \"delegator_address\": \"one165stpdzl6c6pwdkt9f5xrad063e00symwyznd6\",\n            \"reward\": 104070004024492331427,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one127la8ga6u7xh9n9qtagu5k45gq673v9wwz8lx3\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.484e+21,\n            \"delegator_address\": \"one1gvpljml6yfafk0p328d2k7mjxkpfptd8p7qmxn\",\n            \"reward\": 78574038421379075371,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.3686257734e+22,\n            \"delegator_address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n            \"reward\": 185914732170209557929,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1n7hz4jcy9ms509d3prf8393ymdgmh09vvpkvhl\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.403e+22,\n            \"delegator_address\": \"one1gcexg4vtvts9daclw4npa59ttcrfxywaqfgh3y\",\n            \"reward\": 485257976918421466170,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1f7kjcy579yc7r8zhzn44nj92l88r3jaa9dm3x9\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.55e+23,\n            \"delegator_address\": \"one1nffxvsrhxn94xpft9eyek7uxrympjgx0szm8ru\",\n            \"reward\": 143354465211581597541,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+22,\n            \"delegator_address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n            \"reward\": 125222443396906809927,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.53305e+23,\n            \"delegator_address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n            \"reward\": 3.577588839950510178193e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1ct3jxm4j23c0yjxw89mfj5jp8dwfxzle4eacr0\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.5e+23,\n            \"delegator_address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n            \"reward\": 72383503007879816787,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.3278e+22,\n            \"delegator_address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n            \"reward\": 233708498939055724825,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.9e+22,\n            \"delegator_address\": \"one1ns7j3ylr96c4fqnaeacny9qf7ufzz489q6v0g5\",\n            \"reward\": 53316292301280162621,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1dsqz5qn8pv58nnudvnn0ngm6f9dr3d4t8dcvtn\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vfgwkf2lney0r2sq4hsy3vhpvwcxf33qpurtpj\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.82211361929e+23,\n            \"delegator_address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n            \"reward\": 9.237130652040196597114e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.5e+21,\n            \"delegator_address\": \"one1mp9hnvwm5tc7hjuwge6n4llarmxclget7r93rz\",\n            \"reward\": 79651506553320152316,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1g24xkdx2u2l2u0fu3v8cahwwnn6t0t3755tydw\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+22,\n            \"delegator_address\": \"one123fdvcj5dk4l55jz990fukssq7sryvt7v9zdce\",\n            \"reward\": 142762391421878501569,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4e+22,\n            \"delegator_address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n            \"reward\": 89518102105956950601,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.22786227051e+23,\n            \"delegator_address\": \"one1ksemd8htnmw9plclg8wjrqql4rnax7kqpzrfy3\",\n            \"reward\": 138833672032785737736,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.3145643e+21,\n            \"delegator_address\": \"one12yctampe4hqeug668v48kd2tvm85j0u0lk9lh9\",\n            \"reward\": 1563743954893683412,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one12saruhnv9f63dqhuadjq3vhqm3nwyw2ac40uyz\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1n9ewg25xzelcpndchqsym2ury705p27cw9nzlk\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1wphasach2wkzdxndadxjactawt3s2tcyt6y29n\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1xmqu5jft3d2rdaxzgcgal4tt2ycn8fc5pjejgs\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1hcl5swxvs3t5lx2d9rr02004dgmcxapu7jfdkp\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.66543536135e+23,\n            \"delegator_address\": \"one1hu8dqr7glfengcnw2sv7vxzcc25h3art4crd9v\",\n            \"reward\": 167493370974943138797,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.5e+22,\n            \"delegator_address\": \"one1ej3c24rs9p2cedv8mm0fpd6evrcv22s5p2yk4p\",\n            \"reward\": 644541793740600293616,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.47258443336e+23,\n            \"delegator_address\": \"one1lsjmmrfte3cnteuh5377n964mrgl5tcfjgha63\",\n            \"reward\": 544076398234249676288,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.175230445e+23,\n            \"delegator_address\": \"one1hrkv9lgr33x928ccmvrf6j2arusquuvegmp247\",\n            \"reward\": 44853405434401620161,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.1e+22,\n            \"delegator_address\": \"one19kcgd97z9adkeq7a4mpvt2ud6adtr3ynfmlmfa\",\n            \"reward\": 6314173567588277101,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one14srkg3xaxywh99lstzxwq8a4lc6hr5hljudqta\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.13599702043e+23,\n            \"delegator_address\": \"one1jxktghsf3yx05mrlya7mch7l0n3u24rf430v2n\",\n            \"reward\": 242465320993181160269,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1e9r2qh3fjy3tqtlcc9av3yxqq3rte3mfk45zj7\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vzlt9yygwvc62vx9n35t2l3k57adctyhzxn7ar\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.27532751051e+23,\n            \"delegator_address\": \"one1eplkhwjeqfcfdvydmzmuczu6lzr3kq5ndsxk7k\",\n            \"reward\": 3.9299442917320346411e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1y83vrc7fm8p7tlt9y5nazpymp2heahz9c6whtn\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.3842129e+21,\n            \"delegator_address\": \"one1ge659dk07lxyhnsfe7us3lc2sdv66h5lwvgenu\",\n            \"reward\": 41755613758347389144,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.5e+21,\n            \"delegator_address\": \"one1lmzxv04vesmlym6avrvd7s0raz5axk66eyztew\",\n            \"reward\": 20377412153869593777,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.68103e+24,\n            \"delegator_address\": \"one1rhjzv8alvwg3an7ulg67e38md4zvsvcuyc7uh7\",\n            \"reward\": 8.4557999814854029072e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+21,\n            \"delegator_address\": \"one12vq79k6nwv475khc7mmp83786wrlgslj0zllgs\",\n            \"reward\": 120873684394777636330,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one19szgne3rhvh4hpsapfmrwdsfau9wt70m0st8n6\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1prdqtvqgfvg8t3prt5a7d6qrjgn3tcehf59n2f\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1lu42dakk5wx6yn24wd9nzcpaygw0n833amwex4\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.4427999976e+22,\n            \"delegator_address\": \"one1mgf7d75g3uklf3vxaxzmj9u60lhvd4d9wsjdld\",\n            \"reward\": 1650720855656118020,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+22,\n            \"delegator_address\": \"one16xwec874npwmm5shavyvjmhcg5u902ak2ad4vn\",\n            \"reward\": 246903926435272258153,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.3075250039e+22,\n            \"delegator_address\": \"one1re6kh2eess322u0g8xx2pnysrqkcupr5x6c6a2\",\n            \"reward\": 1.280748385786337958947e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1tjtmupvw5z78k4p46k86krw3gvsrxmh3sdvnf5\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1q6ml8lvk72de9ufhw99urv7kvpwqk647xj583j\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one134t2ky6m832cudjtq7g6g0xzfgk7krc329dwtx\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.67461206697e+23,\n            \"delegator_address\": \"one1d9u6046pvl9gc9yythqje423h28rpsudmdx7hm\",\n            \"reward\": 9.156461909679892772055e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3e+22,\n            \"delegator_address\": \"one1fyzl5axz0kkt2cflme6xwkkx7tsk3hvakcdktt\",\n            \"reward\": 393837756510998174830,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one12s0s2d3exz4xgdkv2086c3rfd2xcpw59w98ef0\",\n            \"reward\": 3267287467543173184,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.6e+21,\n            \"delegator_address\": \"one1lq2vy64kf48ec9v49mtm4gc66j732kxyjqsv3t\",\n            \"reward\": 76072971369844098414,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1lc00rrru56f2u38vrkc2y7z46wr528axezw792\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.6e+22,\n            \"delegator_address\": \"one1grpk6706ct68pwcqr3vjw60xcuwjkerau7d9ww\",\n            \"reward\": 271901405593995861401,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1ac0p66nvaj39k2jxahsdzt02chx64pzsh5rn2w\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.993666666666666e+21,\n            \"delegator_address\": \"one1a48pe02qxnuttpzdec3zj9agw0w63jh8ay5qvq\",\n            \"reward\": 289322103640083871284,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.0111e+22,\n            \"delegator_address\": \"one1lw65t2wvqvc7ahl0ac0xafjvpu47h8fpdlurua\",\n            \"reward\": 93610255115654632945,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1ehvjy83pv7gqq4jedyhtkv5cwjksl06vw4lsxq\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.876882165e+21,\n            \"delegator_address\": \"one12nr92s52lclc6cuk2w6cenrfwqam98v20007fn\",\n            \"reward\": 68873459472324192177,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.4715e+21,\n            \"delegator_address\": \"one1588j47yhfdn89pm56g0r0scj487hu8ggvgv3da\",\n            \"reward\": 39756135548545824874,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.111925e+24,\n            \"delegator_address\": \"one1trq9jyzvvhs2a0gjj39mlcmc94t8fghfckuumh\",\n            \"reward\": 1.617397129618275413329e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1d60pue8upt6fjezlllqk6jy8xwa2v8qpt7g73r\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1d2nafxk24ufu2rw3q96am8juun9jjct346rq2v\",\n            \"reward\": 14778295316832198992,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.12e+22,\n            \"delegator_address\": \"one1d5w0256gh7f009macc0tzj3etuay06jg62fnyt\",\n            \"reward\": 163551769292642670133,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1h5uwlvjmygnfrh75nnmemgm7syd5xh0hww3ty6\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 8.000090434e+22,\n            \"delegator_address\": \"one1hvldc2xmev0ry2qhgl97zs3cry2yk8srfndu8z\",\n            \"reward\": 426322364811715511591,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.84587e+23,\n            \"delegator_address\": \"one15y6dh6h4xm6lz9h3pf75v5jeekfwswkftr5jj8\",\n            \"reward\": 292501450007245968093,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.8e+21,\n            \"delegator_address\": \"one13u2t8egtpgljml78jy4tylr9v7wz2kj4yqh884\",\n            \"reward\": 189351988683250900677,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.051804029087e+24,\n            \"delegator_address\": \"one1v4qm509zq4jmcr53anjz2k7vp6xw6geqkl76tf\",\n            \"reward\": 46800230374977614185,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+22,\n            \"delegator_address\": \"one1wskyyv4r3s867sy2pva67g6u7y3r8e8xeyh7c0\",\n            \"reward\": 1.375600149610804265124e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one135lhy9rv4ulw2tfvv6l3h95mn5r420n2rdsvt5\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.0823331274e+22,\n            \"delegator_address\": \"one1y43eaqu9dhjh9lxtw4e6s606xfyvjtz56d3atq\",\n            \"reward\": 298171643211434363774,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one16cje0z4pswgck88eprtrd6v04jdy7n6vpcue3x\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 8.33334e+23,\n            \"delegator_address\": \"one1nycq26mln9yh47zq7t6kmynnkes92met2kumk8\",\n            \"reward\": 728182197414172044082,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.9058492e+22,\n            \"delegator_address\": \"one15l5f95rwfxw5qlztl9vn4jkwae0tp84knu2esm\",\n            \"reward\": 73210446711388966172,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.7337438887e+22,\n            \"delegator_address\": \"one1gv2gx3azpnu4yawcd4pp67etlq6d8fcrav8enr\",\n            \"reward\": 1.015498881597473984416e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+21,\n            \"delegator_address\": \"one12f2m0hkppn6af3dyc9e3jynq2wcvmq0vex0x39\",\n            \"reward\": 27197871944855694875,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.14101e+23,\n            \"delegator_address\": \"one104fv5j5a935yz2vhxhdy62dlvcn3f3eepnhr5j\",\n            \"reward\": 869758355917960756725,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.8835e+22,\n            \"delegator_address\": \"one1y7c57dp05de53v6l2h3kcx48dmlcmj8slfgdwx\",\n            \"reward\": 316263668750633179381,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.799e+21,\n            \"delegator_address\": \"one15lke5hd8hvz8y4srm0u3kllv0g6uedd0dx7sqv\",\n            \"reward\": 18051837505542568924,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 625000000000,\n            \"delegator_address\": \"one1v3tzxmw4fsfx5k5ejxygyt9wlk2dqztvwsk7mc\",\n            \"reward\": 594118281379769157,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.1085e+22,\n            \"delegator_address\": \"one1fefz8h7l86xxwswxzngcjgn4ywdnv9qfrtpcw7\",\n            \"reward\": 2802341708242702568,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1u0pezjgzxxemesagrztml62dkmr5vkfy3edhd7\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one102c3tg027khx0mzu4zmuax7hlpcge7qng7k5tl\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.001e+21,\n            \"delegator_address\": \"one1jtd7arfljdcchs68kh26vxqzp369f7vmd625zk\",\n            \"reward\": 22823503804706360188,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1ja7wnkmhl258pddwg7jguzr5sjh8kp5wkzahxu\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.421199281e+21,\n            \"delegator_address\": \"one1dh2f694yfw2tpe3zqsvkgaj0ykeustw93gdyq0\",\n            \"reward\": 16296558870079938132,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1lfmxzl7v005dza0jtx9hmk35f4ly054y3fk5ac\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.96238246e+22,\n            \"delegator_address\": \"one1ddndvxxg443e6nw4rzvn0evpnyyz66v969reha\",\n            \"reward\": 1.121016474284415682632e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+21,\n            \"delegator_address\": \"one1xj8sfc4mf28uuae0k4nep5w7jja6573p42rpu8\",\n            \"reward\": 6119897889062811816,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2e+21,\n            \"delegator_address\": \"one1g9j07r5kq6rmhtghxwquyf2xps56yhufld5597\",\n            \"reward\": 51002411176015873619,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.00000044079e+23,\n            \"delegator_address\": \"one1l244lktkg4zclfl2fj30npp5eyp2vg2e4fdp6j\",\n            \"reward\": 267945882252198848926,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.935288e+24,\n            \"delegator_address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n            \"reward\": 872734025436586922131,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.36428302648e+22,\n            \"delegator_address\": \"one1t0eety376umvd4cucuqvh0d9tsamgdgvrpe2q7\",\n            \"reward\": 190086605127389289136,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+22,\n            \"delegator_address\": \"one1l0x0jc5wm9qqj77zp4mlz0eunj5j5r597rn4a9\",\n            \"reward\": 449847545233695871794,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.00483e+23,\n            \"delegator_address\": \"one1k9nvefx0znyg4jrpvcj6mzphecxqmqa398d5nc\",\n            \"reward\": 84977617184337457871,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.0447e+23,\n            \"delegator_address\": \"one1422pxretfsjn688cx2cyw0nxhk3r2qtyam48uq\",\n            \"reward\": 2.617403069460278569525e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+23,\n            \"delegator_address\": \"one1dtnwdj0umv7r0zn5styglj6npksmstsk8krm4x\",\n            \"reward\": 7.108923608375721626419e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.13e+22,\n            \"delegator_address\": \"one1n9ugplqsgrlyv9rcfzr8wcxshdt0rha78zj80z\",\n            \"reward\": 367338759343601948011,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1pkul3dd3hgprvndmfayken0yxtkruqeqya3tqr\",\n            \"reward\": 498027300321235504,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 428571500000,\n            \"delegator_address\": \"one1ykqgnpeqln4kzhgsseu6qg790655x562064wmc\",\n            \"reward\": 6905142441,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+22,\n            \"delegator_address\": \"one1zxa9dduhl89erh4zwe3n2upuu69y2qz3jcq2ga\",\n            \"reward\": 246637451347072128541,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 333332000000,\n            \"delegator_address\": \"one1thn7hnq59wap2hfm8g93m6zh4n42pdc2su7664\",\n            \"reward\": 6375944573,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1llxf209y0f8sqnud993m94udvewpje25e2tjq2\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.5e+22,\n            \"delegator_address\": \"one1xwzad7aha0h77hulz0uc7uzmsqrjl858xj9h45\",\n            \"reward\": 67579502060792646905,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1tslmwkcjz900xedjwv3eg8zdf8v83wwsjagyng\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1q9drc5xg3h25n552lrf6appm6zuk264s925l9d\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.80671e+23,\n            \"delegator_address\": \"one1npjcsmeuuxu0zp3mt00ja5puy60swjj40657va\",\n            \"reward\": 44532689781586427622,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1athys8vztd2gwkt20w0k48kmywhxle0j3u6q0w\",\n            \"reward\": 29685442389624076,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.804e+22,\n            \"delegator_address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n            \"reward\": 576090418657854131598,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.88302005491e+23,\n            \"delegator_address\": \"one1gzk6r9zljse9kcctxzugk7p24hql2rvp5k03f3\",\n            \"reward\": 1.084709052394845358193e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+21,\n            \"delegator_address\": \"one1sewr7mmyheycpty6aejgn2tpydp0mszqwt7rer\",\n            \"reward\": 121555363846694495328,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1zrg0zxjp3pej69kkjzqtt4gqkrkx4qgu7xx0hp\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.82516887047e+22,\n            \"delegator_address\": \"one1ly5ekayfxv9pu7e8cnmlvjj8wqq8fasqmwdjuq\",\n            \"reward\": 438099690082360496416,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.21782169943e+23,\n            \"delegator_address\": \"one18p6kz3lp0j79gpr9jmmzq6whfgw3eaksjplklk\",\n            \"reward\": 110573956916189982755,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.2502e+22,\n            \"delegator_address\": \"one19rspxun4ry5ehgkdkhv9aly23e7rdcjnrhnh2n\",\n            \"reward\": 689860676118160167975,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.72000683274e+23,\n            \"delegator_address\": \"one1c69a6qj9phxeftp959jmzg3wdlu0hcgjxvxlyl\",\n            \"reward\": 3.501525015247303831488e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1mxde74ed557gg6y2l6jl4nazcvd9jl6ne4m7gf\",\n            \"reward\": 166698767420050847,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.35e+21,\n            \"delegator_address\": \"one155y735gs2yakk8xshwq7nj4tsku8nhgfjnx24q\",\n            \"reward\": 79326127092545885106,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1jjg9xmafmh56eaeg42uuftmf4cc44zc5swhu4m\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vy63k9kp6vgmrl2s4fpw8kmwn4dl96vrdhlpnx\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.4414e+21,\n            \"delegator_address\": \"one1wvy5v5n6vwtlddx0hjzt63d7fvudad60andqe7\",\n            \"reward\": 6278216959869224934,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.49849995e+22,\n            \"delegator_address\": \"one13sd5zlunak3dswmv3vngwfanumke6jzqy834kc\",\n            \"reward\": 359688560497079588287,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.0552e+23,\n            \"delegator_address\": \"one1m5wkkenq7exdqkmfdtla8kx79mktqr3vcwzl8f\",\n            \"reward\": 1.088401112231772661621e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.12357532266e+23,\n            \"delegator_address\": \"one1c4z393tgfll62ksldcpn8h0q5fq2pmzj8zmr70\",\n            \"reward\": 98523167917806907507,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.73866e+23,\n            \"delegator_address\": \"one1zaw3xn9ttj752ankr306z3l95fjrdxkcr5fr7g\",\n            \"reward\": 3.78544338262333310587e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.76189849e+22,\n            \"delegator_address\": \"one1f4rp0r5f0sa0a7n9a8e5hzn4fy030ntt88lm7u\",\n            \"reward\": 1.126242085920890757927e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.109e+23,\n            \"delegator_address\": \"one1xfuukfk4a72e2a9hqh2vmv55duvguv80sxm5tg\",\n            \"reward\": 261319297788757158783,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+21,\n            \"delegator_address\": \"one17efjyng3k8yvm6ssmaxlv36l9r8ua28y0cuxp6\",\n            \"reward\": 23651114955222783203,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 2.025109e+23,\n                    \"Epoch\": 320\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n            \"reward\": 453861044002045039319,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.0325e+22,\n            \"delegator_address\": \"one1jf0qv0g07ahjg2q8duq3kgfx92htkwsajx4ufc\",\n            \"reward\": 118667822740783968925,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.098525e+22,\n            \"delegator_address\": \"one14vv9tx5g809zfgygzwccsr05a8shlpcn7j6whp\",\n            \"reward\": 35441366552812117966,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.2549861213e+22,\n            \"delegator_address\": \"one12fd5nqu3alcyaa0wzlcq6xaj6j0dtz0r0s4ygj\",\n            \"reward\": 69016780789732681217,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.957689066e+22,\n            \"delegator_address\": \"one106uev9a2m4rca57h4wn9z4ec63ada7yv45cwr2\",\n            \"reward\": 229688979559471700297,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.00499997e+21,\n            \"delegator_address\": \"one1ttauqj7ddq9gykaphmzysd83052p4a6d5m04jm\",\n            \"reward\": 23445046294778235875,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.0049999e+21,\n            \"delegator_address\": \"one10ykaxljmwvlhqsncprk8y3c8q4z7939uhvgnpu\",\n            \"reward\": 23445044661789479861,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.1157173505e+23,\n            \"delegator_address\": \"one1eqflv5wu0sldgpheflywqdk45m8g35fzyd8sct\",\n            \"reward\": 60405934959555394685,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.15866779878e+23,\n            \"delegator_address\": \"one16rfvsk3qek9q9g6zpkxaxkynqxjs43nnp6gp0l\",\n            \"reward\": 139951415121970498075,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vv5hh7pw534v9qsq9wrsqt5mfg48skgkky59cz\",\n            \"reward\": 27281458909517520688,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.2473e+22,\n            \"delegator_address\": \"one1kk6khwfefpd0sekd6h3aeaa6rvmnccjxa9zwrx\",\n            \"reward\": 38286539938736267623,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.5e+22,\n            \"delegator_address\": \"one1snrl5pznjfhjcr0yf8mufcs7jpfk9txy0ecdnm\",\n            \"reward\": 838985223227389650714,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.0802117089e+22,\n            \"delegator_address\": \"one1ecqnh54clrlvx2zfapegrqft0lxuafv7hq8jjf\",\n            \"reward\": 1.398760919811520776615e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.7373230569e+22,\n            \"delegator_address\": \"one1m8364hzzjdxa77zcydy2wqkwnz24dks5k40jds\",\n            \"reward\": 169276285185103296476,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.94274e+24,\n            \"delegator_address\": \"one1ul265qs7zvxj2e9kpfvlnju4tvky5g6dz7skjh\",\n            \"reward\": 7.279458696509231444371e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2e+22,\n            \"delegator_address\": \"one10yfpuu9h0jdxzl3mfltgrjwhcxtkgdur6nxav8\",\n            \"reward\": 386582110592393066118,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+23,\n            \"delegator_address\": \"one1tf7h2guslm5xw8lc0mje39j5gg9kgulvu0ldhu\",\n            \"reward\": 1.770626257617230655237e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.93e+22,\n            \"delegator_address\": \"one1zh93n5eg55h3esl6q7tvz9pjv4qsjup95zjll0\",\n            \"reward\": 527395940495747814812,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.7033549835e+22,\n            \"delegator_address\": \"one1y2u5f56l5xwahwn0anl3g9fxcvlalmtwr0l98p\",\n            \"reward\": 968712861281504991598,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.8847e+22,\n            \"delegator_address\": \"one1yk6ntuxxpmxxauk42qkrglfar4e7eekv0t0tgr\",\n            \"reward\": 157708258835913930366,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.12314e+23,\n            \"delegator_address\": \"one1gd6rvnk7mlpr603tluae84yhn7kggpj3skuyq6\",\n            \"reward\": 7.088576035506497491035e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.2222e+22,\n            \"delegator_address\": \"one1k55pnrwztdxa56wxhkmq7qc6hu5qa2akpht3eq\",\n            \"reward\": 230305591978228155242,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.63568e+22,\n            \"delegator_address\": \"one16lrjwy2y0025ydsmwc0a92jdvwpmq20rjkpny9\",\n            \"reward\": 116239243481847778019,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.000000561e+22,\n            \"delegator_address\": \"one14mr8fcpuav2hhmja0zuy7upjmpc5w0avnnu93s\",\n            \"reward\": 226969652727629112506,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.4012453623e+22,\n            \"delegator_address\": \"one14nw56r2apv8wlljmg6pjjr2dtsz6w6jhqtzm8h\",\n            \"reward\": 179173909541885920482,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.048e+22,\n            \"delegator_address\": \"one12xk2yqnla9y5qn420dgjj73pc7jzmgptktlg82\",\n            \"reward\": 91412054272522097835,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.1372e+22,\n            \"delegator_address\": \"one1pjwapd6llr64jx437a0ncqqxdayd33u4kqut8w\",\n            \"reward\": 134448124190908575711,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.290481e+24,\n            \"delegator_address\": \"one1yehvz5qadpw2vvmh6e9q08mmgrz75ahlxrmf80\",\n            \"reward\": 2.451282982405318384069e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1w5qfpepheyt0lsfynd3cuarqa8ytra9mrplavw\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.3897e+23,\n            \"delegator_address\": \"one1qkygud0y600zrkp4n208uka62pe673s8tddxxr\",\n            \"reward\": 5.128563475758503576777e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vnnc4hkfgpp8rdmtzvgumr79ygw3arhtzgjk4f\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.009e+22,\n            \"delegator_address\": \"one1r0nfhpw6a4lxg6whvtr4ufth6g5yqqwz4ddumg\",\n            \"reward\": 225806245513160743205,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.792e+21,\n            \"delegator_address\": \"one1tw2mtfjasz3pu55t6zzyhw6qayssf8lwc4vhhx\",\n            \"reward\": 75478220556755303644,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.09871279e+24,\n            \"delegator_address\": \"one1sdcv5w7rvwdnf5cqxve48sdggcsrrgmcy2yydk\",\n            \"reward\": 269620024008196920883,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.991557895e+22,\n            \"delegator_address\": \"one1v7f26htre4a5rumzsfr9kcfydxu684ufyggl75\",\n            \"reward\": 1.10202699108483489558e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.05e+21,\n            \"delegator_address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n            \"reward\": 8772238071090350504,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 8.3928146e+22,\n            \"delegator_address\": \"one15lud93j8p5q0q0ylk9m00x07w60luwsqhyc6sc\",\n            \"reward\": 322386055263878355928,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.5e+21,\n            \"delegator_address\": \"one1h2xk4srqlg3amnpvqr0tz09c3c00yasmwkx7sk\",\n            \"reward\": 25619381554846342674,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1f5ddkra7wfkez7lav4p79u390gnj7sv85funzu\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1xykjfaa6ucfa9p5feulvxy8ux9wfyxk8tgxjtu\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.00000138961e+23,\n            \"delegator_address\": \"one1llnqqpepyjlpmhr96zhrqpf7ekgd3dhx3jpscf\",\n            \"reward\": 19326936192181810224,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+22,\n            \"delegator_address\": \"one1xc7rc5dmvnmjrstq8vesre79hr89mu7h79v05z\",\n            \"reward\": 326132360454991675684,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.0000017793e+23,\n            \"delegator_address\": \"one1r2lx24n0fpfch7cqyhccekqfd6dk79f0wqw7p4\",\n            \"reward\": 707625700345536679480,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.732e+21,\n            \"delegator_address\": \"one1g20d80v3q68cp9rg3z4xf4ht3fk974qd2tnjqc\",\n            \"reward\": 21445895288736071978,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+22,\n            \"delegator_address\": \"one1fzne3d2ndvxpx5vx0v2te7zzjprkgcryckeuuk\",\n            \"reward\": 11490222609100915845,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1p942xhj5xr96cllz3ge5kjuxzev52uuedfzdhh\",\n            \"reward\": 3739573360946758544,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.1024e+22,\n            \"delegator_address\": \"one1y7e39h6z0c0jqx9vu2epx3v5d3d44nx7sqmjsg\",\n            \"reward\": 143740376379943950521,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.68114e+23,\n            \"delegator_address\": \"one1qtdgjp203mec6qegssg528cuka0vxkgvkea8sa\",\n            \"reward\": 1.095364041535366751652e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.099e+22,\n            \"delegator_address\": \"one1lp9aa99j7gpsm6v576fm3hukn6da2ghea47v6h\",\n            \"reward\": 235771133409768942105,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.026e+21,\n            \"delegator_address\": \"one190x6s8lmz9y626jw6znhwkwqm9jq6nl24dftv4\",\n            \"reward\": 4714949696018131369,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one16n9hxeww8hefagsu9anaej3cn5ggt6uu8s9xqu\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.81298286e+22,\n            \"delegator_address\": \"one13eh8wsk8wa8ag96qjrdrgh2g8ecx8vpwc6q73t\",\n            \"reward\": 1.161950226432275838139e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1mdwfd9c0fnfatt2kxy9ayc35kr2gfgalp4mfzx\",\n            \"reward\": 70171451899806417994,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.71e+22,\n            \"delegator_address\": \"one1c5st8sfyreqjae0v4ah8nwdtmx80atcdamxden\",\n            \"reward\": 200546072149339231843,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one136txyyuafyz80wws5gl68kr4t9p05lak5vwcjl\",\n            \"reward\": 36067926249535474,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.6034e+23,\n            \"delegator_address\": \"one1c5hl3pzes0yn7r5v4dls65rppxc8kjfh7m2fkp\",\n            \"reward\": 131709705439512061552,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1jcwrcstmpcshwmr3wcwm0wac4ev26n7p4hrw8u\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.595e+21,\n            \"delegator_address\": \"one1ez5vxp6g6nsw07h333z7dshgzu0du7q2j8drxt\",\n            \"reward\": 34217921545821727299,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.4538665923e+22,\n            \"delegator_address\": \"one1qup2xu4zj2m7aeld7z7cjkcw8fpspfaprs4tc4\",\n            \"reward\": 58449762475287115815,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.5e+23,\n            \"delegator_address\": \"one1yra3ngjsfyffjqut7gqptacn28hg4y8e3u3r6k\",\n            \"reward\": 259605553401694549674,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.947e+22,\n            \"delegator_address\": \"one1872uv4ew57h7eps98uppt0drydj7ffrae32z7c\",\n            \"reward\": 617843803914769732468,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.70425e+23,\n            \"delegator_address\": \"one1s7hw88rhnk2yr5jrsz7k5c6hp9whj3635t9pkj\",\n            \"reward\": 3.602350486584040448112e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.14e+22,\n            \"delegator_address\": \"one1ln66zgvc2krv9v7hqauws45ktnal6jmws2c0fa\",\n            \"reward\": 9121389716845200760,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.8365616479e+22,\n            \"delegator_address\": \"one1sszftgehlm0ph9s0u0ds4j5h0e2cnjygz5wvxn\",\n            \"reward\": 826744219341856124377,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1dqlljeense9cz595wnsvmkyp47dur62803x7cq\",\n            \"reward\": 2190633314750560720,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1ecd8qqjv525vd43mu7m72ws7d7qc7q3v657djr\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.93932264e+22,\n            \"delegator_address\": \"one1yvd2qtp6ty372a3sux6e3g84m78ny9lr5mns0n\",\n            \"reward\": 1.653208573895821461877e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.8663e+22,\n            \"delegator_address\": \"one12w5e84ulqjgz23vjufhmpsrhaamccsjw97zend\",\n            \"reward\": 12513102686253150671,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.0455e+22,\n            \"delegator_address\": \"one1g4k8j5a0d032duwk4ns9qcv0lgrtr8370t2s7n\",\n            \"reward\": 132642897547221382703,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.1e+22,\n            \"delegator_address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n            \"reward\": 314957398068545593051,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.6e+21,\n            \"delegator_address\": \"one1mrtzgl57kumdeklse2z6vnkhgtdj5rcw45chrm\",\n            \"reward\": 94305679975275130494,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one12v440thmnyjmfvmk483m3khwa9ffmp5fzt47fq\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.8063632e+23,\n            \"delegator_address\": \"one1784amhxlknvgtnah6lzgghj5l0lj2ung038tsv\",\n            \"reward\": 1.247835075304770402709e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.74e+23,\n            \"delegator_address\": \"one1m7c0566xhl8edgqjxwrqx8h6ry877d29w6kj5s\",\n            \"reward\": 3.567214851238691789865e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.218533929e+22,\n            \"delegator_address\": \"one1mv3ta8wgdeehrsja9pv7474chmu62dyy7cfqg5\",\n            \"reward\": 36426607135361008989,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.2013466e+22,\n            \"delegator_address\": \"one1kme0plwyugns6jjne6lzfta867tdn09er4du5g\",\n            \"reward\": 66756751523905697712,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one17kwh4wz3r6hsdepgdguwr80d5p6d330jn5qdmf\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n            \"reward\": 1.088147731683265059189e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.8641719e+21,\n            \"delegator_address\": \"one1zr7q9flpwapyrsyn05755sgy34y67z6x7rv9hh\",\n            \"reward\": 177186966498475848321,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.7744209e+21,\n            \"delegator_address\": \"one1y9wg56hcfdp4xx4mh6690v02cxccx2wt20hdvq\",\n            \"reward\": 19826580786994921468,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.4197836e+22,\n            \"delegator_address\": \"one1jlhpzmn8ewgp3nnt95fp4kacflrqtpmd3xy8rh\",\n            \"reward\": 51754590262924078747,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+22,\n            \"delegator_address\": \"one15lgghucs2qxucg79v8smhzcwtzwmqrsk3k4kg9\",\n            \"reward\": 992467509103605869151,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.0021016807e+23,\n            \"delegator_address\": \"one1uspskt0m3ezvhcdjjkn0llrwuyawqdhmrm6g2g\",\n            \"reward\": 166191335132937771018,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n            \"reward\": 4725455413525112345,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.4886e+22,\n            \"delegator_address\": \"one1ccccsdqayjjexxxwt5zh5k95rkq3088dtrflhw\",\n            \"reward\": 325291270956409834923,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1z63t53093vs0jt8xhvhqqt3qnycykq4qqydmvx\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2e+21,\n            \"delegator_address\": \"one158p7lac9hay7ktsmw5mr5umf947krtnwglw2q9\",\n            \"reward\": 37953852824347952764,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.15e+23,\n            \"delegator_address\": \"one183s627gqnz3p50xv0lp2vtk76mmn7rhred4p64\",\n            \"reward\": 6.151815838697713283039e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.209e+22,\n            \"delegator_address\": \"one182t93gucw7ptkpdguv7d7ucgkcsluc946rtgaa\",\n            \"reward\": 431408291672484597364,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.2425e+22,\n            \"delegator_address\": \"one1mw34kdf3kq6tyq9grr437juujq3eydtfz7nzm8\",\n            \"reward\": 176469810932441433043,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.5e+22,\n            \"delegator_address\": \"one1xjjjtk4lw4acysluwtgat6dk2ng4uz55en2932\",\n            \"reward\": 1.057043593685916886698e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+22,\n            \"delegator_address\": \"one1rjc3xsu3vgwzgsehn4hhw497e8uta04xshtql8\",\n            \"reward\": 36656544463495692810,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1l6aeqm2aal8cpelqqf8tcg8p8lkhjr8a22vx2s\",\n            \"reward\": 575909884137998171,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.4027208424e+22,\n            \"delegator_address\": \"one13uwf35xsvrc30ltj8ths2fj8ezgyfl9nw06ksp\",\n            \"reward\": 400267814867404770697,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1yqvd62qgzldqdnghwlkrqfd99j25chs2uwjsqw\",\n            \"reward\": 54660702752320805840,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.15e+22,\n            \"delegator_address\": \"one1zhz6gv9yagh8m4vrd52sfvfk9v6amxd3l4rwkh\",\n            \"reward\": 79214673321934440854,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1rpgy3s25vp5c6e7x4l2ux6nepgt9f3vdykuxnt\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.5e+21,\n            \"delegator_address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n            \"reward\": 28216288507580829564,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.63514419e+23,\n            \"delegator_address\": \"one1rpf479mp39xkce8dcc5yhp6uc7fwfv9tanfzxf\",\n            \"reward\": 4.625510019966537094029e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 1e+21,\n                    \"Epoch\": 315\n                }\n            ],\n            \"amount\": 1.99e+23,\n            \"delegator_address\": \"one1utlqplhcygakg7zxn9nersjd4n5ctuhhpmg0mj\",\n            \"reward\": 45404131884476917818,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.75e+22,\n            \"delegator_address\": \"one1vdjryhr2z4hh5u9d8jjw8e78qajv046aa3gnh8\",\n            \"reward\": 10151706387411143074,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.5538467053666666e+22,\n            \"delegator_address\": \"one1t96pv6cd0ua83y7nwzqle22lw444xz9vjfrn99\",\n            \"reward\": 293820040452312307719,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+21,\n            \"delegator_address\": \"one168czkaukf5767qrtk32em6vv7fy5pvysy6262a\",\n            \"reward\": 18909203812546133223,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1k2vu3yqd88phpvkdenzaxl4vcv4sp8224ns250\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.014e+23,\n            \"delegator_address\": \"one1d0qhh5365w6pwrh9tp07g0pzplfq25g2cv0x2a\",\n            \"reward\": 166447160180791973243,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one13wdexsqxsc63jkzd3lsgwrk6z8z2t89fml26f9\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.0025e+22,\n            \"delegator_address\": \"one1qn9jwx2mrj7jx3tzls7ejhtc2n8k9r408u53gc\",\n            \"reward\": 107533960893946790164,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.3435232e+23,\n            \"delegator_address\": \"one1e06chqfzqnthfgt9eqsydzwtx8s0ctj0yrx7lm\",\n            \"reward\": 2.457078838234857232424e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 8.0995e+22,\n            \"delegator_address\": \"one1xqpuaenslevu25j4fvj2ktqqx3jr7yaxmhpt4q\",\n            \"reward\": 1.481262850562105963304e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.003e+21,\n            \"delegator_address\": \"one1dxea4w0pa7v9m2ax08frgpmh5x4va5gupqcd4l\",\n            \"reward\": 5862048309988106084,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.60687368e+22,\n            \"delegator_address\": \"one1g08cn7gjl64tv4k7de53yzsy0lwldcm5gpejft\",\n            \"reward\": 293870274428053818625,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6e+21,\n            \"delegator_address\": \"one136q778e0jhfaug9f3n8m95wa3p2hyeapm8t7g5\",\n            \"reward\": 22018602426449695140,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.14e+21,\n            \"delegator_address\": \"one15mph6hqna53mf5hq22kt2xhhxdt2xk8p32wtgu\",\n            \"reward\": 29030851226320355183,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1phwljrmmrs2vrwhrqlpjwssq42xrtjt52y3tdh\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.432e+21,\n            \"delegator_address\": \"one1yaq8hgdzqh3mvsu6m7769hga4clxv7l8aqfpxj\",\n            \"reward\": 1567726220851824887,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one17ryjt798l842j5s2zl089w48ckunxm6mxuvnxe\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+24,\n            \"delegator_address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n            \"reward\": 209465752747544178996,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.98961e+23,\n            \"delegator_address\": \"one1ez0stf5p2g2zc5tjcwn5e86g6huzzfkw728mth\",\n            \"reward\": 4.839067471865428375838e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.000000867264e+24,\n            \"delegator_address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n            \"reward\": 4.697530640727347733726e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.5475199819e+22,\n            \"delegator_address\": \"one1j64a0p85hwp7ktzqsl2h7jempnw88k0p304ldw\",\n            \"reward\": 111164836532881084487,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.009e+23,\n            \"delegator_address\": \"one1sj9z4pw0vxre7avafrd5xckk8t7pf8hx3gq2qj\",\n            \"reward\": 168574558624560567058,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+22,\n            \"delegator_address\": \"one1c0mmep92nvzgx5ccjt33v7ag2mw59660yj0tjl\",\n            \"reward\": 868010759042322953689,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1zmwukndjhajndq9w3amat73cu47pj9ydv6cc04\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+21,\n            \"delegator_address\": \"one1wnsq5ynpx7vzgekysscrrajz46e4vlek9m2tyd\",\n            \"reward\": 55210120028873059929,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+21,\n            \"delegator_address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n            \"reward\": 932502220977403762,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1knvmmmcgv96zmwj7r9ps8uakwxunuk8deyjy8w\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 8.741e+22,\n            \"delegator_address\": \"one1vpxnh5ax8sde959gxgnc7ttylzf05xpp0t06ng\",\n            \"reward\": 646861096069320291736,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.02727e+23,\n            \"delegator_address\": \"one1yp3mjgnkynvkede4l03g0kgtflusag9kpv2m6t\",\n            \"reward\": 171695173517789772745,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2e+21,\n            \"delegator_address\": \"one1v0ha62v8ppctcc8j8hvdtlzxpy5ar5g6e28x9f\",\n            \"reward\": 32238111787886379876,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 10000000000000000,\n            \"delegator_address\": \"one1l857204qav0v995p0q2uugp8u0u749rjs2f5hu\",\n            \"reward\": 108124010949215,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.8658193e+22,\n            \"delegator_address\": \"one1gzuurus05r74a5levdjdffhewsdlvt6nzku33t\",\n            \"reward\": 168504528205361634315,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4e+23,\n            \"delegator_address\": \"one1s5sqy8ufg5pegfzv6j4a5n879udsaasu2u5hdp\",\n            \"reward\": 1.758309424935177425892e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6e+21,\n            \"delegator_address\": \"one1cztf67zxuamhr8mwflualfduhqecummtz3vmzn\",\n            \"reward\": 36484826342196176620,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.32e+22,\n            \"delegator_address\": \"one1fk33m6a3rrmvhqtghvy7dsedwz0la7asgkerf7\",\n            \"reward\": 837245718289617880088,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.6e+22,\n            \"delegator_address\": \"one1ezj0qu6xe084l4d0la726vsqqe9cclhv2xqy59\",\n            \"reward\": 6081127324063620271,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.9e+22,\n            \"delegator_address\": \"one1ahxlcwawlalnk35weehcg0rfvv0tgt33ga6058\",\n            \"reward\": 603193321894700107207,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.6186716666666667e+21,\n            \"delegator_address\": \"one1pzj6mqp82kyjaanep3c28km67mwvdks6jvldrj\",\n            \"reward\": 6257033348535392070,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.7997281861e+22,\n            \"delegator_address\": \"one1dx4qaajpfygf2q2j3wwyfymrzk8nchkha2lcej\",\n            \"reward\": 103220815294668076080,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1kpc7u5wd0zhqr2q8ulmk7ntplxgr2xpnp93zv5\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.66e+22,\n            \"delegator_address\": \"one1sva3gaekwx57857s0ragz0y0tf0yp00l75lwzh\",\n            \"reward\": 9401807242272786135,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.00175e+23,\n            \"delegator_address\": \"one1k44ayu32tpn5v74d4sk9kxdafz4av5t2wrwwkf\",\n            \"reward\": 787330196663860500220,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.584714932e+23,\n            \"delegator_address\": \"one12xslkxmwwqv9p6qh87dpdvu4922qc2zavzg8f9\",\n            \"reward\": 5.556298649405726128918e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.7332860693e+22,\n            \"delegator_address\": \"one10steweqwvh3gk4cu9v85z53ndjrt0c40e9pfsj\",\n            \"reward\": 54633814361040961546,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+21,\n            \"delegator_address\": \"one1jyueqracpv9f077n3lux96v9klecpnsq7q844g\",\n            \"reward\": 15499973511996318406,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1m8rlmxtsccgdj86x98jgwhdlsnxlcks96m0ldp\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.1808049977e+22,\n            \"delegator_address\": \"one1ppl7w28wynse46evkxp40dfg8ewmxjtty6d689\",\n            \"reward\": 76129578718884165539,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.05778111916e+22,\n            \"delegator_address\": \"one1d9a7vgsz28g7eavjcnetfkkxa8yga2mu4dc28h\",\n            \"reward\": 160647726934540323377,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.9466e+22,\n            \"delegator_address\": \"one19dlrqz9483ay5sepgx459c2ag3t5494ny7dttf\",\n            \"reward\": 48810711640021511536,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1t2uhl7z5ra3vfgavhjkuc0egcaweyylem0ndu0\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.2104e+22,\n            \"delegator_address\": \"one10p0v3re5pdrt6nlw0799m9jx3zffaynnt38nft\",\n            \"reward\": 130821003164768552702,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.7756265962e+22,\n            \"delegator_address\": \"one1j5tfzmlmazg5hhms6d7x8rsfd5wd7lm8h2zcvd\",\n            \"reward\": 131725219021333969134,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.047e+23,\n            \"delegator_address\": \"one1y5wu0flkhrr89x2ad3t7ggjprmqhql0ukg0p2g\",\n            \"reward\": 1.376705147242786802867e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.00180699e+22,\n            \"delegator_address\": \"one1a9jlxmfyc2fqdg5eqe4dasd0ajmhz6ttwfwzw2\",\n            \"reward\": 149061578529185858131,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.260967829259e+23,\n            \"delegator_address\": \"one1nu22hvntcphrllch5pvg5u42q945wjcyn0asa2\",\n            \"reward\": 824415520511012889385,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.5e+22,\n            \"delegator_address\": \"one12day5jc36muy6etweyq4j4mkcn5eejr9kvp3jr\",\n            \"reward\": 16443051922459895262,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.417129289e+21,\n            \"delegator_address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n            \"reward\": 12161635981334270478,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.501710995043e+24,\n            \"delegator_address\": \"one15dmqzz203666yu0gxm4fashdn4mqkh47vmayqp\",\n            \"reward\": 2.1875782233498271363452e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.2165587023e+22,\n            \"delegator_address\": \"one1574ah72anu3pa65pm3fxyt68c5sy2wf75qpkn7\",\n            \"reward\": 1178442729019263974,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 10000000001000000,\n            \"delegator_address\": \"one1kdm0yjhp04le2zctm3yganrvwv2gp8wg2h7she\",\n            \"reward\": 13466818557214,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.002e+21,\n            \"delegator_address\": \"one10catae9yz8q743ll68065299kugses38xn7zky\",\n            \"reward\": 14596372984096940536,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1wjrlr8asttn09za4lcq07zs4yf0920xr0amfpw\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1ehv8z4ry84eh20nucn3svvtya30wxqc6jgerpy\",\n            \"reward\": 444236795272229041,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.4730058771e+22,\n            \"delegator_address\": \"one1myz5fpmctcqq424u42dkkmrsn8xhg9tsgduyy7\",\n            \"reward\": 73545418150356887397,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one19reccwnh02m0mu4af8xzl882haegwc23sk22lt\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+23,\n            \"delegator_address\": \"one1r65rv2n79nx6m3en8aqzsd0m9xz3x4a4w465gw\",\n            \"reward\": 376262874941959742652,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 5.39e+21,\n                    \"Epoch\": 317\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one1v2z0cfm3y4ax9afnsqm63vqmrq4qzghqnklt57\",\n            \"reward\": 5357433068642740,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.0107291329e+22,\n            \"delegator_address\": \"one163kgcjkd8k68d272lgprfhz83e24xncczw22xk\",\n            \"reward\": 144181495951267758032,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.8447e+22,\n            \"delegator_address\": \"one1dkkv9gqdr097e4uuyfnwwnwamfsarw0agaxgen\",\n            \"reward\": 35374006163840875872,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.8865e+22,\n            \"delegator_address\": \"one1ptals0gsldvgshff7q873xjua8jfltfnuxcejj\",\n            \"reward\": 35731551901421215905,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.60005484e+22,\n            \"delegator_address\": \"one1cm7g89x5j0y7f0mges28qtsen92wqr0vqurl5l\",\n            \"reward\": 12590532200263997734,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1kh403xehw0mdr720ym2ya630aqur0h9vylr8wz\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1u9snf3ertwzrcdpquhfqy0mxv6z32l9apswykh\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 10000000000000000,\n            \"delegator_address\": \"one185vrxu40r46nankzhtkgvhdwjewhfkpqlnkfzj\",\n            \"reward\": 1973701519651417797,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.2494103939e+22,\n            \"delegator_address\": \"one1sdt5ggjsddp9n7v6qs6j9ctjx8hldjvme2s8m6\",\n            \"reward\": 42659138218323103061,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.829e+23,\n            \"delegator_address\": \"one1hwg37qjh06kwfvtk8yq6tv44twv0zex8yaynzk\",\n            \"reward\": 3.334398125184885051356e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1x8kgyyqgslzrm7jrlj4m7rpg285etdywjk7gez\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one19w8pthyxs3hvnpy2puu2muxansj6y8zj05t3x4\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1fdw2f8wfkgl2xxn5t70pzaq0409f4lsuj6ytu8\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.3e+22,\n            \"delegator_address\": \"one1gx9mzdu23j9q8a7ffw2rda98jg7enpguqfwykg\",\n            \"reward\": 171993098523547800151,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.00001359e+22,\n            \"delegator_address\": \"one13ka8krp6g92dma844n6zyaf3zyzxf4trrzez69\",\n            \"reward\": 727404971975710126361,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+21,\n            \"delegator_address\": \"one13tayz72t0egpp5lyfr77wkapdfzdlemgv5uspe\",\n            \"reward\": 17429034770708524434,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+21,\n            \"delegator_address\": \"one1yrcasnx40ge8v6aesc35an5uqckahsjj93cmhz\",\n            \"reward\": 1628258307522967258,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1vegus4ekc6pjys9rf8krqx2xsva9rf4ed3rdcu\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4e+22,\n            \"delegator_address\": \"one13gycc88rnzg0fzn8ygq3pkew5s20mf8ajl2sn8\",\n            \"reward\": 529209533918615172153,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.585e+22,\n            \"delegator_address\": \"one1t9esngd9elsxhkuek8x4zyk95ek3jecmkmpwtl\",\n            \"reward\": 165887410425356084522,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.5928751e+23,\n            \"delegator_address\": \"one10ahznuhklpw4c6k08747w0wpj5mkjvtnk2sgc3\",\n            \"reward\": 214117366709291189524,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one12hjugeugxs3a4qayzmdpetyrt2h25x3586mwje\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.0349e+21,\n            \"delegator_address\": \"one12wkphqe9cysedrv654vkznjfde3f7hk50zk9d4\",\n            \"reward\": 5279287902441396203,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.118299e+22,\n            \"delegator_address\": \"one1hntpg0035xuta9rs9wvnq4c5dt6y9r2fwy03q0\",\n            \"reward\": 402706250551584395410,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1gn6xy4h6kr7q7afgc8xdhuqpmxgm3y8qwjqm9n\",\n            \"reward\": 23197600765030451573,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.00844e+23,\n            \"delegator_address\": \"one1tnlzwvdc5yc98nfpvun300f2uqd6l5qgmyz46d\",\n            \"reward\": 284989106558160037539,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1qsjfu3gw56znzr0fu3gre64uqyramum554xjag\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4e+22,\n            \"delegator_address\": \"one1n2nd0uwmdakccvngjjmsgyktwp07zn9jtnrws7\",\n            \"reward\": 164822423505269175731,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.8967e+23,\n            \"delegator_address\": \"one1f8qe0v9c3dj25u6p5eskcsv4uaj39enjxn564v\",\n            \"reward\": 6.214627284162018226571e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.89755976594e+23,\n            \"delegator_address\": \"one1jzzz2qrwn62vd8p2v4ylkteyey6k9d9mnm3jpt\",\n            \"reward\": 336100086858752910183,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1gwdl55he6nh0n06xuhvkuupnlp28260ccsnn6n\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 8.1043e+22,\n            \"delegator_address\": \"one1n6awpf8heumwc89sp3lh32spvrfgfxqh0rc2mu\",\n            \"reward\": 1715867873320552481,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.95998377998e+23,\n            \"delegator_address\": \"one1xjhs7nygzy644h3z7xx83jpnwdwc0kuhfg6c3l\",\n            \"reward\": 1.785570296065295143725e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.00482883065e+23,\n            \"delegator_address\": \"one19hxcnwwprheaksqfcszgays2vdt6wn3tscelja\",\n            \"reward\": 283749803401407932924,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.3181076166e+22,\n            \"delegator_address\": \"one1ayvfk3rhfu7zs8yyjzvc7vst7fjq7k5c84ugmg\",\n            \"reward\": 418226873426775714058,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.74e+21,\n            \"delegator_address\": \"one1ar396g7cs32uchd4lkwhtq0sqj8amtvc66rh32\",\n            \"reward\": 25947959871006741526,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.01098e+24,\n            \"delegator_address\": \"one1luqxaz8zz2ec3cneqnjdlznfg880zhp2hzgqx7\",\n            \"reward\": 1.2742775501966879325451e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.665e+23,\n            \"delegator_address\": \"one1l72m3c54jyr75vvakxau3zthghx76zrwaxa0me\",\n            \"reward\": 865330989791186510431,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.0899e+21,\n            \"delegator_address\": \"one14f3vml9060fq4s04xylew9he6x8kvsfmuqpwzx\",\n            \"reward\": 25626080264588660507,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.83e+22,\n            \"delegator_address\": \"one14st34urqt9ps3rtsq4cqqp7npepxglhe75cp2k\",\n            \"reward\": 41209489153103751659,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+21,\n            \"delegator_address\": \"one1g7yvlt4m2yw8y49e3dfkdcrxzd0d9z54unjj85\",\n            \"reward\": 12261869115550304791,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 1.1111e+22,\n                    \"Epoch\": 316\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one17yn8w3sl28m9fmcsjvsvsn78tjs7pqww2xtyzh\",\n            \"reward\": 3016320824184238918,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2e+21,\n            \"delegator_address\": \"one1nlhvd9av9qhddz2a0ynm4ftgegqe4kw5ax8y3v\",\n            \"reward\": 13880953841928248950,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.9543e+22,\n            \"delegator_address\": \"one1uyax88rpfr4yqx3thhgp8lzjgxyunljx89qkv0\",\n            \"reward\": 45905932787495856063,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.55e+22,\n            \"delegator_address\": \"one1gwpxar3zzg5jhj5vnx0gzd89v00nrvt9deyjvp\",\n            \"reward\": 5814395029823237417,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.7200997288e+22,\n            \"delegator_address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n            \"reward\": 210916377402390653996,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1ka8rvmmmw4gale8mmwse2fzp0zqasy99tu2nz6\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.805636135e+21,\n            \"delegator_address\": \"one1vwfplktczvnlt8zht3n35v4za7wez35krwzekg\",\n            \"reward\": 8547931601561344793,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.3376e+22,\n            \"delegator_address\": \"one1lgsujrall97708zhpxdn5ursnyh3g6ue8gsj3l\",\n            \"reward\": 409252143600606251772,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1snm00zd3vw927vsxavpnnd0fs4mmv00s9g6nms\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1jq9dljqxuj4q2eqpgsdkgksghzlayqt8upf700\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one18vscrm3qxc0fv0y8yzksfe4vhq2aar47yfr6rk\",\n            \"reward\": 334849333712028954,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.37742570703e+23,\n            \"delegator_address\": \"one1zvrc2xsad84pqvhpg0g63gp6g2jcuwjthjrdr2\",\n            \"reward\": 1.033217448682423331585e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1xtp6sq0n5szl7xuqsp2ge6d6gh02cpv5zekeul\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1y372hk9jsftsgjt9kmqu7jhaadlh00fuezspew\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1p2hzggpswh8yap9pyqjef9l7vplshfyes78t5h\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.3808e+22,\n            \"delegator_address\": \"one18wdjhy5c5qc5gn9vzhjanln8n529gt6ra8jv78\",\n            \"reward\": 112828663868714919489,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1kmc8tch430wh39anme4eskwhwfkjlrcqmz5gel\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 2.431e+21,\n                    \"Epoch\": 319\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one1tgenysx3y7yqmgj5uew7fezlu86n8eq5tgak5e\",\n            \"reward\": 469588364304764985,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7e+22,\n            \"delegator_address\": \"one1lp2qr8pu63t5yx4dxvwfle4ks7l8mqn5r4g3ls\",\n            \"reward\": 186265040144928299991,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.23014379551e+23,\n            \"delegator_address\": \"one10t4lxpdrc6pn87a5rsjcsk3e6uw6kkqlen2yfy\",\n            \"reward\": 231089756498522631576,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+24,\n            \"delegator_address\": \"one17tprme2qldxn06jfuflf6ywyf0hj8h4pzsezmc\",\n            \"reward\": 1.208003660644669814787e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1ywpz0ax0pghwmvppcqtzdaev3dgtlrjg2zcqwj\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.50296e+23,\n            \"delegator_address\": \"one1k3ck0f5dffgmv45ncfnn74xgdv3nwwcralmetv\",\n            \"reward\": 730118620615026541481,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.0394e+22,\n            \"delegator_address\": \"one1ctrmcmw2lpkqcvx02a2gzfl9shnf5h3rzt5v3e\",\n            \"reward\": 115941112117792125239,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one18mvmqccm7fzr76pm80el9m92mccnsrqyqes9r4\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1mfsagrvwsx35v9u0dhatrrdek9sc7r9lpup4ky\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.5013e+22,\n            \"delegator_address\": \"one10vc9cw5gzeenfgxlkm6dnxeygyuzqk0r86yq8z\",\n            \"reward\": 45291552586261209698,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.4367e+22,\n            \"delegator_address\": \"one1karm9v26gay9pt4awk45f749tqlrwx4zpzmfvq\",\n            \"reward\": 162786003403324639036,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 1.5000011e+24,\n                    \"Epoch\": 314\n                }\n            ],\n            \"amount\": 2.249966684e+23,\n            \"delegator_address\": \"one1vfvg9jnuqhh6ls74mz20qh6h6hsjwmxh4t89fa\",\n            \"reward\": 390752210961373001113,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 1.466e+22,\n                    \"Epoch\": 315\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one1gef0jlqktwlzyhkwmvswujgflq3y0uy8jazk4q\",\n            \"reward\": 370141183483724184,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 8.95e+21,\n                    \"Epoch\": 317\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one13lxywjkz4ygqdg7ejy7rjvspexa5zg6tafkc68\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 10000000070000000,\n            \"delegator_address\": \"one1zzc9avvfvwtexj9rgrfeshjvujysu6ngrqrkav\",\n            \"reward\": 36764834278928,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n            \"reward\": 3880131358989743432,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1gnnjym5e30wl8n2gfmerypgs0zt3627zk57k25\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.35644e+23,\n            \"delegator_address\": \"one10y20dp27qqpnvdkqjhwa22c6704ydp7pjjefrq\",\n            \"reward\": 28016087817795263595,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1xy7wez7nlylaqy463637gxm98ecmj02v54vdl0\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7.085e+22,\n            \"delegator_address\": \"one1zgafnrra32unvunre267gqh5y3xr4yndxf7tgj\",\n            \"reward\": 134284635412562887498,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.10200544021e+23,\n            \"delegator_address\": \"one1mptep9vnx9ln5gzsg2rzsw0mvav33es0s9v9gv\",\n            \"reward\": 261297014718601347511,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.7e+21,\n            \"delegator_address\": \"one1agwppcw990gtwma22stqvycklygctlfwzphpq7\",\n            \"reward\": 22929322594206044842,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.8062475025e+23,\n            \"delegator_address\": \"one19x784ltvty9yyau22y4xlc5yuq3lqdu0flew7a\",\n            \"reward\": 563186030370382222109,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 200000000000000000000,\n                    \"Epoch\": 317\n                }\n            ],\n            \"amount\": 300000000000000000000,\n            \"delegator_address\": \"one1z46w7d5cqchrj0aa608vdmwze08g7n2ugd692w\",\n            \"reward\": 6542696906099936542,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.473e+22,\n            \"delegator_address\": \"one1ftxkhs98msvf6uz4qmrjqnf2cfy8lnr2q9ec6w\",\n            \"reward\": 21470916878825405765,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.4117508014e+23,\n            \"delegator_address\": \"one1ll6n09wnuz06gpg7f8dgjdyaqg2zrceqsm5aus\",\n            \"reward\": 185899198393958813461,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2e+23,\n            \"delegator_address\": \"one1889hh7sdy4myne4gr7ys5v3ms4anz9az6nzew6\",\n            \"reward\": 2.132217514608578604674e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+23,\n            \"delegator_address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n            \"reward\": 794676714860529544992,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.1e+22,\n            \"delegator_address\": \"one1jxt8k4w70un5exuwe0prnu3wacvlve5dldrr6r\",\n            \"reward\": 84782123200439503705,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1y2fzfuemkafa67n0fsg2636pgxkcswtpadde0w\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.136204e+24,\n            \"delegator_address\": \"one1mtcg96xsulsghsy2zd74c66lfzxhdvmqa87e4h\",\n            \"reward\": 949213662556263668545,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.2366248e+22,\n            \"delegator_address\": \"one1y2zg979g78u5hg4jlwzvcvnmcddzm56xl5ywvp\",\n            \"reward\": 558281155799682589450,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1j5mfpn6wdrqck3ykxln0purqspnnkzlluu4603\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.2706e+22,\n            \"delegator_address\": \"one1z5wq66xu2nr6zvydxj6mkztnfxasxfgy3yly9e\",\n            \"reward\": 74946756063183350975,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.407003e+24,\n            \"delegator_address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n            \"reward\": 697811832077891807048,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.048e+22,\n            \"delegator_address\": \"one17n3zv6jvh2kq2mzyu0grl3q84fasavjgghrmen\",\n            \"reward\": 111728197765489127345,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.045e+24,\n            \"delegator_address\": \"one1g3sk53sj00a3n452h0fy5ymvh7nfn3s9nf2hvs\",\n            \"reward\": 1.5618980211297425737294e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.28e+22,\n            \"delegator_address\": \"one1luypra9aqm328hne67tf7hn8h9c2sy0s4kvev2\",\n            \"reward\": 542520698429253769342,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.008e+21,\n            \"delegator_address\": \"one1smvxmegse8k3ya86mdxe62gwjmadmvqz6q0qwp\",\n            \"reward\": 10357213333649681523,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.0359588e+25,\n            \"delegator_address\": \"one1a2ym9d8nrayel0dhq62mfahkaawavprts4fdec\",\n            \"reward\": 2.03159229282277507799276e+23,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 1.5e+21,\n                    \"Epoch\": 317\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one16567gt4xugdukhnqpnfzcy6nc4d32j5v49ah9v\",\n            \"reward\": 7219500494134340,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.27e+21,\n            \"delegator_address\": \"one1cwgkq4j4d935ukvp43hjz2u3s5p8xnyeesnst9\",\n            \"reward\": 43286885958301304449,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.215937179701e+24,\n            \"delegator_address\": \"one1apuealayrtv3xa002m3yr7hwwca8cuny2jg6wy\",\n            \"reward\": 105674109991294171423,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.5e+23,\n            \"delegator_address\": \"one1dehtnvz7yf6v8d9jj972ytdfd5xg3um9wm2rl9\",\n            \"reward\": 1.491718508291878716762e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.2e+22,\n            \"delegator_address\": \"one1m5y8nfpg7fqustgxygqr5djcle055wyj67kshu\",\n            \"reward\": 17748727161720914533,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.08e+21,\n            \"delegator_address\": \"one1auvgny38fjnkfpsrcnkdye7t7cd27lswtpxgln\",\n            \"reward\": 64296355093608442,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.02e+21,\n            \"delegator_address\": \"one1pe9q4myhu7ydcwx55xzhc3ttfrrg69dyty90nh\",\n            \"reward\": 24625769383939114635,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.01009995e+22,\n            \"delegator_address\": \"one1skx4v8wf4jv9v4fsllfdxg4rnw8fj7tkal8p85\",\n            \"reward\": 422293734065100828474,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.00022401e+22,\n            \"delegator_address\": \"one1w0c6fruyqmhnkr5zswl0r9fgrrwp7chshgsfha\",\n            \"reward\": 53576659305490548110,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one139ujmnlqdradgs9rmzwtpnk0n5yyxe86quj7pe\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.46676e+23,\n            \"delegator_address\": \"one12z0rnxpk42cyun4lhxy37p5v725860s8f5npzh\",\n            \"reward\": 948595121350392293375,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.159293924125e+23,\n            \"delegator_address\": \"one1p2g6rv7hg7hg4agrlutdezcc9vaxjt2ceyz7jw\",\n            \"reward\": 199819222451062256218,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2e+24,\n            \"delegator_address\": \"one1d0w5upanuqxwwkt4eqd0uxa64mhx58xafrmvhl\",\n            \"reward\": 9.246773724972128456739e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 8.85072e+24,\n            \"delegator_address\": \"one1r9v4w9h6l8m7caqw38355myrxadezqusepg9z0\",\n            \"reward\": 1.0304434972316115030285e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.291e+21,\n            \"delegator_address\": \"one1ag7qa7tpd0gy2ksjzdrmkrnxtw39a6uv0aemjf\",\n            \"reward\": 31963226400908061,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.25e+21,\n            \"delegator_address\": \"one1smwukalcufqlstaa0t48vkaxlykeu8gmhzuf2g\",\n            \"reward\": 8619429249490685243,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.76766e+23,\n            \"delegator_address\": \"one160anzdjc5skrfqde0lt5gh7tpeyv5ex2d5nh8e\",\n            \"reward\": 86557743941332873236,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 5.0021e+21,\n                    \"Epoch\": 319\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n            \"reward\": 64870736716013944,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 2.0028e+21,\n                    \"Epoch\": 319\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n            \"reward\": 27259133618357933,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.9e+22,\n            \"delegator_address\": \"one1wk607xfwee52l90luv295p5ha34wnwhq43utql\",\n            \"reward\": 90667961606256478199,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.4999e+23,\n            \"delegator_address\": \"one1tsqvpx3zjzf7vht7xl672zue6l9ahrrg3teakf\",\n            \"reward\": 667276782966460794205,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 3e+22,\n                    \"Epoch\": 319\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n            \"reward\": 433173043318475065,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1qgkqpscscfp7frvq6enexlekj6tz4u6r66phy6\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.05860479e+21,\n            \"delegator_address\": \"one169mgllpxsz6h5dt5nzgxpy7qtkswll5qade38y\",\n            \"reward\": 10190758192458767834,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.623e+22,\n            \"delegator_address\": \"one1k3zd2qsak2qd62vytfhuxz53pheuy84j7myhtw\",\n            \"reward\": 93160306794485133279,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.1724e+23,\n            \"delegator_address\": \"one14xl659xzvhwn7yj0s9pfjulm8l226zvdzcq8hm\",\n            \"reward\": 1.077665248963808493655e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.3620146e+23,\n            \"delegator_address\": \"one1eay8y2cweu6yyjjzrm22xz5le496tkg73s98dz\",\n            \"reward\": 1.855466625202489745834e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one16hxl0yxn3wfy8t0nezu8rqlvh9hkfvz4yz7m2t\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.93006689949e+23,\n            \"delegator_address\": \"one1lxp9epmerwwuztcfzm2dfpxu4az429a493rv4q\",\n            \"reward\": 854329197551542938560,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1jyclzpcphec2j2052twr585xjaduaelgf8dmg6\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1978t7nzmgh9qwks529wqsye6tz2ll4jvd74g0t\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.28901741127e+23,\n            \"delegator_address\": \"one1e5ajanux2egt3nvz6jsuqdml29fl38dvh0v3qy\",\n            \"reward\": 1.864395319064066029211e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3e+22,\n            \"delegator_address\": \"one16vqd7y7hset6spy7qf2jt4gka3d9d8wyrhfues\",\n            \"reward\": 266802265506637039422,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.8228e+22,\n            \"delegator_address\": \"one10zp2cx5q2paslqhyna02lzx5dulj6e7q8rlpsp\",\n            \"reward\": 190620257706449021041,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.13e+21,\n            \"delegator_address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n            \"reward\": 10049552000750634651,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.75e+21,\n            \"delegator_address\": \"one15svukyn3y8c4e2ldr4tv6mttmtgdr9064mehc9\",\n            \"reward\": 24456874338108338818,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.141e+22,\n            \"delegator_address\": \"one1636wc4gkkj2v4pv7mmsyfljr992fy227gyqc82\",\n            \"reward\": 279341971985449312256,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 2.9149e+23,\n                    \"Epoch\": 315\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one1ldx7y2fmr6q3rmt2krp77nx0gwyjak4hydq3gj\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.5e+21,\n            \"delegator_address\": \"one16kld4j2r6atw7lues7tj36qdd9rd2cumhp4tkq\",\n            \"reward\": 1601163128555135030,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.5e+23,\n            \"delegator_address\": \"one1ex9a46773wtsj455lsjykdmn8al6uqalgnlhmz\",\n            \"reward\": 3.112693097577420409394e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.133e+21,\n            \"delegator_address\": \"one18wvkm3t793qulfs6y72r7yj5rrwlzgrcycn05h\",\n            \"reward\": 18969641077521560089,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1uxgptktqjl7eppyfjdydfpcuztextqeggu4rnd\",\n            \"reward\": 935929136520933759,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.4e+22,\n            \"delegator_address\": \"one1xjq4xf4uhd9fyszvm2aw63j4hvhcddn0aq4hg7\",\n            \"reward\": 26696906905572404028,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.3e+23,\n            \"delegator_address\": \"one1j8v40e8530fv5a5xvn57cwgxtlggjccl9s46wn\",\n            \"reward\": 220343634862527139573,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.000000995365e+24,\n            \"delegator_address\": \"one1tvxurnzczfwq97jethcn5vjqye7ckpvv83cmnl\",\n            \"reward\": 5.722535786601991950039e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.0025e+22,\n            \"delegator_address\": \"one1nlepur3tkhqejte73t34jgrkphyd7h46nr5sv5\",\n            \"reward\": 170565286394255265544,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 990000000000000000000,\n            \"delegator_address\": \"one1jreqzk8w839dajfelwmy8t7vxg3tvkk8we45cw\",\n            \"reward\": 8432441125109537571,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.6508508e+22,\n            \"delegator_address\": \"one102rjnjv9wv4upjgt9dkfypfp8r7mzcnlnjmfsr\",\n            \"reward\": 140613153306459037965,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.5e+21,\n            \"delegator_address\": \"one1ztuftx554sf84a5gvpzap7dcaa72srjy4wzws0\",\n            \"reward\": 1855408511195951,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.4e+22,\n            \"delegator_address\": \"one182e3xuum3wg03ta07h9dgmv63j6xl9kpspwzwl\",\n            \"reward\": 545127507077765827826,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.28117377e+25,\n            \"delegator_address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n            \"reward\": 263334320196579364993,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one16fzlvw20gxm205hfj25f3jltysxkg2h9mt82su\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1fe7g6g0xv4w2tydyr5y40swt3crteyfxfegxcv\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+22,\n            \"delegator_address\": \"one1ka4shjasftw2hm6et2m46zeppce2gw5z9dxkg9\",\n            \"reward\": 408812704192901272027,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.730906e+24,\n            \"delegator_address\": \"one13gv9shkzs847ayy6ggjxssv9g73jlvydlem2ra\",\n            \"reward\": 5.290306232106710229532e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 333330000000,\n            \"delegator_address\": \"one15fy3rp6rnfx5em94jsy7se9jmhl6xrczpdtpyd\",\n            \"reward\": 1372624599,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.5e+21,\n            \"delegator_address\": \"one14lmmlnhaudnytcqywezdym92wpafmzf09hs8xq\",\n            \"reward\": 730625397239555616,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.0065e+22,\n            \"delegator_address\": \"one1tlqct9r67j7n52adtl34yhyc2t0tvt7a575zv5\",\n            \"reward\": 36892658411868839937,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.30004995e+22,\n            \"delegator_address\": \"one1t9mklzkte2j6qmjav7zx4lq5vnwwcya46mh42s\",\n            \"reward\": 192609599795579701420,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.70207122e+22,\n            \"delegator_address\": \"one1zckdqmzxu8vpf3paxmd9q9qsgrneeylrqgharx\",\n            \"reward\": 446673507450797402944,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.4465e+23,\n            \"delegator_address\": \"one1z2grnzph24x5qg28culxa58jvl5v5d2d35hz25\",\n            \"reward\": 172611232843235454236,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.84469829e+22,\n            \"delegator_address\": \"one1q842kkns55se376px4ggzapwut4h6uphdsrcs4\",\n            \"reward\": 144505009424065248240,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.391e+22,\n            \"delegator_address\": \"one1y4qmvv69c4yz5j45e44ulfrg3w4skt2vkl88wg\",\n            \"reward\": 422305647502461892717,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.7532e+24,\n            \"delegator_address\": \"one1p8w55n2c6pgnl68u73thku2dnnx5sywy8j8d04\",\n            \"reward\": 1.3733746266023272047197e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.22023521975e+23,\n            \"delegator_address\": \"one1rvurdnqmr8wyrtx4ne9uadh22u7qmg3jjs4drh\",\n            \"reward\": 44380486421248010928,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [\n                {\n                    \"Amount\": 1.8718e+22,\n                    \"Epoch\": 316\n                }\n            ],\n            \"amount\": 0,\n            \"delegator_address\": \"one1zhslw38cjuds22fhfj0pdg54jevn9u8jyz9r33\",\n            \"reward\": 5212489874992057419,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+21,\n            \"delegator_address\": \"one1u97te20xm0j4tj554gawe7yzpa5yhlh3086vsj\",\n            \"reward\": 130770833006429224,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one143xj6yy6wdglazuy5nsgsec5wzhvfmwwvz87me\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.1603636496e+21,\n            \"delegator_address\": \"one10fd3e0v2wpfpvgk3umhx2lmhv745cq7xzlrgq6\",\n            \"reward\": 31173734841443913137,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.676256399e+21,\n            \"delegator_address\": \"one16t5ev3ehsngmv9u374t3fp7lzx9ln9f28kf4ak\",\n            \"reward\": 5580838092066065864,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.0383e+22,\n            \"delegator_address\": \"one1afq0zk68xnukkwlcyveffj8s85adtl0fekmuh7\",\n            \"reward\": 74531584898084036245,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.93e+22,\n            \"delegator_address\": \"one1nt45u237gqujcnz2lhc2tfdpjy9ncx0qwqlpqc\",\n            \"reward\": 138539881395841037561,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.817532023694e+24,\n            \"delegator_address\": \"one1tzu2dc4js8lnkjyz78crdw4z0ruvx9nhhf9yqe\",\n            \"reward\": 1.141509228302464210777e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 7e+22,\n            \"delegator_address\": \"one1l94nhxwupg537n0de7fspyz0rmw78zq6ady6rr\",\n            \"reward\": 19034689060013823158,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.1833e+22,\n            \"delegator_address\": \"one17wdddq5yhruk5wvths70m0sfey2c0tn8mv23dd\",\n            \"reward\": 105951520941769635061,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.40686e+23,\n            \"delegator_address\": \"one14xfv2jv9fujjkg6t9qt7s2kz0ws290en8ngrsv\",\n            \"reward\": 968419845543187744264,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1k09akcs7peru6djgaj7l7tv5geyh3adatn87hv\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.91986298941e+23,\n            \"delegator_address\": \"one1wh63n2fy3pv9zt5yzw22f5fww5nm06rwxstezj\",\n            \"reward\": 545290333851470633276,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2e+22,\n            \"delegator_address\": \"one1phpmaqk8xgq284tzuuucsw2tcnr0t4cae7ypqe\",\n            \"reward\": 131822118855814794167,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.04516862909e+23,\n            \"delegator_address\": \"one1twzqd42taqua2r7auwsxzwcrucfwp9uu58tq35\",\n            \"reward\": 688881716241355290056,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.9495e+23,\n            \"delegator_address\": \"one1nqk7lr0s075tul5nrt04qq58zmx6d7xph760k6\",\n            \"reward\": 234080200628639015832,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 900000000000000000000,\n            \"delegator_address\": \"one10zad8mkynw0wsxzqkv4xfjrk2qe7vvfywardkd\",\n            \"reward\": 5931995348511754076,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.293e+22,\n            \"delegator_address\": \"one1594yjtg85tmd4u5tfvuuc68kxv6nfp0lkmuh2x\",\n            \"reward\": 471743222318752362078,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.614e+24,\n            \"delegator_address\": \"one1mfjq7thmc66x539h5dkemjdk0gzuf9lm9hquyr\",\n            \"reward\": 4.60768968661910081153e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 8.7845e+23,\n            \"delegator_address\": \"one1jhpnl5sfvt0uqltzhfz45e6pu9nfe8sf8mspnx\",\n            \"reward\": 1.526525240365946990217e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.09236e+23,\n            \"delegator_address\": \"one12v7lp2qa3y4u7cszumk9p0v4q8zwdclyjv9n3p\",\n            \"reward\": 104395102337632338038,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+22,\n            \"delegator_address\": \"one1r9m98elzdeljz7exlnc60adftzkk2ug2w8yqgw\",\n            \"reward\": 63055843281203591604,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1yufjhmg62e54lvl849h969acv2we8dsf0aqu2c\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.9e+23,\n            \"delegator_address\": \"one1lfsmwkqt0v87675vu7qrmkxwv2vulyzk4jwusp\",\n            \"reward\": 2.827287659999260212578e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.805202e+22,\n            \"delegator_address\": \"one1rqpg2xu3l4q5xtdykm0394prmh24kj9jpwrkx2\",\n            \"reward\": 108154191990115957967,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.999e+21,\n            \"delegator_address\": \"one16j3cs5ql335ck93287jsnv6cjmwpl39qltvp8m\",\n            \"reward\": 56903967325368499148,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1q6mcd27ne56lfwkp7f8t5aanrgacjcnr68fhhg\",\n            \"reward\": 1108778099354044910,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one12tkl7l6ff7l4e7hhdhmrwc7d8srxm37akqjc4s\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.051905223e+22,\n            \"delegator_address\": \"one1870rta9syx7m8lpqqnxlu9aherka7utlx5hqvt\",\n            \"reward\": 2677299267169019199,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.218736738639e+24,\n            \"delegator_address\": \"one1shhxqg956gx43lrrmj8qyrwqrverc40vk7ey0s\",\n            \"reward\": 1.361015469175403090953e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.2163101334e+22,\n            \"delegator_address\": \"one1dqee5vv2ntg0ugvu7vrc662knqgde3g6pn9uzy\",\n            \"reward\": 16241421698009323639,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.2e+23,\n            \"delegator_address\": \"one19ujzps78fdgks72vlqyxndhxj984qcdr56hu92\",\n            \"reward\": 956945783460923914016,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.012146635328e+23,\n            \"delegator_address\": \"one15wfkyq4maxpk2nczl9z8uwedfzwq8fl96u7rkf\",\n            \"reward\": 545781069583288931550,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.53e+24,\n            \"delegator_address\": \"one1rp0na5wvcaky4n8mgny5uz7jceueh58x358m55\",\n            \"reward\": 4.368384960418542571737e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.550546119e+24,\n            \"delegator_address\": \"one1cg5u4k8s0g7zur5xlzcmjctyr2dk0gu6drmgtl\",\n            \"reward\": 1.2978939552568213042581e+22,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6e+22,\n            \"delegator_address\": \"one1qnphcphap95jyl2y5dsgxnhmm0lm56fxacvuy4\",\n            \"reward\": 305321424048357683153,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.48242e+24,\n            \"delegator_address\": \"one1rxuplvz2qxpqd094hnvfhw5t3qau599hsqc6c2\",\n            \"reward\": 3.691304762819908963836e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.7532372549e+22,\n            \"delegator_address\": \"one18hzucqky4vlqr8ast34keuedh2q0ngw258tlyj\",\n            \"reward\": 20315803198854203267,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.49955e+21,\n            \"delegator_address\": \"one1nqexujfac4ylg93sf5thgc2jg7zzhayt3f3swc\",\n            \"reward\": 22896816892946431069,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+23,\n            \"delegator_address\": \"one1xj6sfxtx2rvzcz25yrmvte9tdmw0xg0leq84k8\",\n            \"reward\": 475863365614619434986,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.1e+21,\n            \"delegator_address\": \"one1jkeh7gtn5utsvl8fplsyxym4h4ue60aenawpeq\",\n            \"reward\": 5234497021760815658,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 0,\n            \"delegator_address\": \"one1tl4d5rescxcndc28t3arc2nrf8gaveenwgehlv\",\n            \"reward\": 82182581599574437,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.612e+22,\n            \"delegator_address\": \"one1sx73lw6kzlfzz973zas7dctkykl0udq9vcsvjz\",\n            \"reward\": 124295511098539381527,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.79e+22,\n            \"delegator_address\": \"one1ksh54m9jzxuycthazdzwjungq5xzwuc8j4xxut\",\n            \"reward\": 56422064678519663333,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.5e+22,\n            \"delegator_address\": \"one1q87kfj8jm9wjyrl07zyx7zus5f68ya3p7p2995\",\n            \"reward\": 29064877977426115108,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.0915e+24,\n            \"delegator_address\": \"one12388896s3c9pkeqcmv46za0gsm46h75pg2tcuq\",\n            \"reward\": 9.284204342531194429475e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.76598e+22,\n            \"delegator_address\": \"one14q0r0fr6kzjmfcfvs95jx63sgcj8vfuudarwgv\",\n            \"reward\": 255952840329658707343,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.037e+22,\n            \"delegator_address\": \"one1e9pe23rucwums3u0ey8htt6lxdc5zw56evdqtd\",\n            \"reward\": 46032607713148071763,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.075569691e+23,\n            \"delegator_address\": \"one16p0t8jmtlej8e88n46tu0yy4atk7ky8pwp6z0x\",\n            \"reward\": 221622468743294505744,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.92e+23,\n            \"delegator_address\": \"one1dk3u4rctk9fllz9p2z0ue0k79c23vhf4ahhs64\",\n            \"reward\": 428500890611265083152,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.44952e+23,\n            \"delegator_address\": \"one1hy2mkkn4av7mfnwc7gn5ak3trcnq2mrg80297t\",\n            \"reward\": 203340516060979459576,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5.1e+21,\n            \"delegator_address\": \"one18886pfha5x9ds0ucssklqjzmvlwpzsptfy8cwq\",\n            \"reward\": 2866555703580294155,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.6e+22,\n            \"delegator_address\": \"one15wg49vvghc0qtwjf3rk5mnggxtd2u4a2njjvd0\",\n            \"reward\": 338263196579574722204,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.158999982e+23,\n            \"delegator_address\": \"one1f5k22ufqc9tjufgm593mwujjtfskq6sdhk5taz\",\n            \"reward\": 510969726077664822521,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.06711943031e+22,\n            \"delegator_address\": \"one18sj48wr5nayzwue4plwvj25c4qlrfgnr2rkcd3\",\n            \"reward\": 13563720018374171340,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 6.57395e+23,\n            \"delegator_address\": \"one1md0cszpvdr79fygj96udt4uynrqpz8ue5fz363\",\n            \"reward\": 1.532060757182502756982e+21,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2e+22,\n            \"delegator_address\": \"one1zq0nv6y07pe3aaterlpyegwjvlk07s9nayxxcf\",\n            \"reward\": 28172158504247553960,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 8e+22,\n            \"delegator_address\": \"one1klty0kcywwk2mg55nh4y8pqe9396p3qz0uqppu\",\n            \"reward\": 201022494536942650808,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+21,\n            \"delegator_address\": \"one13guglgwq58rcpajjwv9nr3gkw2jk08w6k9ajjk\",\n            \"reward\": 2624506537764362089,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9e+21,\n            \"delegator_address\": \"one1z3472px37kn37rkujv5eq0kv353t3secs0dy9e\",\n            \"reward\": 20964793952086922806,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.45775e+23,\n            \"delegator_address\": \"one1hp5xxe8m2pzngprk4z4gtryhqgrf8xfp2ncnu2\",\n            \"reward\": 805455736531411908184,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 9.99503e+23,\n            \"delegator_address\": \"one1tu8j8gxpe0q2ezjqrmp52j39lrujkrwhtneemt\",\n            \"reward\": 644893903690019629364,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.403e+23,\n            \"delegator_address\": \"one1xlt50wwm353vvgkxymyrrvkgj77u7kqrejvx6r\",\n            \"reward\": 559759998520709513108,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.984e+21,\n            \"delegator_address\": \"one1nesgr7cm87zc6q5f9e39wgpp6ce6t0ukt8ptpc\",\n            \"reward\": 8068783222275267400,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.3448e+22,\n            \"delegator_address\": \"one1nsvfqrgazxwgatc30ulj7mu0e8l9hp5gmqgnpm\",\n            \"reward\": 67742133840026145841,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.8594e+22,\n            \"delegator_address\": \"one1rxq3mzdchnffd6g7ugwdm6akyjc6zxldgh4jq4\",\n            \"reward\": 78164312168798293113,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.27345e+23,\n            \"delegator_address\": \"one1yc9yz3nxxxs6y97h4hh75h08ykkjcjw8hzfrws\",\n            \"reward\": 257911445642732330723,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.7503439686e+22,\n            \"delegator_address\": \"one19kcmtyr8rah3yk73nmf7del7wdtuyzl090v55l\",\n            \"reward\": 35449663772717018114,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.2635e+21,\n            \"delegator_address\": \"one1vklxs3pmyteyswtp5d79w7yg2wjtl69jy9ya4f\",\n            \"reward\": 1379116793905670838,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.3875e+22,\n            \"delegator_address\": \"one1x5ze8zjzttfrpfu9gk6yf2amdk8jgssdjvyh6y\",\n            \"reward\": 18219351301313288102,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.05751e+23,\n            \"delegator_address\": \"one1lg0y50az0fql50pfelskv7mquum8z3xznv3z8l\",\n            \"reward\": 295473472901375407130,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 3.10063837114815e+24,\n            \"delegator_address\": \"one1lfuaaaptpgpk89zajufqc2f624kxxxhggj5dme\",\n            \"reward\": 802025338176735956293,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.605e+23,\n            \"delegator_address\": \"one193rjfmhvf9yyynu44e82txjzwthz0jfemnszd9\",\n            \"reward\": 147260020934848239395,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.95471992e+22,\n            \"delegator_address\": \"one14t9uladn5evzehr9mhtph7jjjs6ednk6achavg\",\n            \"reward\": 16508485544372846387,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 5e+22,\n            \"delegator_address\": \"one1qwls7g7ecjmr2fdlma0ejf9wumtlhuuvshx8r9\",\n            \"reward\": 42227240269728557403,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.55550255848e+23,\n            \"delegator_address\": \"one1v8me68a0vcuk86qcenp7x42uce0382el5snnhn\",\n            \"reward\": 140780394198595817516,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.3780205e+22,\n            \"delegator_address\": \"one13pe5s2f30svchcqf5vg2ujmmwqvdn2uq9yuzta\",\n            \"reward\": 3536314025316517763,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 4.2157e+22,\n            \"delegator_address\": \"one1lfkva4pwfau4ynu6rvkzr82a2edlhg3kwa4lkw\",\n            \"reward\": 10818445035125779658,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1e+22,\n            \"delegator_address\": \"one179msjf4nprp6wg75assrtd5rafmf0rq3hhervz\",\n            \"reward\": 2566227443870687476,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 1.0158331372e+22,\n            \"delegator_address\": \"one18cj3m04q7zwk27v2erw3ss5dakyh6xzc0kl8pn\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        },\n        {\n            \"Undelegations\": [],\n            \"amount\": 2.486e+21,\n            \"delegator_address\": \"one18fm3ya5y2925q3fn0h5n4nn5qnm8d82v046fnu\",\n            \"reward\": 0,\n            \"validator_address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n        }\n    ]\n}"}],"_postman_id":"2e02d8db-8fec-41d9-a672-2c9862f63f39"}],"id":"54d7355d-a73d-4312-ab05-1759bdb8881a","_postman_id":"54d7355d-a73d-4312-ab05-1759bdb8881a","description":""},{"name":"Validator","item":[{"name":"hmyv2_getAllValidatorAddresses","event":[{"listen":"test","script":{"id":"a5288db2-673e-48d3-9048-e48142fce2ad","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"69b93657-8d3c-4d20-9c9f-e51f08c9b3f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getAllValidatorAddresses\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of <code>String</code> : List of wallet addresses that have created validators on the network</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"bd6fe37a-ee1e-41f6-924f-b0c7171d10da","name":"hmyv2_getAllValidatorAddresses","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getAllValidatorAddresses\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:55:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n        \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n        \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n        \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n        \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n        \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n        \"one1pc3yfnkrj0mey98nla8aswftyy23nat38hku2m\",\n        \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n        \"one1ju6cn0dtfa3fahuelc6ppj8c2sg2xqn759zxcm\",\n        \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n        \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n        \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n        \"one1n2dfgcv0lykh42p2pgxcd8k7s820qkcdf8lelf\",\n        \"one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x\",\n        \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n        \"one1a0au0p33zrns49h3qw7prn02s4wphu0ggcqrhm\",\n        \"one1zdxjy50aa9kk33pxrjy8yerpgz49hx0nhc2r6k\",\n        \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n        \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n        \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n        \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n        \"one1tqa46jj9ut8zu20jm3kqv3f5fwkeq964t496mx\",\n        \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n        \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n        \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n        \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n        \"one1sgcpjc405ueglhp5udsskjxcn8crrc2lmuf35c\",\n        \"one1teymhzlyuxv73hw78gy7vlfuyv3e4stvsmer5l\",\n        \"one1u94mkkzdjcudwk7wzlm2sxjpsnmm6havuz45w7\",\n        \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n        \"one1vmkzy3a34ppemm2yhtc97hlfssy9g4qc3gglr7\",\n        \"one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du\",\n        \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n        \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n        \"one1ds5h88zazdwnc8tk8j2m0t0wk90x23jcj2dyks\",\n        \"one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25\",\n        \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n        \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n        \"one1akg6gqea74mmpjvd6qxlmd762v5gfy2e5r7xf2\",\n        \"one12cy7qfl3g7y68e8drdrnvap3g54xepnx6w93g8\",\n        \"one1f0dpyc02fzqp4h8j23luu9qak0jjzn8e54j9fd\",\n        \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n        \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n        \"one1f5ht3hnut3edu6pdehetajuhujg4jxr470u0ps\",\n        \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n        \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n        \"one10zn27a4vnywuufece29d4nwl8j78cz3r5cgupg\",\n        \"one1c6m2w8t0p3de3cjleu2t2duvspas6366jtf8da\",\n        \"one1c6z6fje63g8thv0fsm0wkwar5f80usdctwy04n\",\n        \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n        \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n        \"one1uugr9gcd7apak6q00a8qg6zaaadls5vc09a237\",\n        \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n        \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n        \"one1h2vnc52gdwqa5w6z4gwtrdgsgq8f5fj7aev3f2\",\n        \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n        \"one18je40sxd9s6awtgx4akhuda8d75km3663eep37\",\n        \"one1h2t0k0g9fjqh249w5pddv9wuudm8d9cj4nzyw4\",\n        \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n        \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n        \"one1k2e5jgkgd4d5sg3ma362hmj77pt8tqvpjug4tk\",\n        \"one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu\",\n        \"one1s34smmhr9acsnk57ammyf06m3au2pqaewxm5t4\",\n        \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n        \"one1fzh923dkauvyye7w68nc38j2dw54gldu5mheaz\",\n        \"one1xsf70cu7uuu5k6f0kpxp9at8r4dmg0sttzx40t\",\n        \"one1cfpfse8amkdalscvywfl28cd9u7zq8c0k0gg8y\",\n        \"one1df49l0afjgltkaheussp8e7y708ac9zuyfpfle\",\n        \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n        \"one1c8e309nvdydaa737n92k73cxrv5xhnha69h8gx\",\n        \"one16yvnyrac2nfaapm8tyraesa7khtg3d9tr786pv\",\n        \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n        \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n        \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n        \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n        \"one1w63l464zvpr8r2j3778gluzqyaqte47ylmvse9\",\n        \"one1grry5e0s8qxpdgcrrqssqd6rlga3nnmclzn0d6\",\n        \"one10qn232e3r5ertg2s7797uceq9jfxeuz8guazx0\",\n        \"one1gawz79t5m2rkucndc9uag9zkn937jjevy84uvn\",\n        \"one1wf8dzkk2f53hpkgd2vc3t8k5ydw8e6qf7j6043\",\n        \"one1k8w926t84ymzukfv5lye3jsxsjxanlp5erx5mw\",\n        \"one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n        \"one15u9e82r46acp9v9z66qypulpcck43ptttfej0f\",\n        \"one1ey87xtfdydd2kqm47zm7f094f3sqar9ltej2rl\",\n        \"one146wfttjmdw9k8vptkahh444vjft8szvtn09pks\",\n        \"one19zt89ps0mgeuvkslkduplt8hysk93c73svft67\",\n        \"one17sesxr0jq6srusgm7wyu7zutdpl6n32k4kfaey\",\n        \"one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\",\n        \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n        \"one128c4wclvc3udu09fs2cdrhlxczh42yzuhlcu7u\",\n        \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n        \"one1kv4pr4zchyv7kkypnezeskchxaacakk7vgtw3d\",\n        \"one1h2vuqrgpey8f0nqq5x80l2kwxqaxr3sh0hd6cc\",\n        \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n        \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n        \"one1mgwlvj9uq365vvndqh0nwrkqac7cgep2pcn6zl\",\n        \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n        \"one1kgpgnudej6nvt56jvjura5sk96vr4fev72zy27\",\n        \"one1k4wsglw30mluqnc8cu0s4px5xrendmfz92w9wq\",\n        \"one1lm8jajxvqn478t7pwvuf80v5raana6c3fr2rzr\",\n        \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\",\n        \"one146xcqrrxj6rnue8yhpw7dsat4dqt0763gnpxzg\",\n        \"one1q6a4nz5ev7zq4jn3j9xwvcace8je3hqyptvx7r\",\n        \"one1u8f5zey8ge5y7p47qlw94cphzajeftquvlhqgf\",\n        \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\",\n        \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n        \"one1a39hd09sc7lfyhp8yhejeyj6jc8mfp7qsd4tvs\",\n        \"one149h38k3rt8m8gfaxxfn3zn43lqt6mzlvthcy5e\",\n        \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n        \"one1flf62ytjdd9narlkxkz7zwzzakp09hfnc463lq\",\n        \"one1qa872qeh25g0lexnvgq0a6apdz79nyvrus70uw\",\n        \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n        \"one1d9sqruv88cs2ay4frwe36ftg77u4xsj3fzlqfu\",\n        \"one1427qn37jngpu78lrdaw5e0q923jjcjkcra3t84\",\n        \"one180mfv4dneefp9g74duxhspjvkmcjffstd0sj6q\",\n        \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n        \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\",\n        \"one12tthayx2u7g262afmcfca29ktnx9aajjd8uj5j\",\n        \"one1k73q7skgddu0u5vjvnq2e08j4y8uep43lme53u\",\n        \"one10vrseld7tdvqqt3nwg385j2m2w3f7s9h538s56\",\n        \"one12kpxkxzmfmkwaywgg2mgw30394y9tcdfv6a8fa\",\n        \"one1k7jyqrxktvslvm5xyl3sq3hh5lx6x97ejed6g6\",\n        \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n        \"one15mf5amj7nc8c9zpp0e2wr48em0r2vm02k9m8h2\",\n        \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n        \"one18y79f5assjyw45n7z6gp9kj6dwrct4qu5v0tyr\",\n        \"one1wmz9574u0w86hza0ftxvqtuas6j7jsvgjdgjat\",\n        \"one17yrrnxjtzmwce7wmf49e5rradhy0pyctnd6l8p\",\n        \"one16n2pqayygz25prxen475w4ycnnt2d2rdm9e0th\",\n        \"one1v0fguw8l5l0gk7fvjq2h9pqgxcekrvy273pfsy\",\n        \"one10lev28xhn3a0es5ee07sqps0e3khw83a6sm57j\",\n        \"one1gmnkfk532lgvxz3040pgw4zyzh80c3m5uwqugd\",\n        \"one1hdxnmfgkxtlmrym9ljjw2dpweke85pheu8g8zl\",\n        \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n        \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n        \"one1u0n3mnzdysgk9lcz4j0zmfe48ceqc8ja6ewekc\",\n        \"one1fxtdau23qk0fl63e40g3h4nfwsj0k8uutx59qx\",\n        \"one12lwj5h27ne8ada20s7ya5qzmwvuwpsj423kcg7\",\n        \"one1vx3xzr3frltweh4u4nmtdwaxxrzv0eylepc2v7\",\n        \"one177kcfufknjq9vxnqcy2vu45wjghmy6j6um4zpj\",\n        \"one177ty3kcr9y6p4wuh6uqklx6vw3ydplnu5xmx8s\",\n        \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n        \"one16ryldqjwdf3uytw9n8gcllhghsv0dggy4e4gva\",\n        \"one1dkyjjf8s94nvml9rvksexlt4a78lu9u63ul8lf\",\n        \"one13333jp9cs7ezutn5wrc9hqr8nvaxr8h4x0cak7\",\n        \"one12249q4sxs6ewrluv0zar8jxv4pmvuu7m7qgh5a\",\n        \"one1wqq9xrca6g5vfaqwm47gc953kgy6kqxm2pffuj\",\n        \"one1jg5rezn9tqdgpg0awewu9khrg2y9alu3jjpc4e\",\n        \"one1l85psy64zvjjqwz2j6224tekjsslk37ecdggfc\",\n        \"one13n974xtdzxu4uu2ugz8e2ml5p8t94d8x3tep3q\",\n        \"one1wc32qcufuc8lzfs804dtrjrq2zufnkczp43u75\",\n        \"one1hqu9yzdzvz6s5lr8pgxpgr3eqp6jejfuqau5g0\",\n        \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n        \"one17nfgz8rtgpl3nlws5q9tdk9y3puyqf847az6ne\",\n        \"one16f3f9y4sqtrk3eq7gnagr4ac8p25rf08u0pxxp\",\n        \"one165stpdzl6c6pwdkt9f5xrad063e00symwyznd6\",\n        \"one14ew2n5677rufu6e8n32j8pmvkgxt7gug3zajgy\",\n        \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n        \"one1k8pj3zc72hvhtnsks0fuf39zy6w2xqte6sazmc\",\n        \"one1yjf47da7ymljt09x8w44d8as3csvqp8czk3suj\",\n        \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n        \"one14tdlgysvnqcdgwnduttd0y5pp2y7m8cpss30j4\",\n        \"one1g0pyvll0u2pmk2c0xqn0cfwh5s4ydfvf5xvfft\",\n        \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n        \"one14l4lst4qnm9fecv38450upfjym00s4ejz9mgdc\",\n        \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n        \"one133vpazf7aafwfh3dcsg7zmfs2ua04c6y0slstm\",\n        \"one17qpwyvyf9lscsy7e7yvcrqzsgrc8f0y03jkv6v\",\n        \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n        \"one1jzsacjqa20q5vdu397ltgnfwvsq4me87g6k8kp\",\n        \"one1y9lmedxmwstmjk0qw7hxh2z37p0c54puzmyurn\",\n        \"one1q9s5l28nlfg2amg6g64g0q08u9pnse3vl0sex6\",\n        \"one1f8cpdfeyfwqjzexevevqwc8hztsv90ynfwtwh5\",\n        \"one1yggrdg3y4x3qjxh3uf222zeah7u4t6hz5za3vq\",\n        \"one1wzqs5a48ky6zr5h3x5rkgn6u73ysu80n8uuha6\",\n        \"one1fy35lapmguy5nw7yagx5fvk0cnp9lkq9mwpyas\",\n        \"one1pjw8c993rcy84gws6j5pfe7nxmr3dkgg3yu36q\",\n        \"one1cjj5kx2u5fs2daqqtvtdy784r6c4lll9f4zr2n\",\n        \"one1axuwm84a9x8kuz42k4w4cr2m4cj7n5d3tawu0q\",\n        \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n        \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\",\n        \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\",\n        \"one1lsjmmrfte3cnteuh5377n964mrgl5tcfjgha63\",\n        \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n        \"one1968yuwqqy7ah5nt2peacsp9s7erdl6m6cfyqzt\",\n        \"one1krrnxlwjd6mxj7pw8rsfsr97y8x2524u20d9ej\",\n        \"one16c6wqr99gth9nwm5ka49alqk3gtqdv4f9nhtk9\",\n        \"one1zs6z7cdys7cgtzs6puprrpwe0ucq8h6684qefq\",\n        \"one1gstwrqy8rjtjac39qhnek8eeeq3fmw2xa5ecc3\",\n        \"one1dzqeetfpyp02evw00mag4nnhlqvu92wr9esnq3\",\n        \"one18prt8uam55vsy23j403zykx3uvxs6f7xrs4g56\",\n        \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n        \"one1nxsugfasz47ftsp5kcywx0wx46eeztxw4dqv7g\",\n        \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n        \"one1e0fzq4shcj6t9mgp9whjd2wwjs5cum9qlq8x3d\",\n        \"one1ryjmd93fadj280e6p6mjs8sl2gx49mvd8wzjxd\",\n        \"one17ze3psttx25xcw9u6jh8sru5yztne6zprtx00g\",\n        \"one1nhfnjxfwrkk8653jfz97wtdxvw295nws2vft48\",\n        \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n        \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\",\n        \"one10utt7kd7jnjmcyq50an7d32jr5exdfzdps39lm\",\n        \"one1q83ag25yvxzl753jjunw8rhvz03w2p55dneenm\",\n        \"one1suuwp5vzlvu0nkc3xuakj42zl7249xt94ykgl4\",\n        \"one169w9lv7sj89t8r6ehddkqy7tswdu93ynfc4rps\",\n        \"one1arje47h08vdu573kjrmlfs59nhqcfn9mfr9xdh\",\n        \"one1s0ehd74jd4rzdguv6x6f48x8edettj8d9q5fdf\",\n        \"one1wphasach2wkzdxndadxjactawt3s2tcyt6y29n\",\n        \"one1vd3hetkcpfcaad9v5n4gu694f26x63hqnwcurk\",\n        \"one1yq84hen4gunn6d5q7wmgptk45z5pum9x4lg3g7\",\n        \"one1tqr07mufxfrlszvt6tgmywdkz7l3584e924s74\",\n        \"one1mx5mz8fh0v27kvjwyujh4s697z026yexqp9fyu\",\n        \"one1p20dmkr7g28psy9zp6dndahxl73xeh0avwn8zk\",\n        \"one1a9ac7fkks6e3980kj2ky0mw32zqq6lxqrh44v7\",\n        \"one15sarytaagl73f00v5pusg0nqaqly7zpc9hdjds\",\n        \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\",\n        \"one1d8nk7qzyfvtre659slzj7f7w8l7yw8setwlc7m\",\n        \"one1ekmtqd8w0a0jknz32ak0yagh6tazcd7gjy6v88\",\n        \"one10xkhggcc6qyldh4jxpc89pzl2pux7tmpvfe0ay\",\n        \"one1cmzsxfpgp7uclrj3g7zvz03lat2lqz3qqayxj8\",\n        \"one1uedma80q9typ624dd8xjfjrxz95mt25l0l5txg\",\n        \"one1lnupg0ymtxn7qps45q23rq6qj8mlrqj4p07pe6\",\n        \"one1k4scpcd3wh4arkjmec2dslmjtdjsqjhrve5cvc\",\n        \"one1000x9pafz9uehpy5jqztt62gtlvca6g85rcc4u\",\n        \"one1f7hfpy33pzw27jzpnt77y6ze2srckrhm52j40v\",\n        \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n        \"one1staxun5na2ltqw0x0s98tgkjlv0ye7cwj64987\",\n        \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n        \"one1j3fjrzzrywfufnvrwa4n4ccqfyg9rx5wa7pqwl\",\n        \"one1ze49un8pscrv4dapc459kplgjqdj4exjfcxn0t\",\n        \"one1hrcm8pesmwutea4cxa8690x2jdzfjx87sfj39k\",\n        \"one10h9rr8jscln0rznyt0xt746zwqtld46ky248rm\",\n        \"one107hyalayudvlv7zjuhg6k8nkr3kk5w4lnjnx38\",\n        \"one15hs9d9kdnsd5jxjmu507wljcmmdfe390akxe3d\",\n        \"one1kfngqk6c2fnwjt9yyne6pqqeux0su3uzq0y5uw\",\n        \"one1j00jzequ59z2kmgcdav792l70fpdj27trwn8p7\",\n        \"one1lgcrqqp3502qzlq3cug5zskkgy46fg4xj6drp6\",\n        \"one1gyl6ja6d8tad75v3lrxq25gz0qka434v2eehpa\",\n        \"one1ktksx4t8t6grdllrf8vv78pj8pc6fwggvjhqzq\",\n        \"one1hukwz92wuymvls8hrk4fhwclk0cer5r2f03mu4\",\n        \"one1djdj7g588xs4605laaxjxfrk0kuler2s6uasw6\",\n        \"one1pcqpsdrlu0p84xx32nmwzqmfz266k5e4knka7a\",\n        \"one14gq8ptec7dynfxyv8elejnsqxjle44kyvk780r\",\n        \"one1dd3rjz4ew4m9k2pf285gyfesjwe03a7am6axll\",\n        \"one1ypmrh75zsqpav6q0hhpgm3p46jykkaclhp0ydl\",\n        \"one1xx7d6ldrtla7dw7yawg4rq05ws05qrkhxxfqaa\",\n        \"one180767nt5qzycwl4rzhjaf23kmv30a9uvmlj8vs\",\n        \"one15zmw8ea9mjru57t2qr5dr6jkxd9u9rg4q6m5j9\",\n        \"one1wqyr9yp8uyjdfgaa73u8n5rj08eqdvd9p9wej8\",\n        \"one13qq8ewl349drehwg73038gfknxjuc2nvm2uwny\",\n        \"one1n9vm6kg26zf2tp65t227s647lrv75343aun3nr\",\n        \"one14hhq3p6t86za3aefvwfklwtlufjf06ymf3e2mh\",\n        \"one1zgmm8dwyzffsa7379ghdkgt5e6tsm4tpl50arr\",\n        \"one1q96zl0w53z7cnase68qu5njpv0pujmnq4u8ly5\",\n        \"one1lees0cc4dxv9xdr7qv3mm4gwfrdjacfxzxm244\",\n        \"one14pn4j6lz5xf70x28dpu83apz2zmp97ff44uyqp\",\n        \"one1prdqtvqgfvg8t3prt5a7d6qrjgn3tcehf59n2f\",\n        \"one1ev44e3x9v6qz9ytjcxfymuz52z6vclf02d8fkj\",\n        \"one1vaalvv3jvhyy4wxa2dzzf3vda78gr3glp7nr69\",\n        \"one1x8f8d2ahndj7nzw4xfqe2e7qtt3pylrr28pxtr\",\n        \"one138p2807r9ywy9ux82kk3pc0z9mff65ystv3hpg\",\n        \"one16xwec874npwmm5shavyvjmhcg5u902ak2ad4vn\",\n        \"one1r9249pz9t2e0szr228fs627c9ksq46keyrjx8r\",\n        \"one1qt2j27luygxt8qea95kx8wqst8cmf9f88f9dmv\",\n        \"one1xrksyam05h78f47l70rtjsk5njy8u9f0ty995h\",\n        \"one12rjhtpwaclyms73lw3qjchs4httvr5nhxfc42l\",\n        \"one1lp9aa99j7gpsm6v576fm3hukn6da2ghea47v6h\",\n        \"one1d495d29lprtn8mwpjgmyrz3rmh7wxlzh562awr\",\n        \"one1x2x8mhelj76dmswdps0f7xatap8z6wuyxadyxj\",\n        \"one16jck2hq039sp0w6ehhjkq858nz2a95emjqff0w\",\n        \"one1zn3zlx3twalx8jjje8haqg2ywsraluew6ffsnk\",\n        \"one1hvwkem8ne3n4hyxnp7n6mp3sk3mcarsxaa2pzy\",\n        \"one10hqsvmkev55m7vstk7al5rdawa07hsfnq9nap3\",\n        \"one1x0jsshupfyjzdj989j82f74le0z59s5nfx7a2x\",\n        \"one12deatk5yn3zwuzcru3wtkgq2077ndcdss4j200\",\n        \"one1llqfxqy5t7e7jqjprr7kjkwsxfekrnpfvynkux\",\n        \"one1d4pawyjyrquj4q6k6l0c4fvk7w2yrpcqmcya2h\",\n        \"one19u7msrsrhflda9la5g27c63vmwxttn347rwqy7\",\n        \"one1wftqeamdxuqqaycjuwvcz3tsramz8z5ettg3qr\",\n        \"one1wael8exj25pw63qrjmcuk0sv6qp8v2p8yuzjtr\",\n        \"one1wh3y3t6kntvehsrz88zdxenzqt5fsq80aqn7w2\",\n        \"one1t3tex27l80cs4eltq5t7wymcxwwct6xxuyf7w4\",\n        \"one1txk4dt65vujcdlnxkflrw5nnf58eatv0yncja6\",\n        \"one1p8xss440xe7qz862y6l5dqvc6pzs74hl0jfalz\",\n        \"one1ttf4e0tvnuqymuyuzy7clu7gy6za37y326m299\",\n        \"one1yfscyp6cf5wpapy6mfwtvs840r3hqnac4ymvxp\",\n        \"one122u7pnfsgk542ht3uankt270w3zcjzg35jccyp\",\n        \"one1ylm7uwfk60sy05luw5lp67ffywgvhsx639dp83\",\n        \"one17qqnjy4llulpcs3g2uzryhehk5rcyedy4qhet6\",\n        \"one19py40wf5tu7pu2zdfy82y7nter86lk8h0pj906\",\n        \"one1uxj9uptu32tkdnp8ephh8ldu6pqsfvwhvg0kly\",\n        \"one1svmrvxwaqdtaueqkhsahst3ay669sugxlqnyyt\",\n        \"one15d0r6eqeg0gjvp4amfsfyqemrcrttsvah2wn06\",\n        \"one16sqqkn96m73h62vxxvjhlqsqe8u22n6n3sc76w\",\n        \"one1nswvtja66psr5kkdcqanc57mju0aqhguu5t6v4\",\n        \"one1w9u59r7v8cukhwfc2w0672j942txz4yn0sjwrh\",\n        \"one197d4aaar6nhzn6vcn9s64eac83tsxfxd2zt965\",\n        \"one17j706lucfndyf5celgpwru45cf0qn2yyqgsf6q\",\n        \"one1xwapk9zj0vddz6803qdl2sv8wess7pjp89swvh\",\n        \"one12vf96qsc6vytfgfkxwkl0vtjwume0p2wk54f8q\",\n        \"one1663k3c5emyy8fs6ddehw4j9m7av8wwphk4f7kp\",\n        \"one15r4audua3d7wz2gl8yy6gslnh78kr3waqdtxe0\",\n        \"one1qnn3nvgnzxqr9s44sjpgjsqs4jhl6hhls24vvq\",\n        \"one1wh448en35x25mvfp7v8mwfl6jjrgavjntd9a6z\",\n        \"one16peqd9vlkakn3vdejr8djrc4e8kjh4kt5ta2mu\",\n        \"one1fvytjup26e9kh5u95vtt3drqt54uj87x8nxzac\",\n        \"one1fe7g6g0xv4w2tydyr5y40swt3crteyfxfegxcv\",\n        \"one1pjs6cc4su7gexjf4zwl9h8ypw3lgcuyqfvjqa8\",\n        \"one1sl30qfusjzqan52r7644qhcc9mxmh2utjcac5p\",\n        \"one10wfedndyp58mufwqr36z8mnaklyf4kfl9fw4e4\",\n        \"one15qlenkd2jfmha9tqxeha8m9nl4qhcfg6jcs96s\",\n        \"one1g0hlkf9v7yr9pgf4crn0jxl2pjjtam576lktqk\",\n        \"one13r5ss02cl0mxed5vttfk99y4p8mhs792mnpegp\",\n        \"one1a2rxp80kecp02335ls854mhjcm494hzs9fwa9w\",\n        \"one1l72m3c54jyr75vvakxau3zthghx76zrwaxa0me\",\n        \"one1nl0avkvneflxd8knyzdlz6vffxqhl62eg06qdh\",\n        \"one1l790pkhj6extsz0q7zwy92zlffgn2pdgj3nh2c\",\n        \"one1knlmx04zn50d3yf3rhuwdzhjzx7twy76g9y0lt\",\n        \"one1j6unp2mljk7hmqvzk2c9veee6vgea0gym8gavt\",\n        \"one1sm062xxqdrm8pud7qqmwlf8xcm2lzwfq4xqzk9\",\n        \"one1065nnpq7v9j6qucfvphq4ep3sdhhdy7fuk8rg7\",\n        \"one1wt9cvaduxh03n8rhw7aqhhx3s2cpffws59xjya\",\n        \"one1ydqc6whg93kqceqm7fu5nlcy4cgvzu3h2d84wc\",\n        \"one1ht8st5csaaj2gys6jqc25uvt99k2ruewd885xl\",\n        \"one1y9tekahx8jmmm4sat5hr56mfqmlne65z0whsx0\",\n        \"one16taft2qpvv7z52wxze2tnzmgstv86499happ3e\",\n        \"one108knuwxr038ph59ec4j54mdawzhmexu7nr52nw\",\n        \"one1acmlg8cdmd7m4essvvud3jgadzqvfr709cslm2\",\n        \"one19vrmw47qgk94qg7d4ndvnu503rhg603kqldjqn\",\n        \"one1qfpt5y3kuw8dnsd2d4lgjjzf849mfdzaxzum88\",\n        \"one1qs0k4p2eau8yknt8epxx8dmx9r69y36qhlu9n9\",\n        \"one1cjnk69h4mds2k2wxk0t7x4ay4rv46zzkzhs484\"\n    ]\n}"}],"_postman_id":"69b93657-8d3c-4d20-9c9f-e51f08c9b3f5"},{"name":"hmyv2_getAllValidatorInformation","event":[{"listen":"test","script":{"id":"2a7293ac-8ef8-4658-bd14-06544570597b","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"df5f1631-7397-48e8-87b4-8dd873235b9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getAllValidatorInformation\",\n    \"params\": [\n        0\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> : Page to request (page size is 100). Note, it's not possible to get all data at once.</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of <code>Object</code><br />See <code>hmyv2_getValidatorInformation</code> for Validator field descriptions</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"1c8d4a57-67bc-41b9-8143-5a5b9c7801e0","name":"hmyv2_getAllValidatorInformation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getAllValidatorInformation\",\n    \"params\": [\n        0\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:55:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.577545383294380146\",\n                \"blocks\": {\n                    \"signed\": 63991,\n                    \"to-sign\": 67891\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.900734026821760343\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.632295104664157352\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.459785009479671663\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.577545383294380146\",\n                        \"epoch\": 212\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.932203080409788573156e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.3000000000133333e+22,\n            \"validator\": {\n                \"address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                \"bls-public-keys\": [\n                    \"23252207c03fe2a5ac0f5fa587583bb37dd9f232275b0156df85bd2aa48a2033972e7847dac68224d064569fbf3c040a\"\n                ],\n                \"creation-height\": 3358745,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1c5yja54ksccgmn4njz5w4cqyjwhqatlly7gkm3\",\n                        \"reward\": 13662905650006023358,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zvdmhs9s0k6atfdgmeqf4fugnsl2xsyu0jkmxk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yv760p0j0mdjs9y30puj9felcvz4sspz8aja7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 13662905650006023358,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 4.677805187792099748452e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1arje47h08vdu573kjrmlfs59nhqcfn9mfr9xdh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1suuwp5vzlvu0nkc3xuakj42zl7249xt94ykgl4\",\n                        \"reward\": 3806223826667123960,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15y6dh6h4xm6lz9h3pf75v5jeekfwswkftr5jj8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yqlu8j3y6sv55nx3v987cxr209gmkqjy5vgjh0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n7hz4jcy9ms509d3prf8393ymdgmh09vvpkvhl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sd69jq8flfklpfvr2pwdd59tcangfqy5zky0nn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lelkq0v8ky7daytwtm46yskhzrxcr9rezemcs6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 133333000000,\n                        \"delegator-address\": \"one1jx7wusrrnj2djdf4dus5cq07yw3fe2077j2l67\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v9yk732v6e3reamu33zgt57thpg753vyazuj2e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Harmony node running in Contabo Nuremberg servers, manage from an active community member, fees will not change\",\n                \"identity\": \"Contabo-1\",\n                \"last-epoch-in-committee\": 212,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1.99999999999999999999999e+32,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"CONTABO\",\n                \"rate\": \"0.001000000000000000\",\n                \"security-contact\": \"Contabo\",\n                \"update-height\": 3374860,\n                \"website\": \"www.contabo.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 362657,\n                    \"current-epoch-signing-percentage\": \"0.998010347294842864\",\n                    \"current-epoch-to-sign\": 363380\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"133826980929680298395637696.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.118273449415330826\",\n                \"blocks\": {\n                    \"signed\": 47851865,\n                    \"to-sign\": 49100805\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121761721558691103\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.098067053313774418\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.096416272075803872\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.097380370124719646\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.090098804324858757\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.090063833381867887\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.086561264803279767\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.101931799655478978\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118293336687909297\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117501546914457319\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117856237014318748\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116224147322249571\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119915868262434375\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120047082369593194\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120620603053714746\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117271731559997113\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119642065161437302\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120418652625692701\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121273544578724826\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120411711312004024\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120497767667271569\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121379748737122090\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.113801410647054408\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118949567902498675\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118032135351824880\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.119055378672369153\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118734818959824293\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117556432798825757\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118948956208348249\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118275898224111781\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118273449415330826\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 410632,\n                            \"to-sign\": 411420\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 409057,\n                            \"to-sign\": 410344\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 409431,\n                            \"to-sign\": 410469\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 415412,\n                            \"to-sign\": 416551\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 409646,\n                            \"to-sign\": 410720\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 409350,\n                            \"to-sign\": 410278\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 419883,\n                            \"to-sign\": 421220\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 408981,\n                            \"to-sign\": 410489\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 392969,\n                            \"to-sign\": 410180\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 410364,\n                            \"to-sign\": 410949\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 409309,\n                            \"to-sign\": 411297\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 412024,\n                            \"to-sign\": 414039\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 410910,\n                            \"to-sign\": 412315\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 414164,\n                            \"to-sign\": 416429\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 429170,\n                            \"to-sign\": 431487\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 448386,\n                            \"to-sign\": 450212\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 414759,\n                            \"to-sign\": 415857\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 411529,\n                            \"to-sign\": 412422\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 411767,\n                            \"to-sign\": 412971\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 435420,\n                            \"to-sign\": 437022\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 410291,\n                            \"to-sign\": 411394\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 410812,\n                            \"to-sign\": 411864\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 410903,\n                            \"to-sign\": 412196\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 363781,\n                            \"to-sign\": 424318\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 334583,\n                            \"to-sign\": 433796\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 332830,\n                            \"to-sign\": 454758\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 358026,\n                            \"to-sign\": 470956\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 373887,\n                            \"to-sign\": 473014\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 374599,\n                            \"to-sign\": 474008\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 415303,\n                            \"to-sign\": 504073\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 6.761689573497368475647519e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.461844828844954526483e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dbe838331c502c24366bfae521c30cef2c118c34f8a53b383c9c80d57acfc2ceb1fc979d046063bb1929d7d1d0803a84\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461950374870350517611e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7a0af4d7e6f2a82f1afff03bcf4b59457b3db0c1a582d42e4c4d15a2091ff175eda5e194e4142c856e28abc5cb2dfa90\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461950374870350517611e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6cec58349cd971eb0d5c65937b3c0a98c449a601e08cbb2c881577c5475491c17610531c19e660a461d3ea9cb2bc808c\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462058230993045365306e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fe0593f9a38821750623a189db19294eaa288b86efa46b0fc2c9e100174a51717e3695fc143dbba963800acd9dfa4010\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461945854227453631988e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5ea4a8c13bbc364b869c9f7c6b5933a106c5a062e1ccaf83d0650d25ab29dfe6875cc2e5b2b5cbd2712417b46cfe128c\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461737324050720861859e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8c166b798f14ee72dbbfe73c759ec6571613114933f2d82ca7dec67731e3ee57967a9da98822e5345f78f38a4c58a710\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.431309974944823636395e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a7fe02c4f789c053f8061cfa72ab6fb41c58eac7bb17c0d1c699e6c49182ef95c0d72a4be51b828870c6b4c279ce9f95\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005590888931025594\",\n                            \"overall-percent\": \"0.001789084457928190\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.431618173362606751815e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5be15de52c6f3ef44947437734e1d9c8f2e16d71ef1eaac70cefa58e2de5dd950d35edc624d69f11625c01d3102af085\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005590888931025594\",\n                            \"overall-percent\": \"0.001789084457928190\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.430990387138861243192e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5074d8e57293ae73a10ce2f9ebd970872ebe972c377ae8fefd4f29da42d8cd4941c7a27831f7d31e3b7c4881ee31e711\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005590888931025594\",\n                            \"overall-percent\": \"0.001789084457928190\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.430999787528568276359e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4d5dcc9d7b3f4c973a3f91e85b77ede091fe3fd2e494920a1c4026355998694864f7731b8c3630379adfbeaa17849a09\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005590888931025594\",\n                            \"overall-percent\": \"0.001789084457928190\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.431704508796003030753e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5d0f9e2e4b97dd567bfb5e486d4d32303eff1bf36a1b484dbb5a499c83e85d6c3656fe3a3a56187e032de612355e9419\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005590888931025594\",\n                            \"overall-percent\": \"0.001789084457928190\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418044773236766923723e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4ace32c030558cfea4b215615a2225d379e6a0c3f5c0bdf11a694b88bf7477c308e9617298e6f836853523af63cd6602\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418333158183408821899e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"54c3cabec33735721eef52bcfe94282d19919ccb90b9675bee8a8425cc15bac27b9dac5fcfbe560eb39ec619efdda386\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.420013621198225236042e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e1cac822f129fe47fb636a0ca3575bf8f979dd5c353abb1a8441a5b5f486be4df286b1b6ef01916734ee2e8f27a45b0e\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418504436693586612612e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6a924159a7082d438cc1b8176bbeeef57f107ce62eb0a63cfbc92d2cd85b2544126dfe7d01302d578689f9b956fe828a\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418556985520955632936e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2d6a4c4c21a67c9ed0b729ab12bbdfec058e54348d0721906137afc22f2400958c42793ab7c4dc890f9cf14896ac4082\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418414210249755328225e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4af3740a2400c6eabbff5db46e214c6aa6e2c288210cbfbedad40f2672f7359b101fe102f8bb3ab4a4badc4f99f58e92\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418627955306029477708e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"860b2ccf90c6177f3684720ad63f61467d32f7fbda63bab4eb4955235bb84f71408a5c53d393e04e20e911f5bfaf2e0a\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.473299953167122151498e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2aba11e4239383c631fcf0796c95241508a2a60be7302080e356638141bc01144787b68cf75d130ca596ebd01b57b107\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.472962591462076204571e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2e935bfa72ad37e549100c95d0d2b153c0fe5786589b2c853eb91049c95fef9bdf80a4ccd2fc0f0b1431ff2dd248eb8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.471473766299862306883e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6d1ecb3757073c7886cf13562230900dcb1b63210816806ffac92b323bf28f1ea08f6ed1a6db37669adc044f05be9f8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.47124871776395320645e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"70ea1ba2963116dd3e8c30795a5cca98c7271cc1e39bc3fb074cc4419a83b8d56b8ac3734e3252af35b97d84a68a1a03\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.469578334926190629494e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b68713738f5385048ca97b5188f331b0763937330b0ce306548f07d5401065538d7d1cbcd4bae5ed2d0eb1c9c36cde8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.472416847305031716753e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4d90f1bd3d6fd2803b5a68917c1917579479a4f24a59eba93c729175e26a5adfa6dd596273136c1be24f4b0d35bc1003\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.472003506509140604296e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"62b08e5b27033432965a81667acccc127b9e709d243299ac0d961edf7f0f90055c43c9c7ae55ee830d782cf32f711207\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.33748069929680298396161984e+26,\n            \"validator\": {\n                \"address\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                \"bls-public-keys\": [\n                    \"dbe838331c502c24366bfae521c30cef2c118c34f8a53b383c9c80d57acfc2ceb1fc979d046063bb1929d7d1d0803a84\",\n                    \"fe0593f9a38821750623a189db19294eaa288b86efa46b0fc2c9e100174a51717e3695fc143dbba963800acd9dfa4010\",\n                    \"a7fe02c4f789c053f8061cfa72ab6fb41c58eac7bb17c0d1c699e6c49182ef95c0d72a4be51b828870c6b4c279ce9f95\",\n                    \"e1cac822f129fe47fb636a0ca3575bf8f979dd5c353abb1a8441a5b5f486be4df286b1b6ef01916734ee2e8f27a45b0e\",\n                    \"70ea1ba2963116dd3e8c30795a5cca98c7271cc1e39bc3fb074cc4419a83b8d56b8ac3734e3252af35b97d84a68a1a03\",\n                    \"b68713738f5385048ca97b5188f331b0763937330b0ce306548f07d5401065538d7d1cbcd4bae5ed2d0eb1c9c36cde8b\",\n                    \"6d1ecb3757073c7886cf13562230900dcb1b63210816806ffac92b323bf28f1ea08f6ed1a6db37669adc044f05be9f8b\",\n                    \"62b08e5b27033432965a81667acccc127b9e709d243299ac0d961edf7f0f90055c43c9c7ae55ee830d782cf32f711207\",\n                    \"54c3cabec33735721eef52bcfe94282d19919ccb90b9675bee8a8425cc15bac27b9dac5fcfbe560eb39ec619efdda386\",\n                    \"6a924159a7082d438cc1b8176bbeeef57f107ce62eb0a63cfbc92d2cd85b2544126dfe7d01302d578689f9b956fe828a\",\n                    \"4af3740a2400c6eabbff5db46e214c6aa6e2c288210cbfbedad40f2672f7359b101fe102f8bb3ab4a4badc4f99f58e92\",\n                    \"8c166b798f14ee72dbbfe73c759ec6571613114933f2d82ca7dec67731e3ee57967a9da98822e5345f78f38a4c58a710\",\n                    \"5074d8e57293ae73a10ce2f9ebd970872ebe972c377ae8fefd4f29da42d8cd4941c7a27831f7d31e3b7c4881ee31e711\",\n                    \"4d90f1bd3d6fd2803b5a68917c1917579479a4f24a59eba93c729175e26a5adfa6dd596273136c1be24f4b0d35bc1003\",\n                    \"5d0f9e2e4b97dd567bfb5e486d4d32303eff1bf36a1b484dbb5a499c83e85d6c3656fe3a3a56187e032de612355e9419\",\n                    \"860b2ccf90c6177f3684720ad63f61467d32f7fbda63bab4eb4955235bb84f71408a5c53d393e04e20e911f5bfaf2e0a\",\n                    \"5be15de52c6f3ef44947437734e1d9c8f2e16d71ef1eaac70cefa58e2de5dd950d35edc624d69f11625c01d3102af085\",\n                    \"4d5dcc9d7b3f4c973a3f91e85b77ede091fe3fd2e494920a1c4026355998694864f7731b8c3630379adfbeaa17849a09\",\n                    \"7a0af4d7e6f2a82f1afff03bcf4b59457b3db0c1a582d42e4c4d15a2091ff175eda5e194e4142c856e28abc5cb2dfa90\",\n                    \"6cec58349cd971eb0d5c65937b3c0a98c449a601e08cbb2c881577c5475491c17610531c19e660a461d3ea9cb2bc808c\",\n                    \"2e935bfa72ad37e549100c95d0d2b153c0fe5786589b2c853eb91049c95fef9bdf80a4ccd2fc0f0b1431ff2dd248eb8b\",\n                    \"4ace32c030558cfea4b215615a2225d379e6a0c3f5c0bdf11a694b88bf7477c308e9617298e6f836853523af63cd6602\",\n                    \"5ea4a8c13bbc364b869c9f7c6b5933a106c5a062e1ccaf83d0650d25ab29dfe6875cc2e5b2b5cbd2712417b46cfe128c\",\n                    \"2d6a4c4c21a67c9ed0b729ab12bbdfec058e54348d0721906137afc22f2400958c42793ab7c4dc890f9cf14896ac4082\",\n                    \"2aba11e4239383c631fcf0796c95241508a2a60be7302080e356638141bc01144787b68cf75d130ca596ebd01b57b107\"\n                ],\n                \"creation-height\": 3358749,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.000001e+24,\n                        \"delegator-address\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                        \"reward\": 6.1723214801303847132534e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1a8avzz3hcvhfrh2tp7rdprpvwt838y9um9c2q7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one16f2qazl9hc2qcmvnnpm29zem50rnrgw6pmny8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 10000000000000000000,\n                        \"delegator-address\": \"one16mp6ulwmjqadhr9uzkzmf62epu0kmu9759vdcy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 13893632,\n                        \"delegator-address\": \"one1rez9xg8hpddswd8cc09njdlp724gdmmsg53cmh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d235ehhlcdec9vsg6vua3j6gq2csz3u9hvju0e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0810999999999998164992e+22,\n                        \"delegator-address\": \"one1fg8d0ppj72skslnxqvyl9n2v702xrxw6ujcwz8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 780295015962771456,\n                        \"delegator-address\": \"one1r2ksmlnfh5uyrfv6umlrrr4pw33jzkpe9zyar5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7299997000000000262144e+22,\n                        \"delegator-address\": \"one1nmdyf6cuaw5fh0x0hhj0s3lpk4fcvhemehtm7m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1vlafys3hgv098te6c40vapwdmr26prsrp68ywf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7lxuqkg3sedxz9j6a4v2axxmrdhhr45d2ckv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1je27ttxy9kzdj4dr426vgmmtl7q4m4y0zjskpu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.13785e+24,\n                        \"delegator-address\": \"one1wlurf58m9pe0cuy38hrfqulfwjeg8u8f8mw6k7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5393e+23,\n                        \"delegator-address\": \"one1md69ytck92k7f7twygzt2tslxg8r8z2xm8a56w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3407872,\n                        \"delegator-address\": \"one1wz3fxuuh2ecff9zc0sep96cnlrmpz6pwqnrp68\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00000000000000016777216e+23,\n                        \"delegator-address\": \"one1kad96xygnypyuck48yvznxq5xttx3lxeud3sgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 942799999388581888,\n                        \"delegator-address\": \"one1kn2vdhpecmtmy0p3u7z9a2epvhfv4ndskl46hd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.16938929685699999678464e+24,\n                        \"delegator-address\": \"one1hjukedz8j7f3cvffhykla3mh5ma6474vw57xjs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.99999999999999996854272e+23,\n                        \"delegator-address\": \"one1ssx9hmpyjysfshmq5d6kny0w8v2v6egemmjx3s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0247700000000000131072e+23,\n                        \"delegator-address\": \"one1ts5kn95h3lawa4xrx4luauwpx0uqe57wz543tn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1014902308598751711232e+22,\n                        \"delegator-address\": \"one1gt4cgazl8j3qa35x4n0hcrr2acdn0w9mvtdqt7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0907330508480024674304e+22,\n                        \"delegator-address\": \"one1welw50yx2ch6xgx6ldzjm5egru5trgr6k9n8fy\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.50000000000000004194304e+23,\n                                \"epoch\": 314\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 339999999999999475712,\n                        \"delegator-address\": \"one1knu96c7603lw99en8jcnf2zqar8e0pf4whkkaa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10w2678a6ud4jxle62de2e7tlvmtantc9q6l7ma\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8388608,\n                        \"delegator-address\": \"one1n2ewc4df9xqwn765nluds89e9wfanwv3aadk43\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.12145e+23,\n                        \"delegator-address\": \"one1kysqrwndadss5xt5eg5duzem3zgnqynr7z8cls\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4838e+22,\n                        \"delegator-address\": \"one14fa5cq2kv92uetsf3usqseac0mkr0kmmeszn3x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.12012e+23,\n                        \"delegator-address\": \"one1ps0m27wyyxv7mev4s3ayzlk28ms6a95xw32ztx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8090167999e+22,\n                        \"delegator-address\": \"one1dnc8t82zzqd4vv48qwl8lfzuc8mpzpwzp96z9j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gx3zqmh0zumvs7696wxcp3advk7nkghg6ulghq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4422390900000000032768e+23,\n                        \"delegator-address\": \"one1uwdruqc5pu2q22rt8vwr48yuxuf632k6nl8rm5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0569e+22,\n                        \"delegator-address\": \"one1ag7qa7tpd0gy2ksjzdrmkrnxtw39a6uv0aemjf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5000000000000000000,\n                        \"delegator-address\": \"one12ljv0jr7duaue9ywqf09xq6kxsxk8endzz9rq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1474999999999998427136e+22,\n                        \"delegator-address\": \"one15025zlytcfem8tluq9w5kemcpmfwtzj5lpxwa9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0054e+22,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.12555e+23,\n                        \"delegator-address\": \"one1v4j0qv277rdg0s66lzsffdn6z6s7h7ecaldv8a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9999999999999997116416e+23,\n                        \"delegator-address\": \"one19f77e897dxnpxzp9hyu296z5aarwcltcv6nw4w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.37629100000000002228224e+23,\n                        \"delegator-address\": \"one1up0yysg6zuscadfdmul0g5zrx77plt4j8x0rj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.471759437629e+24,\n                        \"delegator-address\": \"one1yezcm6nw4rd7ahu6hqyhg7hyfj8gu9dutcdgay\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.65776000000000012582912e+23,\n                        \"delegator-address\": \"one1fkpgjmlc67kmf95l2plc8hm2gkj6uuvtl7pmf5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1048576,\n                        \"delegator-address\": \"one1wry5qxs7rgws2sqcm8hldcqmr6wlfjj0wqx27e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1000000000003932160,\n                        \"delegator-address\": \"one1nc322scmfwv7p7f8jmrs52q7yzrgdd0z4jka97\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zplu5fqs0aczm9udyzuyyfcqz4x5xw2rhx4d9v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1aa4jrwstvdn9mtlpdhe3e36d46mq86042ym5wn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0161676328e+24,\n                        \"delegator-address\": \"one1atdwrxe98t8kx2cy9r42qjvuslps7dqtxtn6aj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9997e+22,\n                        \"delegator-address\": \"one1yjqlgx35h7qhseaf47pn5j3ar5qqpuf99q5ua6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one18gdenx74cta2l8z6wnp0yx97xcqwuwt97uzash\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1gpr86yg9e4u4tvyt4ax22v3h99m8q700s3qf2k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.141443715538058477568e+21,\n                        \"delegator-address\": \"one1fjmeucz69vekndahdqcfrtdsksdqlm5ywq4333\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5050000000000002883584e+22,\n                        \"delegator-address\": \"one1qh84n8uq6rv4astht3kk6d58vrca940g2uuj59\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.549e+23,\n                        \"delegator-address\": \"one1r2da0t3vq6qa4fk84v8ac7t8s3zs78lrxat454\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4033497052217344,\n                        \"delegator-address\": \"one1mqldecmcfxfl4e78atc8cc66z2krjh7lzfwy90\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5e+22,\n                        \"delegator-address\": \"one1yms3yzl9d8jcgqdk0fx8hasn4k4zuaaw0rshu5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.75e+23,\n                        \"delegator-address\": \"one1fp2nnpwyjzy0j68j38p6x9vcp8e7zzem3nt9e9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.401223000000000088342528e+24,\n                        \"delegator-address\": \"one145ap2c4qs6vte055rdehra23sz6w26mgavzgge\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.284e+21,\n                        \"delegator-address\": \"one1lucgnd2t39tnxn42pv36ve2tn6jcf3efa2d5k0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rr5n6qvjxlyhrhnkzxtjslzffrp4trl3wtsuh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l4dtuj5s7sj8q34urqmyev5jjx2s6t8yp28wjx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19g9hdrhsaplnfyt5zdrgdxl6p9wchfhm0fd86t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dma2n8q5z0culhey5n97mxwvfmxjx3ggje2ts8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dr4u9qtpczl7pfmctgwxp2yut5tdqyyevvft5c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9758000000000000524288e+22,\n                        \"delegator-address\": \"one1myk7gz8l67rttwkkrc9kag8ft29p0lsa0082hr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1emggc9549mcv259z3w6fe4ptwt89fy2rzqhc3c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cuk5l8rmjq72dt8ah23twtfywwsqt0t8cepxq8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.40513499999999996461056e+23,\n                        \"delegator-address\": \"one1pvp5m5kk2j6n5d4mpss9sv09ls5p2jvsv6nhfh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1048576,\n                        \"delegator-address\": \"one1lkdw6ascfx4kp7k0qmc8gnkt4d0k3z476c7kya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mp9hnvwm5tc7hjuwge6n4llarmxclget7r93rz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3950000000000000524288e+22,\n                        \"delegator-address\": \"one1gv7naspecryjq7sv3uetclq2vllwxlcy7elal4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4337299999978160128,\n                        \"delegator-address\": \"one1e4cghgr30rzjk4snrfgwxffysxjeq0thzxj6s4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pl8a66ayjtk8364dxdxgnxxj83fp23qwfayy2e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1399999999999998951424e+23,\n                        \"delegator-address\": \"one19elpq46ulwwj32dek5v28wzq7pkx023hqdzsqr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qwvh9ay9ml0fvgsuxgj9qw6h24flj9fwv27xvp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.06049999999993905152e+22,\n                        \"delegator-address\": \"one1p07kjqpslduq8vankpfcs8avpd4anfdmf69rxu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.608265e+24,\n                        \"delegator-address\": \"one1p57avf90x2ldhgm7ahemsmppz9t67r47cqkn77\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8dt4hz56jzksjaw7vayf8d4n5k5tj5heagnpw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18hrgw6zmk7paesxtdm924gywtlye55w3vqkcqc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 999899336704,\n                        \"delegator-address\": \"one1dsqz5qn8pv58nnudvnn0ngm6f9dr3d4t8dcvtn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4810999999999999213568e+22,\n                        \"delegator-address\": \"one174rtn0j6ugy8xt0cxm9gg3r7p0zf8scd7uht42\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zf239ny6pdy0twnzmuaxumvgx9ld9rlfl2a3sh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one168dwndj5xz3e3yca4wzm8x34knf5gezu3ypyt5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.5431226000000004653056e+22,\n                        \"delegator-address\": \"one1c5rufnstnjte97yftm43dlm8kltqnyea50d0d4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.63124322529999904309248e+24,\n                        \"delegator-address\": \"one1dgfa476a79w0e2g5ylyy2g9xgwghelfcrmwfv0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5396000000000000786432e+22,\n                        \"delegator-address\": \"one1ncqfp5cxkcyf8p4vphvtjdynxq5cvm8ehm8y26\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.06829e+23,\n                        \"delegator-address\": \"one1z3hax7pkq9lhp0serq6qxyvyu6jqgn4j57808v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1000000000000000262144e+22,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1utr8dmfygm8xn2n5t4fhalhs9tagpr2l6dwpzp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0078e+22,\n                        \"delegator-address\": \"one19sdf30xtcpys95gwd2j8pxazt628am20m2vauw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 251658240,\n                        \"delegator-address\": \"one1karass48cv8yc5gumu5empx40szw52w3hlyzt5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3365144961223066124288e+22,\n                        \"delegator-address\": \"one1ql7x0lxqn9zg3psnqmpl3mf96aptfyhm3l4sxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.8124976374387549667328e+22,\n                        \"delegator-address\": \"one1f4hja2qwt935qfm69dqsc858nyemgu5nq2z0ek\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.837996894999388094464e+21,\n                        \"delegator-address\": \"one1qhfu9ugajltw49rv8jl0r48lpl7d4hpjd7nlwg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1lqvpn2qw8sqlxnpzssgwqjalz5raadwytaagdg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.73372796999998166269952e+23,\n                        \"delegator-address\": \"one1wrnv30ysv3ettqcvpnwkglr4ldpmtwmg5vuf0f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16ymzfqvxyhjr65tk94ql693398dh9tpyd6e9v4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1mka92dd2422cvahc5ahznhacaw8ve66ss8x7g5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcfhm6t87ygsqm5jkyr23hl9eg0ts56yfmynst\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 999999999989252096,\n                        \"delegator-address\": \"one1jyqnfykwkf6prygcan238t39pfrt52rr96rldx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 25999999999980601344,\n                        \"delegator-address\": \"one14rve8jqvf6nxhla8m6ka79d2hlrtxfs8jy2mks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gu6ftc8cva77j7n5zevgpdshk8jmk0vhhs0w2c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.099e+21,\n                        \"delegator-address\": \"one1uhvn9t2w7jf4avjv6xelp549yemwp4c7t54pcy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1780hukztd6ty8f7z6z6wye0j6hez3ds8jydg5c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.741637019432938635264e+22,\n                        \"delegator-address\": \"one1mk7jcvn54v772ee4m7z3makzmcuhw5c5jyx0lq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 24211099648,\n                        \"delegator-address\": \"one1vegzurdx7vgpw4te5jwdvyvx4qsgdy3htk4ncv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xhguj2npkujvlkgmvw6ez4j0w4wn2qaeg5d5mn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5200999999986466816,\n                        \"delegator-address\": \"one1v8lvmjqs5jptsw5v2vt3xkl5ytsl34xej52dmn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one18kxq78xks47rzjmg3gmpty7shzw0qkq7cljvqs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.8286478940357213028352e+22,\n                        \"delegator-address\": \"one1ukmek6yd9ca240a0el8ghcf5prvmw5223ext7w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one130d8hfdqls45qv5937pszl7pla3094tkgluhe2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 58720256,\n                        \"delegator-address\": \"one1g0psysvm78erk5t84cs3pj0802pfcpdr326sl0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9hvt6asamkgfwge00cuj7thx6v775xpeen2ag\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1000000000000262144,\n                        \"delegator-address\": \"one1xhp43dqrusy5yvqluttxzjzw2cey8v823ar3cc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1999999999999475712,\n                        \"delegator-address\": \"one1sfzxtwq22805rmhh9xhx5pmxvd0lc44xa0k7cs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12jzn57j3n8z53nyujjy9v47ylw3v862u98wxyh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0499999999999998951424e+22,\n                        \"delegator-address\": \"one19prarnqe75ywgrta6h3mgafke683ygq0n7ngl4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7382999999999998164992e+22,\n                        \"delegator-address\": \"one1h4a6vpcaatygcjtkfzeew7ux53cme7e7a5fqu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one12lv3rnznvefzx4ej8gtp342ja3tj2vgrule6ds\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4e+22,\n                        \"delegator-address\": \"one1chgyxusddrgrcvumyaru9kxgyfwdyx6pxdkk8n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 999999999998689280,\n                        \"delegator-address\": \"one1qv8nca92x8m9376nr8x5reueldwd0pkt3ltemw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mv7g0rj2dqfnw9jgqqxa8aqea9g8dw4kay77gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s6kkqgzndrf0496fhcvcdkfy49l6ckjcrzdpgk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.03e+21,\n                        \"delegator-address\": \"one1gyp6m8adfxtxregp9hlrfreuh9g2400mvvjcq3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1983tu4snhurnned0n25jn55s4v7rmkknvqfu8g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nls7h0m68can2xg7hlngmesmq9jcj9qke9ptnd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.728e+21,\n                        \"delegator-address\": \"one1hktzqtea8plzlyph86pl4ryyw5u2498kk6sywu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one12kzpq753nzcnqy80xdzg3f5rfmjgx9jyu80k0r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 786432,\n                        \"delegator-address\": \"one1u5gl9tgmvz954kj4j74cpvhsumz943kcmcp3sg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1df922elay8d4kwl2jzsftpn6u0myd9gzr7xx2u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.49999999999999997902848e+23,\n                        \"delegator-address\": \"one1e4f8jsm3wcszrjq8m5g3yyzy8543r66mrvkp9l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c9f3p2hru7zge6jeyelx2rrzcehe42j2yl9t27\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 689999999997313024,\n                        \"delegator-address\": \"one134t2ky6m832cudjtq7g6g0xzfgk7krc329dwtx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.005e+23,\n                        \"delegator-address\": \"one1g529aet4mq0shjlaa5a3kstyvgfpz8gdrlj7au\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.992e+21,\n                        \"delegator-address\": \"one1gjfqm53hczcz7m5ygqzhxh5psaagspsz094kqx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9278999999999998164992e+22,\n                        \"delegator-address\": \"one12uujccq3eefatu4cjdqpqxldlqg90vnmd3zfkm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vh2pxsm52m73k9vedcppmx9jgrdawevkfge9er\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 995299999999852544,\n                        \"delegator-address\": \"one1weklekfacmtxd8l2tekdk098nm0umq67gwvej3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w6eu2vs4tdcj6358jjz7x7rs6zvx2vuqmpxdkx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jfkphz98k23yrejaj6s4m4qqyxfl0apu2ttjec\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.000000000000000100663296e+24,\n                        \"delegator-address\": \"one1l3s66mye7zlzxfufm668ql56jh8taxv5vsh4jd\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 9.99999999999999983222784e+23,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ga0r42vuw995ct96anzemx896an4dvwtu4snql\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 999999999999737856,\n                        \"delegator-address\": \"one190clt466vdjny85q8s8x7mf2unmu8sqzgs45zd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 49999999999997902848,\n                        \"delegator-address\": \"one1qvsrhe2tv4xve2uu6c5tc37f77a5d2pthe9vnr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4356338150801408,\n                        \"delegator-address\": \"one1pzf6fvvellwlj4nz7vzgavk96wqxl7jgcmd9cm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1mem80nc8ecrmved08a97h25p2c2mmguv3knwgf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q5m2zavkeaj90whp2fl5xj0c6gkdy5r8g4hwwf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ju2tg5mcqqz2n2tjq3l8ngfdcu47gg8mwxlus8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.392e+21,\n                        \"delegator-address\": \"one1q3kzmmkecsg909ajh8y0t5tc0kzmftsau406qx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1000000000000000000,\n                        \"delegator-address\": \"one1ky4utxvzq9lp9k8rqggvf2ylpytqzevuys84xf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1g0dekrsdg3u9k00ze3nsyqkjn6752uucsxyf3t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.292999999999999737856e+21,\n                        \"delegator-address\": \"one127vappgzf8ku28uep2fcvjkrhvtc49rj8ufejn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1469hsgueep58mjfe95w2s8xyhmr6e66zdldlmz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.5e+21,\n                        \"delegator-address\": \"one186vc47p9ezhq88krg07mgz7wjrqv3s0572xgcl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2121999999999991087104e+22,\n                        \"delegator-address\": \"one137a9jtvf638cv9t49lj7ald72dzeu6whak3txm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.309106499999999983616e+23,\n                        \"delegator-address\": \"one1xw5n3hf7ptd9qhf9gklgzqjx3eq6z75zm6ccld\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13h58vzrnnslspf93c063uz3tmsvkdnh8p6v4q8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zctfnssn5frpfz9ms0dn5l5dkgl66mjyujdz39\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5242880,\n                        \"delegator-address\": \"one12j9akvwn6e6qq8ru7nxkyyj7jexesuv883kftf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 999999999852937216,\n                        \"delegator-address\": \"one194hs239rrgelg60kan4hqsj6mg5x8ey3vlwde8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15jzx7smpuds47j0qzph232wdafyegxk8h53ydn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9e+21,\n                        \"delegator-address\": \"one177a2tgc4vzly4xgt07g28a80t36e0n2u2ye6qd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sfkzfp6gm6kx9zaz5nm4w2mxdsx4s298rjmadn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.465e+21,\n                        \"delegator-address\": \"one1aetezwtamhmggn4jjrfyrw8qjsgkvy3a285hvl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1necw0ft8tykzluhdxyrnsdacdfp2yc2fp0sk5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 999999999999997902848,\n                        \"delegator-address\": \"one1xsvhrx8m8qm7z5j6q07kt7qjss6rjakcx5lc9f\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5.1022000000000000524288e+22,\n                                \"epoch\": 316\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 999995805696,\n                        \"delegator-address\": \"one15ad34lhszdnz7n8uvnmuzd3w0ay3vy8fdt3343\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1ulm3jw4j7mgrddufg4597feeytrcxzv6rak4vx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05e+21,\n                        \"delegator-address\": \"one1jkpam6q00rgw2rs9hzch665tvjkrs5849p3axe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1888e+21,\n                        \"delegator-address\": \"one1vd4x432tzgcfq0lu6w9dtg3yj89m0xxg36dald\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 786432,\n                        \"delegator-address\": \"one1w7vke338fumxla3wz94v6a4r9lld7tz95tsn75\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 32999999999999213568,\n                        \"delegator-address\": \"one1plu4yql4ls6xt46ea39sddw8urwxnfl376ytel\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 999999999999737856,\n                        \"delegator-address\": \"one1a4at52r6zd6ty5shfhmz7c4mr8dawqqne9wutp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.25e+21,\n                        \"delegator-address\": \"one10u940w5lpe5a07j0dma6flj63zucy7j54jdj6j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0000000000000002097152e+22,\n                        \"delegator-address\": \"one1alwazvsv5akf0a5tlazsz3pwxe75y33vkkzd8s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15kxakmtry9qu9j0s995zrt6jjpg68rg90plel5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1228twrqjkdqwcv2qslzytpqm7rxqw95h3memq4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.990000000000000524288e+21,\n                        \"delegator-address\": \"one10jh487kw0whnpm5a3yxrwfz3ewudeg6ju54wsc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.79e+22,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+22,\n                        \"delegator-address\": \"one1ypr6twd5vd4wszf0g9j3wuxgg29n7m98qtcsfy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7330904521e+24,\n                        \"delegator-address\": \"one127la8ga6u7xh9n9qtagu5k45gq673v9wwz8lx3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.55939419999999994363904e+24,\n                        \"delegator-address\": \"one1ywrwf6hslsygwvwzw63y47a4cak6ld8klfykt3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 233999999999996329984,\n                        \"delegator-address\": \"one1959ugms5a3d7xlxmu7hgqx7nlk8y4z4dvsln8v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0020999999999999475712e+22,\n                        \"delegator-address\": \"one1wnnx6tnm9jecht5acfn7w43u9g3gwwjfs2ym5m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.088e+23,\n                        \"delegator-address\": \"one1rcrmeyt0rwfm78dhrxcmextdh9ldzdxyjnpxrx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2999999999999213568,\n                        \"delegator-address\": \"one1n0zhzzlzh3y6k9w2df679gkxru6489hwyc6pmv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1el0mc2s5kfmgk3tqmfq7zuxkjr5syzpg8g3n6w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.38998999999999972737024e+23,\n                        \"delegator-address\": \"one18uurnjunu2zhdv5lpma2xqvreqq7ynru0yu6vf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333000000,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v4qgh8d5yn4u856ktx0wyurgdgyv3xny9cek9w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5950000000000000524288e+22,\n                        \"delegator-address\": \"one198vh2e9un0z52mntk6mklqrme32kt7x7jk7han\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jnm0mmlw2rur0hjvq3nl4uw3v7r9fd3gjvzcna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0232427015e+22,\n                        \"delegator-address\": \"one1apkucp7yvfruzuyhayewng4agrjwp2p3gq0rnq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.03872e+23,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ey5javh8kgdwssnada0zhewfy0fckwtrku5nez\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+21,\n                        \"delegator-address\": \"one1d7rudy5z7tsp9th0c8m3p527znu2lxuq8wd0qq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0255e+22,\n                        \"delegator-address\": \"one1hj0ep089pnwqz4gvl6qxp4unpyd6u8xmntgx8u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.179157523e+21,\n                        \"delegator-address\": \"one1j4e38206dk7gj7c7knyu7dx5yafmt4hfkpz6ud\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xxwm5efekrd6h4wk3vz2un6ap0tdvq5ctf33vq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fw7hznrgq53kttd9cs23ss9u0rkj0mn8gdnq7u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.11e+22,\n                        \"delegator-address\": \"one1mv3ta8wgdeehrsja9pv7474chmu62dyy7cfqg5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0099999999999998951424e+22,\n                        \"delegator-address\": \"one17xxwlx9qfwdvzvcfva43m2atu5nt5ffksuhteu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1wec2k54hfe5s4aksjwd3tpdvxuj72wtpsnre40\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.995800000000000262144e+22,\n                        \"delegator-address\": \"one14xcjysptaa9f8j5850y64xgpjg3al9agc9xzcv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.20130596400000008192e+21,\n                        \"delegator-address\": \"one173h8vjs6zdmsq0dvzc2pkj6clmg0y4rxal32d5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3511824218983999696896e+22,\n                        \"delegator-address\": \"one163kgcjkd8k68d272lgprfhz83e24xncczw22xk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.320007e+24,\n                        \"delegator-address\": \"one1tx0sa7ku4sp865qnqkhg95yrhhczfh2xxyaj5a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.103170342610648132747264e+24,\n                        \"delegator-address\": \"one1qpflcpzcdafsg79yqtw5qlkawcugwgttsm4wsy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l3ydncn5cymeyjnethz7yegx8q6r6gatlvjpv8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.563e+21,\n                        \"delegator-address\": \"one16x0e9p4gcjgrpjy3pmud8y8q6pu5vsxqcdepqg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.81484000000000000262144e+23,\n                        \"delegator-address\": \"one1j9u7q5ulslgdmdzpkqres3uvv477rjk0lc3eul\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 100000000000000000,\n                        \"delegator-address\": \"one1k4dg4t8z6z6xzp7vcc4qdwzs88456jjuz5d8v4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1867mjamle88unmnlxlwply0n3m8zvmx6cvglql\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.68841984000000008388608e+23,\n                        \"delegator-address\": \"one1n3xctcuzn5lrpfn9gfh0a5gf702mrs9epjdm3n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1z9p7wcsjszs6p5v3k3cse9ymc5vkumgkn5cwzf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1048576,\n                        \"delegator-address\": \"one1s478fvr6snadj9c4fxzz4x7pwlrzt2np45rpkz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cc4wluyzg274y5ucxgqjwage6kaw43890g3m7d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.061e+21,\n                        \"delegator-address\": \"one1fsqyatysv7y3dg7lg0h39kmq2qygxwx3lmm83m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.65686000000000015204352e+23,\n                        \"delegator-address\": \"one12f5mus24s5vzp5ykvwqacqsnnj3j22aryntwfh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 996938878976,\n                        \"delegator-address\": \"one1v6ypn3uzjc4nq5ct0vvyf4xnwury3djd6kg6vv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.122099899999938674688e+22,\n                        \"delegator-address\": \"one1dmk4cs3k980n03sflpgpx2p0tfegwwvcdh2efx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qh2wvapp442p4uacnyagdypftpv8yy5ut89yvm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 998176641024,\n                        \"delegator-address\": \"one1halxmdruupvejdawgx020vr3jyus8scttjsnax\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wrqptxzxkg4h4q898jlclnk866z0n7d9232vgn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one120et22j8vpngjky88e8m0jnmmj0slmwnujmh4a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f7kjcy579yc7r8zhzn44nj92l88r3jaa9dm3x9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9999999999900000,\n                        \"delegator-address\": \"one1ps75yrwelc8xzdkjm02t07lg9nen84xyj9772y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1mu2cvtm4kjaq2cmjhs26gfxxdpjugyqxwkc399\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10yfpuu9h0jdxzl3mfltgrjwhcxtkgdur6nxav8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00899999999999992659968e+23,\n                        \"delegator-address\": \"one1chf4mdtkzaaxe07sdvjaj8fhsx46twftw3kgc6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12xk2yqnla9y5qn420dgjj73pc7jzmgptktlg82\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1489m7zqf3n9gn5axtal3umf8qx2jq3zj7ljrjc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1010000000000100000,\n                        \"delegator-address\": \"one1z46w7d5cqchrj0aa608vdmwze08g7n2ugd692w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1lyrardmsqn50zde5gu0fzd8nvl932624p79ks6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5153467299999392989184e+22,\n                        \"delegator-address\": \"one12vxw3qjf9qc2regm93uwcp68lc6932dvujyrhe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.400229304e+21,\n                        \"delegator-address\": \"one13vg6qy395yplj5gr2cyeww2ezr4pv5s43cg549\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1605927588155359232,\n                        \"delegator-address\": \"one12dkcknhut7es3j7vrzk635zgez05qaecn0dqdr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wfkyq4maxpk2nczl9z8uwedfzwq8fl96u7rkf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dcqjuekcmvhr2yj9dxn8w7ndd90zg2qxumrkna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tqyffgj22vtk4kxxvsnnmcdcwks67f7gcprekl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.602907e+21,\n                        \"delegator-address\": \"one1mhm59ku69wgvxugdhawza70pchumfkgs76arhs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8950000000000000524288e+22,\n                        \"delegator-address\": \"one10lg83xyetxfsrrkt559gq3kpx3wtp5afddlert\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.066379e+24,\n                        \"delegator-address\": \"one12ke756end3j3skwfeqpc5a4zvk6sw9nsujl70s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.175000000000000262144e+21,\n                        \"delegator-address\": \"one13ddv82jnr4luv282fejynspqkq25djyha442mm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one122uq95m7t63rcvy6jd8jwgf96x8hfv63q9m9hh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t2xh5wtxn2wvv3j2dktm88kwssss983chnxzg5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one1cvhk6y4fea8epqsn03wehftac2wk4xuy4fdcxq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.99909989561200017408e+22,\n                        \"delegator-address\": \"one1a7cmys6395vcj2he9nwn9567qquacs5wamd30n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.85780594742e+22,\n                        \"delegator-address\": \"one1vk4jk8x607gw7f4a76jc98vcgvkv8jz554a57k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2288431499999998640128e+22,\n                        \"delegator-address\": \"one168w0glv6g97awyx7au84vw4nwmj69jz23un74m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.513163616219387920384e+21,\n                        \"delegator-address\": \"one1nc3ek05fz56zr4pv4pjw2t9lvaz3tgq5kvcyyf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.213975799999388188672e+21,\n                        \"delegator-address\": \"one1jl35pwyeflj7qg00e20gcewra45frtdfca3v70\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.492327e+24,\n                        \"delegator-address\": \"one1fymg3jnmwx36pv5pql2z0j96wlej23re6dkdvy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.408919e+24,\n                        \"delegator-address\": \"one1g9cqyjfsruwnw8fs0xr3a3dhp8j34lq5d8caz6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.509464e+24,\n                        \"delegator-address\": \"one1azmqc37gnd5jq49d97mdjfdx5crcj8497wwtxu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1f08aq7v8kpeuq7gyhdd435l3zz0xml4uqh6gjt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14t2ucdt3key7z0d2hqlgkfrw0xrt6p95vfm42d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19sv6n4qt8k7gtc8ngmljm6k95fgty3537yhh2r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.00565799999999995543552e+24,\n                        \"delegator-address\": \"one1dcy8lrasq0uj7zfe9sn7evxjvjxcpajx7exm97\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jxt8k4w70un5exuwe0prnu3wacvlve5dldrr6r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 120100000000000000000,\n                        \"delegator-address\": \"one1hvtw320nw29yyx3km2r2sduhywr4fztsnv2vqh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5000000000000786432,\n                        \"delegator-address\": \"one1kuf94z28hjxjmuyaf7mawf2jr32x7p2szzkfcr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2500000001032192,\n                        \"delegator-address\": \"one1krrww9qvkwm2metsu9a75rkxkshaxmg92dxsgd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 732919730001674240,\n                        \"delegator-address\": \"one1xc7njqmm3t6mh3v449x7qjl6m7hvyzph7u05ep\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v2z0cfm3y4ax9afnsqm63vqmrq4qzghqnklt57\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0000000000000001048576e+23,\n                        \"delegator-address\": \"one1l672kfy4fpvkmmg6d05unv8ln6sdq6lwq980lk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 20000000,\n                        \"delegator-address\": \"one1w9frlgehcgzwu85v9g3v70fqn9xe8f40w0h6fq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1phpmaqk8xgq284tzuuucsw2tcnr0t4cae7ypqe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+23,\n                        \"delegator-address\": \"one1vklxs3pmyteyswtp5d79w7yg2wjtl69jy9ya4f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.84908255999993839616e+22,\n                        \"delegator-address\": \"one1n3xrutqmevde7mv2ddxcd2y5xspj7fa29dd7u5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.64e+22,\n                        \"delegator-address\": \"one12agq0p3c6sva7z7ykwnacpt8m0erchtyt2r6vk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9r2qh3fjy3tqtlcc9av3yxqq3rte3mfk45zj7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 97152,\n                        \"delegator-address\": \"one14njp96l2ev680t8mmvymtnxkmeaxq0y2vfcnr7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hsykz8wzc6dx2eykz9wdnqjtft7vmnpragmwnr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 10000000000000000,\n                        \"delegator-address\": \"one1ztuftx554sf84a5gvpzap7dcaa72srjy4wzws0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18lw8ukxrzmk2gvn556y2n8p6qlv7ld4vfyf9ec\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cyz3rv2wy7t0mdq3pa79gcj3cfjte6erm8zkwh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r65rv2n79nx6m3en8aqzsd0m9xz3x4a4w465gw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t2vp6g9c9xasvpu9wpducvy5kdshs7nsdmupjk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1189885999999475712,\n                        \"delegator-address\": \"one16zr285evqrkl0xwvfph0kf7n89sz30d4xvprcw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.501000000000000786432e+21,\n                        \"delegator-address\": \"one1k9za44etn6ntdf9agq9sl3fug25l30dwede9ee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h0uwtccq4vcladmn73yr7w5k4uw4v0rkczgyzr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1gnnjym5e30wl8n2gfmerypgs0zt3627zk57k25\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.37276e+23,\n                        \"delegator-address\": \"one1d9pehkmw7pxwqz5qfptepqr9fay9wtv620pxug\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one139ujmnlqdradgs9rmzwtpnk0n5yyxe86quj7pe\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.99231e+23,\n                                \"epoch\": 321\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.25899999999999996854272e+23,\n                        \"delegator-address\": \"one18qcma69gzfaxtp7jrwswf9mkjgj5qkv8m4nzfe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 951000000000032768,\n                        \"delegator-address\": \"one1mta2cyvv9twvgcvz3hzcc43xsdhgtk5a2passy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 484503273472,\n                        \"delegator-address\": \"one1978t7nzmgh9qwks529wqsye6tz2ll4jvd74g0t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zp4dc4p0zqxzlunggqnuw7fgf27knw535kg4qp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 997988000000000000000,\n                        \"delegator-address\": \"one1avgwjfk3mkuuqfd2ghsuqyvyzwrdf67734qu4n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01e+21,\n                        \"delegator-address\": \"one15prradrxayamtclfgcq6zphfyz0sr0gj8yqpdt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 500010000000000000000,\n                        \"delegator-address\": \"one1j6yemqc572xx02spj35eevaa62mqm8070e8mf6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.02256999999999997640704e+24,\n                        \"delegator-address\": \"one1x8p9ty6wmjqf2hq45njdczpkhv7wmc0447q3e4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9365e+23,\n                        \"delegator-address\": \"one1vh2swdw64fjnqnvdkw30pavg0s9f3z2fjl4674\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14lmmlnhaudnytcqywezdym92wpafmzf09hs8xq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18qlnccujlkc9087ug9n5djxcp9zateasvdvrsn\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5e+21,\n                                \"epoch\": 314\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 991000000000000000000,\n                        \"delegator-address\": \"one1qr5hatnrymkcw4xttcelrjn6epgy65w0gkp306\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.18e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.29000000000000014680064e+23,\n                        \"delegator-address\": \"one1qyrzsytp3sv8phsh45hc9c673uma5xa0whdtng\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5107176503e+22,\n                        \"delegator-address\": \"one1ne4n4gvmu46e7zamyzaruppj0q2n32gwp3ua3h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.95e+21,\n                        \"delegator-address\": \"one1j639uqms8eh9dffqrvkutayh37pxw8j5jz9gy4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 990000000000000000,\n                        \"delegator-address\": \"one1c8ytxewud6d8yjnmhap3nqkx7aa0qjw642a63x\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5.199e+21,\n                                \"epoch\": 314\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2e+23,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fta8pe7j5xntgff4msjlge3amkuh0jpqzq9whg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.16e+21,\n                        \"delegator-address\": \"one1grcs5xrn5fka8h5nkcz9txv50mtsrw3au3y527\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.49999e+21,\n                        \"delegator-address\": \"one1a5j09n5v2l87u8j0l0c9vuj26zaqvsg5spxjdx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.769999999999999475712e+21,\n                        \"delegator-address\": \"one1y92z0vwaqgcuhpqym87cad59mxcvup4hhwdey3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 524288,\n                        \"delegator-address\": \"one1yh2rvwwecu2x9c9rlj3cp2kvpwvj4c8fndw7j3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.69999e+21,\n                        \"delegator-address\": \"one1veaucee6nqmukfu5c4jwsw2u3mq76jawkm94ee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1fl3ua65mgtpy6l95f6wlghavm6548gucxffh22\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.1e+21,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 6.568e+21,\n                        \"delegator-address\": \"one1qn9urmxdsgyvcv0h05w3hmguw0kahazv0pyzws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.08e+21,\n                        \"delegator-address\": \"one1jk5ufps6sheq3ska6zjd9tln3tz4v4wxx8gacd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15hfl60gqeh9uh8yt49lkcc8jnqvpwl35pp6fl2\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2e+21,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 5.37147722021331795968e+21,\n                        \"delegator-address\": \"one1tl4lt3cqhqdk9jnd6tsk08xrm5u0w0aarx6nuj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.058506169e+21,\n                        \"delegator-address\": \"one1jhpnl5sfvt0uqltzhfz45e6pu9nfe8sf8mspnx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7564e+22,\n                        \"delegator-address\": \"one1apuealayrtv3xa002m3yr7hwwca8cuny2jg6wy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2e+21,\n                        \"delegator-address\": \"one1ezj0qu6xe084l4d0la726vsqqe9cclhv2xqy59\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1afv3lypycurgt26hden4tlq894tv7y0vgms07z\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.62e+22,\n                                \"epoch\": 320\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 5.567e+22,\n                        \"delegator-address\": \"one14zmfx50m5ecjugrqnqd2362kygmwxgu3r6my40\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6990000000000000524288e+22,\n                        \"delegator-address\": \"one1l244lktkg4zclfl2fj30npp5eyp2vg2e4fdp6j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Sesameseed is a multi-chain digital asset staking community who's unique rewards structure, fueled by the SEED token, provides stakers better rewards over time. Stakers earn rewards from multiple blockchains by staking to any one of Sesameseed’s nodes or simply by holding SEED.\",\n                \"identity\": \"Sesameseed\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+28,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Sesameseed\",\n                \"rate\": \"1.000000000000000000\",\n                \"security-contact\": \"Juliun\",\n                \"update-height\": 3358749,\n                \"website\": \"https://sesameseed.org\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"1.024745331446509385\",\n                \"blocks\": {\n                    \"signed\": 32690,\n                    \"to-sign\": 32768\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"1.024745331446509385\",\n                        \"epoch\": 186\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.140460511308333108544e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 7.1500000000133333e+22,\n            \"validator\": {\n                \"address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                \"bls-public-keys\": [\n                    \"15dad6a28f96880c1462e9afa7745a9e65fdc971c981813847a0e4d00849b476c18c1ae9b1d75126b158eeeb21f08910\"\n                ],\n                \"creation-height\": 3358751,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.15e+22,\n                        \"delegator-address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1zvdmhs9s0k6atfdgmeqf4fugnsl2xsyu0jkmxk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e2whthzfvwq86cyevg3xzgj6ztps58c5vx6hna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13eec5h4k6xw5h8up4duqzpvsdtcrypnekqjnhy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12ayrjxs8rkl3zhuczkrpflpr3fxqvkau9cx3sr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ty5nf4tlmxgh8acyum5xy27fh5hrmx9lsemj8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jfswdzr7cruvpyp2t2ed5znun6uvku7ynqzq22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1arje47h08vdu573kjrmlfs59nhqcfn9mfr9xdh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1suuwp5vzlvu0nkc3xuakj42zl7249xt94ykgl4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5cuu5m8l92gsrkxm753vxe74qax3u2m620s5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1txgkp53hshqg5vsez2f5qrggw9c0qt3ymvj7wk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w6eu2vs4tdcj6358jjz7x7rs6zvx2vuqmpxdkx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 133333000000,\n                        \"delegator-address\": \"one1jx7wusrrnj2djdf4dus5cq07yw3fe2077j2l67\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sd69jq8flfklpfvr2pwdd59tcangfqy5zky0nn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v9yk732v6e3reamu33zgt57thpg753vyazuj2e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wzcne5z5k8lvjytun84pd0cwwsn9j3z5h04u4p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Harmony node running in Contabo Nuremberg servers, manage from an active community member, fees will not change\",\n                \"identity\": \"Contabo-2\",\n                \"last-epoch-in-committee\": 186,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+30,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"CONTABO-2\",\n                \"rate\": \"0.001000000000000000\",\n                \"security-contact\": \"Contabo\",\n                \"update-height\": 3374868,\n                \"website\": \"www.contabo.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 43646,\n                    \"current-epoch-signing-percentage\": \"0.999564868888125501\",\n                    \"current-epoch-to-sign\": 43665\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"19421774619325124998999999.999999999999999998\",\n            \"lifetime\": {\n                \"apr\": \"0.120512557434464971\",\n                \"blocks\": {\n                    \"signed\": 5251090,\n                    \"to-sign\": 5272970\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.123524932568919478\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122515573560633126\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.126130310774519947\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123512494119442260\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121146679743658461\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.126317947688126637\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.125253586258175429\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119111670343935532\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117810280104347305\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117584218419455246\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.116018006661857546\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.118785361546828139\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121789698298027418\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120850219653037896\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.117737661233394110\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119906099867434756\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119576249200782333\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120621713735729171\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120301460877682412\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118912709537334761\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121576751421536999\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.122370219498424466\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.119790157025680073\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.120360642303891629\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.121111103116366113\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120886081362845073\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120488944450918863\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.118162590685074596\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120201445030960460\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119930681918189592\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120512557434464971\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 49417,\n                            \"to-sign\": 49446\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49224,\n                            \"to-sign\": 49272\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49267,\n                            \"to-sign\": 49293\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50215,\n                            \"to-sign\": 50253\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49242,\n                            \"to-sign\": 49344\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49162,\n                            \"to-sign\": 49245\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50901,\n                            \"to-sign\": 50958\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49196,\n                            \"to-sign\": 49272\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49146,\n                            \"to-sign\": 49233\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49333,\n                            \"to-sign\": 49368\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49351,\n                            \"to-sign\": 49440\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49799,\n                            \"to-sign\": 49854\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49474,\n                            \"to-sign\": 49578\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50124,\n                            \"to-sign\": 50220\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52560,\n                            \"to-sign\": 52632\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 55525,\n                            \"to-sign\": 55587\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50089,\n                            \"to-sign\": 50145\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49528,\n                            \"to-sign\": 49605\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49641,\n                            \"to-sign\": 49695\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53332,\n                            \"to-sign\": 53499\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49288,\n                            \"to-sign\": 49425\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49315,\n                            \"to-sign\": 49494\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49436,\n                            \"to-sign\": 49542\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51320,\n                            \"to-sign\": 51480\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 70364,\n                            \"to-sign\": 70600\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 67681,\n                            \"to-sign\": 67848\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53178,\n                            \"to-sign\": 53232\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53454,\n                            \"to-sign\": 53538\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53634,\n                            \"to-sign\": 53673\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 57898,\n                            \"to-sign\": 57942\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 7.14288721925499778519228e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.781987548323802449879e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3325cbb57ee9c83269f593be1bc8fe1cba61b98bb41da6834203fd9cb022a36ad89806c9c7a75dd910a0dadb9acefb17\",\n                            \"earning-account\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                            \"effective-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"group-percent\": \"0.006983576492044020\",\n                            \"overall-percent\": \"0.002234744477454086\",\n                            \"raw-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.781329468296122879091e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f400d1caa1f40a14d870640c50d895205014f5b54c3aa9661579b937ea5bcc2f159b9bbb8075b516628f545af822180f\",\n                            \"earning-account\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                            \"effective-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"group-percent\": \"0.006983576492044020\",\n                            \"overall-percent\": \"0.002234744477454086\",\n                            \"raw-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.782106717629023354873e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"90953c98e139de210191c57a01cde123cb7d2de7517da0270c78f0fb8ec222341165ca1569077dd7951accc0b5070a03\",\n                            \"earning-account\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                            \"effective-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"group-percent\": \"0.006983576492044020\",\n                            \"overall-percent\": \"0.002234744477454086\",\n                            \"raw-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.9422774619325124999e+25,\n            \"validator\": {\n                \"address\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                \"bls-public-keys\": [\n                    \"f400d1caa1f40a14d870640c50d895205014f5b54c3aa9661579b937ea5bcc2f159b9bbb8075b516628f545af822180f\",\n                    \"3325cbb57ee9c83269f593be1bc8fe1cba61b98bb41da6834203fd9cb022a36ad89806c9c7a75dd910a0dadb9acefb17\",\n                    \"90953c98e139de210191c57a01cde123cb7d2de7517da0270c78f0fb8ec222341165ca1569077dd7951accc0b5070a03\"\n                ],\n                \"creation-height\": 3358761,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                        \"reward\": 6.96909142803405253539e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.41e+22,\n                        \"delegator-address\": \"one1hdf03n7fdms7rakkekse7atftnl42vm299pcap\",\n                        \"reward\": 282568867526451244871,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.032691816e+23,\n                        \"delegator-address\": \"one1a9x2hfav5a2q378mpq5zcydvr2s6eekh7swdu9\",\n                        \"reward\": 231574023665595607230,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yms3yzl9d8jcgqdk0fx8hasn4k4zuaaw0rshu5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 1.18617044018605261101199e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3e+23,\n                        \"delegator-address\": \"one15tjsjcff0mcxc76qjrspmc8ml53yg9px3d2qgp\",\n                        \"reward\": 131011307521659572346,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dm69hwemcpae6gdeaefkg0h9njvr977wzywrkl\",\n                        \"reward\": 313505343240002763,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1940xav3v8j2z7fp9rj4xz009y2lpjgrglse2gf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1e+22,\n                        \"delegator-address\": \"one1zefkjl7rh92ppn7ds67cap0yjrduz8923szdmy\",\n                        \"reward\": 432899530048254450,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.4425135691e+22,\n                        \"delegator-address\": \"one133rvnuneyvq5upwu2azeh6h8xx8n3ph2ztktx9\",\n                        \"reward\": 63650198512670614679,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.14e+21,\n                        \"delegator-address\": \"one1gu6ftc8cva77j7n5zevgpdshk8jmk0vhhs0w2c\",\n                        \"reward\": 179509534752511019757,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1hj5f373l2lgc7eu36zzpczvnspsckhc9x236jm\",\n                        \"reward\": 63596553892889369904,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333000000,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 116080420,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2532599144e+22,\n                        \"delegator-address\": \"one13zdsyuqnmqh8005mr0xrp2hmdwq48hd5a02940\",\n                        \"reward\": 43965277702423348391,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1unmae47j2w3q9vxqs8fjpa33u8eu8w5dfsuh5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ut0r2v94czzncsgaw9zzlplyx33ztew4tyv5w\",\n                        \"reward\": 79356784906161365,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13vllswnvg8jhvkwhht2wmraw5srwhhjtl3zace\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g4k8j5a0d032duwk4ns9qcv0lgrtr8370t2s7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.04418017935e+22,\n                        \"delegator-address\": \"one1m0ru247ppgrpqy3djuclvur2ytqytqdrjeah6u\",\n                        \"reward\": 700684955525748114152,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vzlt9yygwvc62vx9n35t2l3k57adctyhzxn7ar\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one183ecdj4g2lam3e0xyfexxyv9c2p6q30clpxl07\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.02668119e+22,\n                        \"delegator-address\": \"one1jf0qv0g07ahjg2q8duq3kgfx92htkwsajx4ufc\",\n                        \"reward\": 117055103358718740894,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17yk3vcj47jdm04p3uq2yqpm4sp57vjv9utlh8t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6368177032e+22,\n                        \"delegator-address\": \"one1qup2xu4zj2m7aeld7z7cjkcw8fpspfaprs4tc4\",\n                        \"reward\": 107785124475162254340,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1uu6pdunu60chctm7nwjwzsl5r59gfjcqnke9ge\",\n                        \"reward\": 298540413277569326598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.539e+22,\n                        \"delegator-address\": \"one1aw2hx2ydu4l8xkqcvksru7xeg6prt3rsr7372c\",\n                        \"reward\": 412432908939362965501,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7ycs6yexeatycs5686lajr43v9ezc0tgpw7fz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4506e+22,\n                        \"delegator-address\": \"one10qpj8nzc37x3jfn5qagylkjemrszea56hhmerw\",\n                        \"reward\": 410390141536528930710,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.25e+22,\n                        \"delegator-address\": \"one1hu8dqr7glfengcnw2sv7vxzcc25h3art4crd9v\",\n                        \"reward\": 20991551671213424759,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kzhs0vfhv6q52xh5pq6z25qnaeaztrkmh50zfa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1snm00zd3vw927vsxavpnnd0fs4mmv00s9g6nms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nsycmjwwe0fcdtzd4a3tgadfw76jxkuyhzsp4f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 625000000000,\n                        \"delegator-address\": \"one1v3tzxmw4fsfx5k5ejxygyt9wlk2dqztvwsk7mc\",\n                        \"reward\": 569744571799164521,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0761666666666666e+22,\n                        \"delegator-address\": \"one1v90kxvca397mkcevp3c8vtg8tr03mfdkrkdrwe\",\n                        \"reward\": 140742785273314034211,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f2ctrtwl3cwz50recdg52lalk7elnseaf8p2n5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6584e+23,\n                        \"delegator-address\": \"one1n24e0eqg0ajwf2ehtvy0fw02ruvu4955ks27xg\",\n                        \"reward\": 4.927834009175961432417e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.8e+23,\n                        \"delegator-address\": \"one1npjcsmeuuxu0zp3mt00ja5puy60swjj40657va\",\n                        \"reward\": 45932912048685251747,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1gwpxar3zzg5jhj5vnx0gzd89v00nrvt9deyjvp\",\n                        \"reward\": 9656713632268627518,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.549e+21,\n                        \"delegator-address\": \"one1yk6ntuxxpmxxauk42qkrglfar4e7eekv0t0tgr\",\n                        \"reward\": 55452909928160881545,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nja6y9fkj852pqz9edrsgpvklvuh6eu42hlldz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy63k9kp6vgmrl2s4fpw8kmwn4dl96vrdhlpnx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17vtxary4re3shw5wvdca8satnj4ycp80dvesvg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1nydf32ytddsunelh7n4ezq3p26vg4vpdw4q2mz\",\n                        \"reward\": 475918926636964851966,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.3676973e+21,\n                        \"delegator-address\": \"one1h2efq0vu3nf8qfa3hnh54sml4m0u9a8hettggd\",\n                        \"reward\": 7516670103053659745,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.311569e+21,\n                        \"delegator-address\": \"one1lyrardmsqn50zde5gu0fzd8nvl932624p79ks6\",\n                        \"reward\": 152715357816456991658,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 124018512636542440457,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.06950944e+22,\n                        \"delegator-address\": \"one1qrak26rmgfmc3tzu2q9zhzf3n3ltl4vna7ufc7\",\n                        \"reward\": 71612133743593544233,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0967e+22,\n                        \"delegator-address\": \"one122d9jqx3mrwp3w3y0qarqevux553685hge7pzj\",\n                        \"reward\": 990049596127716308022,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3375531e+21,\n                        \"delegator-address\": \"one1a9jlxmfyc2fqdg5eqe4dasd0ajmhz6ttwfwzw2\",\n                        \"reward\": 128454881268543781320,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one180dms9rpndjmj356g9nqez3vat5snyhhgvcuz9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 955786529311827721,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1gd7uxgqnldqsjr79fv4su23vl8r5ymul2vd7nl\",\n                        \"reward\": 12677542778943033067,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.28e+21,\n                        \"delegator-address\": \"one1wlqur58tvnjf4ppnyywqv6mg97jcfjquzj8y6c\",\n                        \"reward\": 2894386543100487803,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15mdeas4ays7ypumqkncpey3qy45uaplzsstsxc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one185vrxu40r46nankzhtkgvhdwjewhfkpqlnkfzj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.996999e+21,\n                        \"delegator-address\": \"one14frs98ere0y2h43pac9paj6uu3ayxj4s7wmrue\",\n                        \"reward\": 26730029299191988786,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0111e+22,\n                        \"delegator-address\": \"one1lw65t2wvqvc7ahl0ac0xafjvpu47h8fpdlurua\",\n                        \"reward\": 93641072046387995446,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.511999e+21,\n                        \"delegator-address\": \"one19sv6n4qt8k7gtc8ngmljm6k95fgty3537yhh2r\",\n                        \"reward\": 31356594690634290359,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1rqvvf5rmpy2cqycfhhm8q9zggy594cp2lrhlca\",\n                        \"reward\": 5350279031787943614,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z46w7d5cqchrj0aa608vdmwze08g7n2ugd692w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.454608697e+21,\n                        \"delegator-address\": \"one15cfu4hxfx2jrqlxsx8a46s9mztpzzlu007teek\",\n                        \"reward\": 68251820937008634986,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 991000000000000000000,\n                        \"delegator-address\": \"one1h0uwtccq4vcladmn73yr7w5k4uw4v0rkczgyzr\",\n                        \"reward\": 9855238710101766571,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.623e+21,\n                        \"delegator-address\": \"one1pe9q4myhu7ydcwx55xzhc3ttfrrg69dyty90nh\",\n                        \"reward\": 35850901134889042299,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1ht8st5csaaj2gys6jqc25uvt99k2ruewd885xl\",\n                        \"reward\": 33387885192599402032,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 10000000000000000,\n                        \"delegator-address\": \"one142j53czsls0ykmkgfc035psxlc3u3lxfzs3k5m\",\n                        \"reward\": 111302563317641360,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.525568e+22,\n                        \"delegator-address\": \"one1n2qw8fjwwjghvfl3fz80qp93mq0af8x8wzs8r5\",\n                        \"reward\": 64061533824655138986,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one17m9vyy3rcm8cqqxutw55vg9cmz60j8ke68edrf\",\n                        \"reward\": 35962108513959569344,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.11e+23,\n                        \"delegator-address\": \"one1673lu2zpu65eew2yffa4h8ga54zsmyu8mggsq4\",\n                        \"reward\": 471232830671427915155,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.15280055e+23,\n                        \"delegator-address\": \"one169r0pqxc88m08yjmf54e5xhklstezdxtl6xh07\",\n                        \"reward\": 578175890914757428097,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00099e+21,\n                        \"delegator-address\": \"one1kwszkvh8kks7c7ph0tla94egwwuf8ra2sr30xh\",\n                        \"reward\": 1771216467214344222,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.699999e+22,\n                        \"delegator-address\": \"one1ja0mukfvmk7dlnx6q67kq37rtlrmegfaxdakm2\",\n                        \"reward\": 11342407152132258388,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1w4ya9t7qv5k4ez559afr4gpuvajumqcwcyszc4\",\n                        \"reward\": 72705603826120345556,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Welcome to Total Harmony, the choice of 40+ happy delegators! Thanks to two redundant nodes in Finland and Germany Total Harmony offers very solid uptime and top class rewards\",\n                \"identity\": \"4b777b15c306611579104249a0fce4d62c5ddd72\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Total Harmony\",\n                \"rate\": \"0.040000000000000000\",\n                \"security-contact\": \"anttut@gmail.com\",\n                \"update-height\": 3808764,\n                \"website\": \"http://siptune.fi/en/harmony.php\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 551983,\n                    \"current-epoch-signing-percentage\": \"0.999994565079549119\",\n                    \"current-epoch-to-sign\": 551986\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"238096943383661348274877567.999999999999999982\",\n            \"lifetime\": {\n                \"apr\": \"0.117837051049793930\",\n                \"blocks\": {\n                    \"signed\": 94787895,\n                    \"to-sign\": 94815135\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121831684440713939\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121847725612466528\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.122957039067475756\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.126347372279122662\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121699775518437990\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.106346273061453435\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122513671189806606\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119499531248654752\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119079313755172395\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117785449662284519\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.119277923633396087\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115649372974114815\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119615661201121895\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120037843656288744\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.121861174032809563\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116757399884308249\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119394085063306702\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120111721056903516\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121109668202270868\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120694623824259924\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121000281548882557\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121217753696958993\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118849456631946474\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119153742626809507\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117424842826194466\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118820257955194672\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118554329554753989\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117917208979962274\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.119061053846893148\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118274252533727585\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117837051049793930\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 624858,\n                            \"to-sign\": 624860\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 623510,\n                            \"to-sign\": 623520\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 623659,\n                            \"to-sign\": 623672\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 631328,\n                            \"to-sign\": 631356\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 623921,\n                            \"to-sign\": 623936\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 623484,\n                            \"to-sign\": 623514\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 637388,\n                            \"to-sign\": 637404\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 623797,\n                            \"to-sign\": 623810\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 623367,\n                            \"to-sign\": 623374\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 624281,\n                            \"to-sign\": 624282\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 624535,\n                            \"to-sign\": 624642\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 628123,\n                            \"to-sign\": 628194\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 625967,\n                            \"to-sign\": 626034\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 631206,\n                            \"to-sign\": 631266\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 650081,\n                            \"to-sign\": 650126\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 673701,\n                            \"to-sign\": 673786\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 630404,\n                            \"to-sign\": 630472\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 626089,\n                            \"to-sign\": 626122\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 626761,\n                            \"to-sign\": 626800\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 657101,\n                            \"to-sign\": 657150\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 624883,\n                            \"to-sign\": 624906\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 625500,\n                            \"to-sign\": 625524\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 625937,\n                            \"to-sign\": 625964\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 641202,\n                            \"to-sign\": 641218\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 653246,\n                            \"to-sign\": 653266\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 559569,\n                            \"to-sign\": 559583\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 634824,\n                            \"to-sign\": 634834\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 672503,\n                            \"to-sign\": 672529\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 637835,\n                            \"to-sign\": 637839\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 668034,\n                            \"to-sign\": 668069\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.8034748008020988793978422e+25\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dd505fe02982a929949a5bca34eb9f98ea7201f473a71f189582161b89866880611a37bd27e0f66d5be4b4cfb7f48790\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"778fedb1699a7741eae03dbdcbc376c983b1a23aa9da2548c1706442acc3431747a957cf7aee2ae0fa028bc0c83a1684\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"679f3054719461eb4808fbc74e9129d557b3279c44b22aa52983bca178a99303f1e54aa9cdb8d2a78f86ec60586d8594\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"356b0732524bdd3a2ac6f2a09aa29da9a71b73167f42c64e5ba2b3322d82f79ade31b56efe61782f25c354c1dec28f88\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bcdb69af84771f98edcba335e23748695242dc4c4116c24138766637837e7815dfbd2d30e8c4948eff193e62b2e51e80\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"36dbe94650fcaa1814f0764c5fdc2810defade312a243424ff0053dd6a43cbf9b7907fb267d8848169f1351e8ec4318c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"86385311e94f22677c74aaf2c8a7da682301f2e071354e3f88dab16d3177f482b8e691716e77b9dfc6df851d94560e00\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"62937063063c3c8390c86fd406b3155158fe8ecf1e82b0116e1e27cd8fb021c61c39469658d212cb89168ada8ab89a08\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"aeb4aafa7d532057357b88ed869a785595b004abef728e16ba082fad875637691f26b63e5f44b6f3195be9e6e96ca580\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1e62c58154766ed812630c9a1db3f00f258bf42285d954bf049d36ba75c7c4ce58dcfbd0bfe50e1455d8f60313fbbb94\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"30e724b5656353eaaadf869676c7068c50d85df2509970ba2ba9e20d6606ca56cc6753cef7a58997a3fd9c0217c3330c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"adcfb3af32463919cb1a8d4cd8fde30d7d47442c771a978102f553ec90d84637d26a8b9a201c738dfa0353ebcccfaf18\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dfca9b0bb41a358023b75136f51882e2b5396806f4287a0200f772c2b7b8a5981730fbc7558b086da8217969518d3498\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.711823388012755895103e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"15fe75b1df8039ad6d490f36b9207543971df8f645f33a1aac9e6b95b45880228a28a5c0760e56e090f1c501628f638c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676640418765522761077e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9f68854a0d27f0af2bfc447cd0cc724857ee90b10fe668e8bbadbbd81a6051f593813f15533004a76c2a0ccb25306911\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676640418765522761077e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ebc506a607d843521bc0362c74495ba7166894a7fd1d8bdb2858783b0655f4b542e54b46820ee504a97491a35a354e19\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676640418765522761077e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d72a260c8325571aa5cda49b44d7f5fefe86b22a2d93bcd2dd3958a2ccc391f38babcf9a8a4571517df3307c65378091\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676640418765522761077e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c1cc6891a6234bc6a1c711def8a2d15942a4f6c17eb2758583c0bd37ed59df55d7aa0eb26479d3d5b9ef151a762db295\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676640418765522761077e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fd77e1e3b2db565623d986fc29ae46a620d4e945455cf4ad2a383e30c61aa95c851fbf2f8e774f732dd654de5dc79f8d\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676640418765522761077e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2992b4fa2d94d3ba42a43c6cafc0436c6bc33aeff346014e637af676c16f1514c8daa7ab5edf7b431acda813332f4505\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676510395760370396872e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1d8eadb7653f29928ba01d8ddd83fef588019d1ee125d1ee9d4365c4077d089a7fe9018d32d6af0a86a75a8f452d6b05\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676640418765522761077e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2864f5f1cd848f2c7302faf6bdfc7456984365226c3d53c7cd63cd1dd316fee75a7ae48560ba5658ab47497b952eea99\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676640418765522761077e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e85e14d13b584e3cf86e02c131de6a7868f46db418885e0cecff5d0898bafb9deea5824d68681581d8425907e1f08785\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676640418765522761077e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1fbbb30e639c6fcecf5fbc428f2aed8e3425a52ea6353221bc12d2a68de711f3c84788f2ba20e84d8f2f34fea043e519\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1c9c5b067ef960dec0ace80c2f56a630d63827b98d29c2a7a564d730e01d31f510802980bc5d291bcb7f4adb799e6f16\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"be166c82632ee7cd22cb4682b8865cc8755abe2b87f2d3e8e2c168b87fa357c8aa274f2b803b16f5ffe40d5b048c3d96\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6c6d16bd9e0e6be6bbaf86aaaa27c072dc1a641adc386f38e6f570479329324a511785d00183de360acf97958717ab86\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6302b0a03e573ffc8fd6a51ee48f0d1d66d9320a67d40f807469bc6677d678510c8d72fda9cbb170e06a22efe2dc890a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"804f4659bbd2c3615bb749bdd363395c6ffea3a3bb95364073295585477c17ccb9fdc4b0fb0dc7620a90c71fc4056012\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f15d1c1e51c9a9051ebf663171ea304b533ef021b2b954d985d9d5b0bf6d237517936c0d4526e4d124b540995bf98c92\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a0301ee493e3a78516929e7a89b6779e828962b8516a4dd41b1374e21a179f00fa6c3b75387c357138d5d1eca6c2d312\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"23e1fd371b179cd2abc2adac5a9b237ae61c812a3cb8b5e7169dc8841da0d8fadb815a16657f73c8af27256298a7138a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1f8ab84a6a98cb00399aa14938c0ca3ffbf3b83555c21559254e5a96047394cda67d2c97037a2ae1d44d6c32b3666002\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b922a394cd8aeb54d35f4aa01ec21179a177f4109bb25a2db6ea3164a0276ec28c2dd047ac8ab7f6b35e96420019758e\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b1cf54323f6285c959ed261f58b0f452d93659ad7a62e1237c1a66c6ebfc3af6a11e76b1c20f26aa9ca86d01ca57270a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0fb881ed1d2d8ba0f1ce94a1ff278d934bf2eb0817a3d1de9a41e944b35b2f56da676cf949219e1538554205705b2f86\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"52d655352e524c9e018c8fa56868d1650051dc3892a66572b23b516a0e79ce292dcad125ba61c17d4c69c28560f1ad06\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668078469719885960167e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1d920cb4c5c279dc179d39ddeb7d8d4e89f8a375e022a7d68c06e63a10ae460180854054b6c62ff4f99485aa355d0a8a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 2.37022872383661348274877568e+26,\n            \"validator\": {\n                \"address\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                \"bls-public-keys\": [\n                    \"1f8ab84a6a98cb00399aa14938c0ca3ffbf3b83555c21559254e5a96047394cda67d2c97037a2ae1d44d6c32b3666002\",\n                    \"356b0732524bdd3a2ac6f2a09aa29da9a71b73167f42c64e5ba2b3322d82f79ade31b56efe61782f25c354c1dec28f88\",\n                    \"6302b0a03e573ffc8fd6a51ee48f0d1d66d9320a67d40f807469bc6677d678510c8d72fda9cbb170e06a22efe2dc890a\",\n                    \"804f4659bbd2c3615bb749bdd363395c6ffea3a3bb95364073295585477c17ccb9fdc4b0fb0dc7620a90c71fc4056012\",\n                    \"a0301ee493e3a78516929e7a89b6779e828962b8516a4dd41b1374e21a179f00fa6c3b75387c357138d5d1eca6c2d312\",\n                    \"b1cf54323f6285c959ed261f58b0f452d93659ad7a62e1237c1a66c6ebfc3af6a11e76b1c20f26aa9ca86d01ca57270a\",\n                    \"2864f5f1cd848f2c7302faf6bdfc7456984365226c3d53c7cd63cd1dd316fee75a7ae48560ba5658ab47497b952eea99\",\n                    \"2992b4fa2d94d3ba42a43c6cafc0436c6bc33aeff346014e637af676c16f1514c8daa7ab5edf7b431acda813332f4505\",\n                    \"9f68854a0d27f0af2bfc447cd0cc724857ee90b10fe668e8bbadbbd81a6051f593813f15533004a76c2a0ccb25306911\",\n                    \"d72a260c8325571aa5cda49b44d7f5fefe86b22a2d93bcd2dd3958a2ccc391f38babcf9a8a4571517df3307c65378091\",\n                    \"c1cc6891a6234bc6a1c711def8a2d15942a4f6c17eb2758583c0bd37ed59df55d7aa0eb26479d3d5b9ef151a762db295\",\n                    \"b922a394cd8aeb54d35f4aa01ec21179a177f4109bb25a2db6ea3164a0276ec28c2dd047ac8ab7f6b35e96420019758e\",\n                    \"be166c82632ee7cd22cb4682b8865cc8755abe2b87f2d3e8e2c168b87fa357c8aa274f2b803b16f5ffe40d5b048c3d96\",\n                    \"f15d1c1e51c9a9051ebf663171ea304b533ef021b2b954d985d9d5b0bf6d237517936c0d4526e4d124b540995bf98c92\",\n                    \"0fb881ed1d2d8ba0f1ce94a1ff278d934bf2eb0817a3d1de9a41e944b35b2f56da676cf949219e1538554205705b2f86\",\n                    \"1c9c5b067ef960dec0ace80c2f56a630d63827b98d29c2a7a564d730e01d31f510802980bc5d291bcb7f4adb799e6f16\",\n                    \"1d920cb4c5c279dc179d39ddeb7d8d4e89f8a375e022a7d68c06e63a10ae460180854054b6c62ff4f99485aa355d0a8a\",\n                    \"6c6d16bd9e0e6be6bbaf86aaaa27c072dc1a641adc386f38e6f570479329324a511785d00183de360acf97958717ab86\",\n                    \"23e1fd371b179cd2abc2adac5a9b237ae61c812a3cb8b5e7169dc8841da0d8fadb815a16657f73c8af27256298a7138a\",\n                    \"52d655352e524c9e018c8fa56868d1650051dc3892a66572b23b516a0e79ce292dcad125ba61c17d4c69c28560f1ad06\",\n                    \"e85e14d13b584e3cf86e02c131de6a7868f46db418885e0cecff5d0898bafb9deea5824d68681581d8425907e1f08785\",\n                    \"ebc506a607d843521bc0362c74495ba7166894a7fd1d8bdb2858783b0655f4b542e54b46820ee504a97491a35a354e19\",\n                    \"fd77e1e3b2db565623d986fc29ae46a620d4e945455cf4ad2a383e30c61aa95c851fbf2f8e774f732dd654de5dc79f8d\",\n                    \"1d8eadb7653f29928ba01d8ddd83fef588019d1ee125d1ee9d4365c4077d089a7fe9018d32d6af0a86a75a8f452d6b05\",\n                    \"1fbbb30e639c6fcecf5fbc428f2aed8e3425a52ea6353221bc12d2a68de711f3c84788f2ba20e84d8f2f34fea043e519\",\n                    \"62937063063c3c8390c86fd406b3155158fe8ecf1e82b0116e1e27cd8fb021c61c39469658d212cb89168ada8ab89a08\",\n                    \"778fedb1699a7741eae03dbdcbc376c983b1a23aa9da2548c1706442acc3431747a957cf7aee2ae0fa028bc0c83a1684\",\n                    \"dfca9b0bb41a358023b75136f51882e2b5396806f4287a0200f772c2b7b8a5981730fbc7558b086da8217969518d3498\",\n                    \"adcfb3af32463919cb1a8d4cd8fde30d7d47442c771a978102f553ec90d84637d26a8b9a201c738dfa0353ebcccfaf18\",\n                    \"aeb4aafa7d532057357b88ed869a785595b004abef728e16ba082fad875637691f26b63e5f44b6f3195be9e6e96ca580\",\n                    \"bcdb69af84771f98edcba335e23748695242dc4c4116c24138766637837e7815dfbd2d30e8c4948eff193e62b2e51e80\",\n                    \"dd505fe02982a929949a5bca34eb9f98ea7201f473a71f189582161b89866880611a37bd27e0f66d5be4b4cfb7f48790\",\n                    \"15fe75b1df8039ad6d490f36b9207543971df8f645f33a1aac9e6b95b45880228a28a5c0760e56e090f1c501628f638c\",\n                    \"1e62c58154766ed812630c9a1db3f00f258bf42285d954bf049d36ba75c7c4ce58dcfbd0bfe50e1455d8f60313fbbb94\",\n                    \"30e724b5656353eaaadf869676c7068c50d85df2509970ba2ba9e20d6606ca56cc6753cef7a58997a3fd9c0217c3330c\",\n                    \"36dbe94650fcaa1814f0764c5fdc2810defade312a243424ff0053dd6a43cbf9b7907fb267d8848169f1351e8ec4318c\",\n                    \"679f3054719461eb4808fbc74e9129d557b3279c44b22aa52983bca178a99303f1e54aa9cdb8d2a78f86ec60586d8594\",\n                    \"86385311e94f22677c74aaf2c8a7da682301f2e071354e3f88dab16d3177f482b8e691716e77b9dfc6df851d94560e00\"\n                ],\n                \"creation-height\": 3358764,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.31085e+23,\n                        \"delegator-address\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                        \"reward\": 6.6847073697450943947683e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.295170455686e+23,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 1.669443828294203527664e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.001877e+24,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 1.1100429973289472599559e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1vyd0rgpspyjme3ufrvlmk8mza8ez929ngtamlj\",\n                        \"reward\": 170476099098021682291,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.28101665e+22,\n                        \"delegator-address\": \"one1aurkwpe7p3zz9k2z70xg758m26p7q5wvem5prx\",\n                        \"reward\": 187680039829345716623,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.41725e+23,\n                        \"delegator-address\": \"one10wgvlxx85vwcfk43g0vzss95er80uneh2h80hv\",\n                        \"reward\": 1.777656404544368850147e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.2248334769333333334e+24,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 2.9207993608145072497578e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q563tnpv4tnh7l30p2wy3gnu3akhd6va97w7ku\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16295hjtqyr0z22swaqthv7mvmvn2gltnj5gera\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.7734e+24,\n                        \"delegator-address\": \"one1j7f7wzt0meeepnycpmm47tchslck07dsh28th7\",\n                        \"reward\": 290295932802877442278,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.092182e+24,\n                        \"delegator-address\": \"one13zqn0g4r3zs9ppjqqzyan6h9vzdznndw9t33zh\",\n                        \"reward\": 7.107791751930619965178e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.49e+23,\n                        \"delegator-address\": \"one1kl6wxrxhxualmrl5fshqzvs4unq5cc38esf85q\",\n                        \"reward\": 167307894629957759031,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7346010695e+24,\n                        \"delegator-address\": \"one149aw0kne2qwyxkxhz9v0msgf00lndvvdjne4rq\",\n                        \"reward\": 2.9695358541323678265034e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 42340714960334626662,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.001e+21,\n                        \"delegator-address\": \"one1adyd3udxj05yutue6c2x4gk6m76hgn843as87r\",\n                        \"reward\": 20915651103702159312,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awj9384w8dh34teuyf8h0tz3f6t6kd4eu7fta2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kcmct2rrvxhy0xalrjzgglcmmytdw26phzxg6v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tqwwn2rh58fjafysl9rgpxjgjz8wdjmqgdwlv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fql5kv8nrenxcnx3cfdyjegvvs2knpwz3a37sd\",\n                        \"reward\": 69943795229310758291,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one105jk2q4cnx3lt8k4desct6phta6lhqv8e265ya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.329e+22,\n                        \"delegator-address\": \"one1cm99pncfrxwzyhjq6649cce4caeq68hrv5tazj\",\n                        \"reward\": 747056767124499521196,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.41e+23,\n                        \"delegator-address\": \"one19hjspe6czvrpjwagf48yg6f85jdyym9vaeftg3\",\n                        \"reward\": 893280343312618716135,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.016e+22,\n                        \"delegator-address\": \"one1qqd82sncewz6d3pqm9jr775m00w7v3cdpyymmr\",\n                        \"reward\": 216672606815559537233,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17vtxary4re3shw5wvdca8satnj4ycp80dvesvg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.65059e+23,\n                        \"delegator-address\": \"one1phpdnunel3wkdv9g4d6d8sd34e8zu667ssj8jl\",\n                        \"reward\": 1.7158284353906557316656e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 10000000000000000,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 130691329334812,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.00000773999e+23,\n                        \"delegator-address\": \"one1l672kfy4fpvkmmg6d05unv8ln6sdq6lwq980lk\",\n                        \"reward\": 47217572479636111061,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+22,\n                        \"delegator-address\": \"one1nsycmjwwe0fcdtzd4a3tgadfw76jxkuyhzsp4f\",\n                        \"reward\": 36963668383452677807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3525977e+25,\n                        \"delegator-address\": \"one1t99f7axuns7hel04j6rtlrfr63k243mg8dd3kc\",\n                        \"reward\": 7.214489373012633508743e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13z3n2gqg3ptk8cgs2jfn9cp6mec0kgu7xd9ywn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.06666053665e+23,\n                        \"delegator-address\": \"one18tfdjlj2ya3q48s0xynjjs44jpcq2u4q3mtcpn\",\n                        \"reward\": 8193649089966472127,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 92451135295662320913,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.566e+21,\n                        \"delegator-address\": \"one1kysqrwndadss5xt5eg5duzem3zgnqynr7z8cls\",\n                        \"reward\": 176780896886485083890,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15n6zguhjqmu7e7z8d3rkuvgg9fmax3kvt5g6fh\",\n                        \"reward\": 3057496185452054474,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.15e+22,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 91655862801778773442,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m9ucetff5lclvvthhxfsa80qy50ugxl0gtzc0g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c50m3t9zggfcrzsu3wz744m9vtru8jx29t72mc\",\n                        \"reward\": 1.069164110194769545405e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.550000999999e+24,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 919618866497172596777,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7lxuqkg3sedxz9j6a4v2axxmrdhhr45d2ckv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1d9vl22yqm43ut87wh2c2lja5yt55jwk62q74a6\",\n                        \"reward\": 248370985574097188303,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 724769088940974041700,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.430000303035e+24,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 2.517003830978041511158e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r0uhfdksp5xwvsg9yzgugz3n2ucc4re4kj8s8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ct3jxm4j23c0yjxw89mfj5jp8dwfxzle4eacr0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dqlljeense9cz595wnsvmkyp47dur62803x7cq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one122fz55g0xawv2v4kajp3qf388jzkfw40dzdgar\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14m8pwzsavv9gzrrpkmhucrdl8w277tj053k0cu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one1vqqy9ku7ytgucytasmc2lfvh8an07kpjqy458w\",\n                        \"reward\": 8922003310414294747,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 105844538994540128748,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.5e+24,\n                                \"epoch\": 316\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 290661860079134040,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ek52274untyrjp7f3t2qr78ny4carf0ryx3h7y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.06846888256e+23,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 349025525624324645472,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.90299e+21,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 7553017030649467107,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5882359664e+22,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 19779219870807716393,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1868e+22,\n                        \"delegator-address\": \"one1lxky7w24gxjpshvp7rrd5n90dg83pxs6vfm7l8\",\n                        \"reward\": 435047967222326714268,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.405e+23,\n                        \"delegator-address\": \"one1sxc4v5s6wd9p8kyxkveeyx7r6tsrqwf9mv0rdr\",\n                        \"reward\": 1.17486021953689029908e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.18388014621e+23,\n                        \"delegator-address\": \"one17gnxz0w4kdqn0sdvwl3nh33yh069uy6gyprppz\",\n                        \"reward\": 301465868127108819823,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 587964673510395476854,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ecv7q3w43lp2dpydca7uc04vlzzuthmgmetcyw\",\n                        \"reward\": 8380771690515094781,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 35535205885423956873,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.39e+21,\n                        \"delegator-address\": \"one13758zvy8n5y4zuv02zyjc6kylry476neraswrc\",\n                        \"reward\": 94723052058447059135,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.933328e+24,\n                        \"delegator-address\": \"one1twlphufxc8hwaw85ucme9ydhl0m8slw2z7genh\",\n                        \"reward\": 1.86286877382865199629e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0000879046e+22,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 42607244636880462877,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.29672e+23,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.44e+23,\n                        \"delegator-address\": \"one19pevrcp69mk9695cl6r2lakv4427uh3rkhm3gz\",\n                        \"reward\": 80949349806899430619,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one197wwsy7fnkts6mj3258gysaeqq7qz8nqnyent0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x2882hf7sps56xs5n6n38x9n9nlf5kr6a5fwfd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.348532143764e+24,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 1.9128166523730121223981e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2426824e+23,\n                        \"delegator-address\": \"one1zm6h6y06cg3lmnlwnlq7l89ec07vq0hptl6ms8\",\n                        \"reward\": 551707924276141067072,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15m5p65tgwlkc3r0xqvy3fdpf7ae7hfkma5647h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r4trdct8ywcfs5l0ptuguuh8sa6q0dnpuxdu85\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rr5n6qvjxlyhrhnkzxtjslzffrp4trl3wtsuh\",\n                        \"reward\": 4763772102643074446,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0170339e+22,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 147155425000310369797,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12ayrjxs8rkl3zhuczkrpflpr3fxqvkau9cx3sr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5114573497e+22,\n                        \"delegator-address\": \"one1t3mw0rw3hy8tr9k4snlaq3cq5yxd00lxjaylwn\",\n                        \"reward\": 1.591268393997472483376e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.83651e+23,\n                        \"delegator-address\": \"one1ps0m27wyyxv7mev4s3ayzlk28ms6a95xw32ztx\",\n                        \"reward\": 584930152524395766962,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one150gdz40c4sxyfzgk8zsdgq2wj6282e9slqxap5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 6201352550003371826,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1y7e39h6z0c0jqx9vu2epx3v5d3d44nx7sqmjsg\",\n                        \"reward\": 136314596934092296313,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.741443715538058477568e+21,\n                        \"delegator-address\": \"one1yqlu8j3y6sv55nx3v987cxr209gmkqjy5vgjh0\",\n                        \"reward\": 18033281019396367202,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 89321896319331461368,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fzh923dkauvyye7w68nc38j2dw54gldu5mheaz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one120levpuutak72fet5h5ycfwwasdam4ffgxf053\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5929e+22,\n                        \"delegator-address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                        \"reward\": 1.460401955488975271205e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3e+22,\n                        \"delegator-address\": \"one1t6ynwcj7wtd2t8lpcwdxsgzh2j36unngd3l4u2\",\n                        \"reward\": 21254604682506736697,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8e+22,\n                        \"delegator-address\": \"one1yms3yzl9d8jcgqdk0fx8hasn4k4zuaaw0rshu5\",\n                        \"reward\": 69685818605285151197,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.33159032205e+23,\n                        \"delegator-address\": \"one1azvl4jf93ndfx8886xrumqmvmta9cv453xak2f\",\n                        \"reward\": 767555065059516130866,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.335e+22,\n                        \"delegator-address\": \"one1jkeh7gtn5utsvl8fplsyxym4h4ue60aenawpeq\",\n                        \"reward\": 318959065484726932476,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.814496e+22,\n                        \"delegator-address\": \"one15lh5pqwpfu4xq8dz0mjh2qvhwx6tv9n7p0p74x\",\n                        \"reward\": 475391022093769350150,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tskp6s7dx5n2wqp7282390qcpzvuy5fa3n6kgg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2342e+23,\n                        \"delegator-address\": \"one1w5qmgz9chjvct9hs6xwg23zhystjvzm5nucuzh\",\n                        \"reward\": 5.553507580837680076719e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146xcqrrxj6rnue8yhpw7dsat4dqt0763gnpxzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6716e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 84387377637868251980,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mf3rcsuedwrh2a62h7yatgja9wxfmdhntyj4vh\",\n                        \"reward\": 627021192917070872,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1amshhe2kjrqyfdls6uf25744l0awdq5w3n36rl\",\n                        \"reward\": 216273579186939197056,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.109e+24,\n                                \"epoch\": 321\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h2vuqrgpey8f0nqq5x80l2kwxqaxr3sh0hd6cc\",\n                        \"reward\": 34838058929400783403,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 260913944952828666757,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19mas6xg4tyd3xrhc4ycl2ypyu0knsv2ym7fcwp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 18399929209388548320,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xc3fye0n84z55wwhfa2czgcv546e7mygwfpa2y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one16ymzfqvxyhjr65tk94ql693398dh9tpyd6e9v4\",\n                        \"reward\": 1.174264739586770804971e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 5064972981999438912,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.581e+23,\n                        \"delegator-address\": \"one1d9sqruv88cs2ay4frwe36ftg77u4xsj3fzlqfu\",\n                        \"reward\": 1.328020246319075681283e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.14554e+23,\n                        \"delegator-address\": \"one1fwlnqxr49vfeg9sxaxjn4xlgcu7drglm57qpdn\",\n                        \"reward\": 559234159336809424938,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tlqxc0t908dxhmc7cqnpsn70g2dlglsxhuh2rq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0001e+21,\n                        \"delegator-address\": \"one1efazmyus8wk224s0mkzduzat44k0g88nt2uqv7\",\n                        \"reward\": 62529587571495413445,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eq3ratczrnpct6hpn384rvy9njyzq6cparn2pp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 1.779898112970940755853e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f89ukcyjg6787xp8a2ehcwgyw66ud5at5chryz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+22,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 171166211565502800981,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.961807795e+23,\n                        \"delegator-address\": \"one1zr3y8tr2l5djdff5wjvtf0ec6j2shsp6rp5j80\",\n                        \"reward\": 201082938434492143863,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rr5enpx2jz7gwmv5dd9e9gx4w7wt28w7fqrd9f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.01278415186e+23,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 115512448525077298907,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6373342364e+22,\n                        \"delegator-address\": \"one1677w9z7hfsszerhd0767d47rekpuzh46xsvaj5\",\n                        \"reward\": 849646014142784653467,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.03604448288e+23,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 350357654725721563155,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 470492667911900401134,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gwdl55he6nh0n06xuhvkuupnlp28260ccsnn6n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.81521587448e+23,\n                        \"delegator-address\": \"one1jzzz2qrwn62vd8p2v4ylkteyey6k9d9mnm3jpt\",\n                        \"reward\": 156233914367743050932,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1athys8vztd2gwkt20w0k48kmywhxle0j3u6q0w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xcy78f2hs6wmxxtgm7u5gwtc73m22mm72yj0c0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1myz5fpmctcqq424u42dkkmrsn8xhg9tsgduyy7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+24,\n                        \"delegator-address\": \"one168dwndj5xz3e3yca4wzm8x34knf5gezu3ypyt5\",\n                        \"reward\": 2.14671498565055443371106e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15gmk6l5df6aczsh0jx3hsk59kk26curq54u6gz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14kr7gvrrmhvfa3p30q8tmy8nkrlqtcjpce6jqq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4389571741e+22,\n                        \"delegator-address\": \"one1wf8dzkk2f53hpkgd2vc3t8k5ydw8e6qf7j6043\",\n                        \"reward\": 20508427899985589644,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17mquutrtzjecd0sgaqf3q5ncemxvwg3snve06k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+21,\n                        \"delegator-address\": \"one1636wc4gkkj2v4pv7mmsyfljr992fy227gyqc82\",\n                        \"reward\": 25361476174136540952,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 211356696503526395720,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1qy9mum6mtp5j5u0y3ekaqn8quahvsezavxwu32\",\n                        \"reward\": 53076277849540433122,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ljqleg6q3jw7wt8jckx2uf5vfjgwrmuahalkhh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eyk6j79jc90eqfgzmx5z995fyw7e8td2hrfd8n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one1d0w5upanuqxwwkt4eqd0uxa64mhx58xafrmvhl\",\n                        \"reward\": 9.201298529120127260511e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1znytkyla3279m4wgg867gfzvje8sp60max36n3\",\n                        \"reward\": 234379463705761953463,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 857350764119636883997,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 112304272850487692952,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one1ag7qa7tpd0gy2ksjzdrmkrnxtw39a6uv0aemjf\",\n                        \"reward\": 35807831272880221,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 76986846114346944158,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+22,\n                        \"delegator-address\": \"one1r8p9p4hnt3kx9ymvznxgfcm308md5fxwezy55d\",\n                        \"reward\": 87678675672516722084,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1qpczdf6s376y2qay80ustlr5k3lvtml6y4j5az\",\n                        \"reward\": 4.517239623777268023383e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3588e+23,\n                        \"delegator-address\": \"one13pmqxdc0ly5nv3wek79e6np9tu0eqzsq2nj6mx\",\n                        \"reward\": 783375221214565268637,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.67898972e+23,\n                        \"delegator-address\": \"one1ep5s5j33l0y5tgktx65hmsunnp0lc7k28pr37x\",\n                        \"reward\": 1.7312829956211239854364e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.98e+21,\n                        \"delegator-address\": \"one1kxu46dpxvew3wluc5t5y0jcytjum34v8zxgnmn\",\n                        \"reward\": 5952953947665425821,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.316965e+24,\n                        \"delegator-address\": \"one1sv8rxdvrp8arxktyrl4psuknafckwyvrurzr3x\",\n                        \"reward\": 1.2016420812564926952127e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 5115288877999360700,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.38e+23,\n                        \"delegator-address\": \"one1t9l7jze67ade9hdmezrdvqvjvf2hdcdnn6es4j\",\n                        \"reward\": 9.842860885718937818065e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.038178824e+23,\n                        \"delegator-address\": \"one1cp7u3xqtlgmsxt4as32jxervll6lva6k45s6ka\",\n                        \"reward\": 2.97338803714177640692e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1137e+22,\n                        \"delegator-address\": \"one13eec5h4k6xw5h8up4duqzpvsdtcrypnekqjnhy\",\n                        \"reward\": 4823263630494794179,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1udn94lyj36dvztdr6u9sdp047czqgdjw608rnj\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 3e+22,\n                                \"epoch\": 316\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6049999e+22,\n                        \"delegator-address\": \"one148r9v3cvdpew8k4yzuxslfzh4pxer0u36qn3r9\",\n                        \"reward\": 16859777382272221755,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.28e+21,\n                        \"delegator-address\": \"one16x0e9p4gcjgrpjy3pmud8y8q6pu5vsxqcdepqg\",\n                        \"reward\": 2040212630667754993,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n4ud4eqs9wu7p040n3f97vhsdwng3z7xawjvep\",\n                        \"reward\": 1059960682289032198,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hfx87k7435sqa67d7fnjtwzu8uvtwzquj7m8jm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ek6nkv3d9k62zl0kkdza9xrktvhz4j2dhsuhcg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rez9xg8hpddswd8cc09njdlp724gdmmsg53cmh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.822151058e+21,\n                        \"delegator-address\": \"one1xkekv8vh3y2r4q4agwfesedjs50kcgpqv8k906\",\n                        \"reward\": 20745598368899375321,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qnn5c20aymv7v3hjmewvmpewc0w8sy8hceqqaq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1780hukztd6ty8f7z6z6wye0j6hez3ds8jydg5c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.070021e+24,\n                        \"delegator-address\": \"one1nat38y2yrla909c05gzs5hvf49c8wukgyz8zcj\",\n                        \"reward\": 1.5097477519904365098752e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r3cjxvlvjrhq3537yswks43tfprn8vzahwdu94\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4317059776e+22,\n                        \"delegator-address\": \"one157rwjephc5y9vt3wc685uqlfy62amjf0ukavcw\",\n                        \"reward\": 29730945984437499897,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.833e+22,\n                        \"delegator-address\": \"one1cpuavc73z9h6kfp2qxjxvzeymmz5n3sc9txln2\",\n                        \"reward\": 466333507116753161378,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ljkrmdhlhgkdwvre409znv95hqf4l8rsczm3j6\",\n                        \"reward\": 3572165392604797419,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qh6s6258xn27pstyxul6cg9nzq33l77dn3tx4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dnh7wjg8mkvru3fantlqcazsrw3ma6ucdkqvps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.526154456e+21,\n                        \"delegator-address\": \"one1rv6eyu3am6rtl8xq4tgw38g2cpd7j33l2vac7j\",\n                        \"reward\": 118169740174443204367,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pds4dtf4pf35xnj7452m7hax24gfzu54y4xfms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a4k64ushhtqfkgsv5fex7ek0ywld7pxkcu2jqj\",\n                        \"reward\": 811862601703789906,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13k7vlreqgy80w4kvkqknpgsvp2ux92lwf0kssa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 370589801294456697,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r9v4w9h6l8m7caqw38355myrxadezqusepg9z0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17td8n6wa7l57gj727gl4u3z7hn7mpyftj9fhef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qd7hpg5de058czhl5w70cah25hq0u2raptzfxl\",\n                        \"reward\": 228686150398621760339,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+22,\n                        \"delegator-address\": \"one1axv7pm9duu4qygc0krwr0z4p4dzedlh5qlpqrs\",\n                        \"reward\": 22464647059481216157,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.48058628e+21,\n                        \"delegator-address\": \"one15z0elgyavkqc5yys7929cd6nw90k3mwy3nltkh\",\n                        \"reward\": 125204051781365642700,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xmma2qdnlsmp22kdpcwtkxchx8xr7j3mfxjfl5\",\n                        \"reward\": 257174331076735397,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.379571575e+21,\n                        \"delegator-address\": \"one1qn6j2g7sxcalqzxkgedsmp2sxm2m24w662gx0c\",\n                        \"reward\": 148424385452002639767,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one169mgllpxsz6h5dt5nzgxpy7qtkswll5qade38y\",\n                        \"reward\": 377329048050253503870,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10dr00r3wrsp0v04ec7d7asy9jaw5ldp7me53nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ex8lpdj9tzu9wpfgupea04z3m2nh9rqyjefnx5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+23,\n                        \"delegator-address\": \"one10steweqwvh3gk4cu9v85z53ndjrt0c40e9pfsj\",\n                        \"reward\": 70113825699976969557,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1wzqs5a48ky6zr5h3x5rkgn6u73ysu80n8uuha6\",\n                        \"reward\": 29663388561482979114,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.13313617098e+23,\n                        \"delegator-address\": \"one1dh2f694yfw2tpe3zqsvkgaj0ykeustw93gdyq0\",\n                        \"reward\": 286821743516196452849,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.75e+22,\n                        \"delegator-address\": \"one1r0tp6l9g2s4m5np99ec0ugu0kvqc58nhq2mega\",\n                        \"reward\": 1.015312366291475637312e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1gclsr6czt25s56e7dkpy7cn22096xtqwjqupcm\",\n                        \"reward\": 43168963846742282555,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.01367999476e+23,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 1.241671305605556303381e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1c0stsfewuu9cpna830xhcc482v28gyepfr900u\",\n                        \"reward\": 150317351981502987227,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pmgre5h990fw2yn4uxkfud4l8drzvsdzr4xczg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rfjslpy648xltxuw272v8q5w4lthr9m8ncpgfr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.04825e+23,\n                        \"delegator-address\": \"one1awk88qhn4wk2mj6pwkqd4utlqjcl8sqnsu4szf\",\n                        \"reward\": 2.588634623729682312617e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one1alvdxf4hx0ads7s0q9v4g6h5teh0fwkprft6f6\",\n                        \"reward\": 80971695090397557864,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.10754e+23,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 287731245412572107626,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awzkclvn9vdennul9m7ftqdwfwftwyhuqk4yta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1sdp4lyruf8ruk2x3xyyremdaq2ck0xxw9n53x5\",\n                        \"reward\": 72148970921426170724,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y3es3zwxcn800gzf05n22kxf4tdlnfr2lydkg9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a6s5fd6wrsym65ua2xmn8p05excss0qn7rrn3u\",\n                        \"reward\": 1183388565415781457,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 6.06152080231393077711255e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1mv3ta8wgdeehrsja9pv7474chmu62dyy7cfqg5\",\n                        \"reward\": 89691598907389294937,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1jqq8fcscn9udqnqh2qy38424u6hf95efp5y99a\",\n                        \"reward\": 2.047270068172745219357e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4190635751e+22,\n                        \"delegator-address\": \"one1dcqjuekcmvhr2yj9dxn8w7ndd90zg2qxumrkna\",\n                        \"reward\": 255837296525458466652,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6833186492e+22,\n                        \"delegator-address\": \"one1d33sufcyef8k4eedfj84akatekack9suvmc8ru\",\n                        \"reward\": 29542815386438742304,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3181799e+23,\n                        \"delegator-address\": \"one1y9rn2shkhzepfslx3fqv23js39tnsrjc47472y\",\n                        \"reward\": 2.0775117854177347843683e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lhytlknl0hwdtw0j507l8vx2n234d8wxqyvhcz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12sex4dnmfnd3dd7jw8xctl3ndwwz7ux5ksan5c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.99711706135e+23,\n                        \"delegator-address\": \"one18wvkm3t793qulfs6y72r7yj5rrwlzgrcycn05h\",\n                        \"reward\": 3.552186631858728010164e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0666666e+24,\n                        \"delegator-address\": \"one1ugcjmc89hdju06s6s3l7ypevrhvf3yzhl68zea\",\n                        \"reward\": 4.119515842009438335249e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1hlatxd4q8ld78djaerr4hhv0g6vcraxxluks97\",\n                        \"reward\": 15973304592526205381,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.829e+21,\n                        \"delegator-address\": \"one1ss3wnhlrxxw7an0ywrjr6xcxh9epu0ygft0cz4\",\n                        \"reward\": 173433420495500570991,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15ad34lhszdnz7n8uvnmuzd3w0ay3vy8fdt3343\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.3e+22,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 652098733392546844860,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yy96kgumhfw6tjwdkxtspju4qf0sc9ay4tf50s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.50982e+23,\n                        \"delegator-address\": \"one1zmhmmcsy5lytxzvr6c8s85msx5ypdkljd4k4sv\",\n                        \"reward\": 3.48976929394116526667e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m68ye842jh4l27uhfae4thakz0klzjwumrf2ls\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mp9hnvwm5tc7hjuwge6n4llarmxclget7r93rz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qwvh9ay9ml0fvgsuxgj9qw6h24flj9fwv27xvp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kmdga276hje5cgefelakkcwgrhu7ndjfdnnzws\",\n                        \"reward\": 5323562325137565214,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qa4cn2u9axkz545ys6mlzk37erl365xqmn3nxd\",\n                        \"reward\": 14835667309824867366,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lcw9gkm4xuwrpqyjfqgz4zf5fduxrrqexnp4hf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14xfv2jv9fujjkg6t9qt7s2kz0ws290en8ngrsv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z250uy4fvkzwxvkjz30s26rwgwwezvdtvpwygf\",\n                        \"reward\": 4866956417661112202,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s7s40ku4ms63066h34xwmm5j5k4jwk74gml5nx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19day69t6zzqrk3yr5086v9892c9ajvkw84fegv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0a43e43kvlw2uzmmk3xv93t6gcz5mr4whr974\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8pu8pwfh7q7x8e70ptnztwdk6n505adm42yva\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5e+21,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 53523284792480955849,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.428e+24,\n                        \"delegator-address\": \"one1cl46vhd99u6rhtyuqac823a0cp3ggv293yd0kj\",\n                        \"reward\": 1.85138002336704547051e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.40179e+21,\n                        \"delegator-address\": \"one1870rta9syx7m8lpqqnxlu9aherka7utlx5hqvt\",\n                        \"reward\": 870250619153230146,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13ss5z639ce8lrfse3vyr8aj6ueyaew8vl446sh\",\n                        \"reward\": 691002302872519508,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14z84r4a4rhl3n09u0kra222vev4sh03k9f52jl\",\n                        \"reward\": 87620175510319305639,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19fumnmg97z9uwwf93ucl88tn64q4wxuytwgrss\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16wtdjr8nxrm0z548hg4yffqkmyw9av76e9fej0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 21128750754241143187,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.700151e+24,\n                        \"delegator-address\": \"one1z9fvhzdxn76rdckva824xvvhlpd8rt0fnv404c\",\n                        \"reward\": 3.61960530637142919197e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.95149e+23,\n                        \"delegator-address\": \"one142w6su2shfgx8jhckcnakxkjzz63fj0tukdvyz\",\n                        \"reward\": 4.302373947971997127933e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3199e+22,\n                        \"delegator-address\": \"one1dkkv9gqdr097e4uuyfnwwnwamfsarw0agaxgen\",\n                        \"reward\": 6302264526054591565,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rzrwq4cmav25mewzlz77ehen27pxhktvqqphas\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17uudye02ffxhlpqnvvm8fkc3wyqsgn320gg86k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.054147258778e+24,\n                        \"delegator-address\": \"one1v0fguw8l5l0gk7fvjq2h9pqgxcekrvy273pfsy\",\n                        \"reward\": 325905288205785015512,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.5e+21,\n                        \"delegator-address\": \"one1782xv62cx49zdhr474lt4emc97xnvrpt8d6yrx\",\n                        \"reward\": 28439328232995834867,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mv7g0rj2dqfnw9jgqqxa8aqea9g8dw4kay77gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.735e+23,\n                        \"delegator-address\": \"one14ty5nf4tlmxgh8acyum5xy27fh5hrmx9lsemj8\",\n                        \"reward\": 1.2339923734833656717117e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zhy3d3j0322vl93wmukw4qmwgz4axqtlg33y9a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n                        \"reward\": 4.673503606974740903114e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+23,\n                        \"delegator-address\": \"one1983tu4snhurnned0n25jn55s4v7rmkknvqfu8g\",\n                        \"reward\": 5.18715312180572202133e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18stmp9vs3jzrve04zwwgpvxmd35r25nsecpst0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.012e+23,\n                        \"delegator-address\": \"one1j9g7uyg8kx5pkh82hpmuahcd6a3k347fdrg396\",\n                        \"reward\": 878850832606116129136,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h3c297r5erstzj2tdqcp6qnr2vtrtxwnx9g3kp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+24,\n                        \"delegator-address\": \"one1wvaxshh8c7kxda02c5pszvme564274x3uaywek\",\n                        \"reward\": 419084355342328042122,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l8lkqr69rmw0lw95l75sln6e2y7l0cjj8ufysc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sy0lzzuvk6vsp5sfzggezc9krywetgm3knftfn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1fnrlvje767q02th6xgln763xvplw5pswwkj77m\",\n                        \"reward\": 4.592259201828032676041e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165jandjg9hczkpj7830cq8fkhv7l6upkt5mekw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.140389e+24,\n                        \"delegator-address\": \"one1te2tfurcvk678g9j5u920l72jdz58fr0lrkpsv\",\n                        \"reward\": 3.6756121019019476416486e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one10n69q6nxy87ug3h79xtc39z0rua5d3405z4jvf\",\n                        \"reward\": 949107670464768732398,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.308e+23,\n                        \"delegator-address\": \"one1vvk8gxcwgn2gzmhluyflfqg3m4wkwsvwe2rn9s\",\n                        \"reward\": 1.5191193439647129518271e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1muus26kz85zfn8lavcgxlt2n9zcxeza3d9tl4m\",\n                        \"reward\": 23977612032586034527,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1setvzlsw2ea5ncgwnj4j0grlfrk38y3pgzv6fh\",\n                        \"reward\": 115090956185223251,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.3060714868e+22,\n                        \"delegator-address\": \"one10ayjz83f0lrawxtpcryc4xrpjhtr4a8p9aure0\",\n                        \"reward\": 932632431895535257548,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.7493e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 6130369245617591973,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one1ps4gky30d2y60q59ydu72l7dtch6zvvtmu6x0z\",\n                        \"reward\": 18067167756030430561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xrctvk782mc4gx49nxl69789mu3qluj7zhtzs\",\n                        \"reward\": 41846911341872098827,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.63616e+23,\n                        \"delegator-address\": \"one13gv9shkzs847ayy6ggjxssv9g73jlvydlem2ra\",\n                        \"reward\": 804015698507595033384,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.28947301929e+23,\n                        \"delegator-address\": \"one18cj3m04q7zwk27v2erw3ss5dakyh6xzc0kl8pn\",\n                        \"reward\": 57851287139606183831,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one19jvw9uruqem0hehduv95km63947p4cvxfgnsg0\",\n                        \"reward\": 27365460401895986320,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.155e+22,\n                        \"delegator-address\": \"one17gpf07jvactrjk6p6l67au55ap5nd3sknh8l63\",\n                        \"reward\": 404500296576574368247,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eaf67zmhc9sjqn5ag9cjwv3zwpw0shthj6yn43\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l6v5djd7ss7axpfxgr9rq2v2chp3trnvhzl7aq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one165stpdzl6c6pwdkt9f5xrad063e00symwyznd6\",\n                        \"reward\": 477264309116011061319,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7442e+22,\n                        \"delegator-address\": \"one1l9jy4x6f6dcr7hzge72099f5269gqupx9hnzzg\",\n                        \"reward\": 362102736195396981955,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.375e+21,\n                        \"delegator-address\": \"one1h2kljdu542mrg6zjv33w9nfwt3lpxnzhn6dscz\",\n                        \"reward\": 14855234704403511262,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1keasa5jnnjwp7u46dxz375xmdy8xqdunw8uu3e\",\n                        \"reward\": 413497154763841698467,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ac82n44sq543exrwc2vrmvhq93wqcdan8ehnnc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00237e+23,\n                        \"delegator-address\": \"one1k9nvefx0znyg4jrpvcj6mzphecxqmqa398d5nc\",\n                        \"reward\": 84604961594099193395,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cn93rndj40fsdstmzs4sv62ufgch2g52y8lkrw\",\n                        \"reward\": 716406896678850392,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.37600246499e+23,\n                        \"delegator-address\": \"one16xt3gl6l7q8afksksgwdmdahd5s75trgy6ut3k\",\n                        \"reward\": 279742395516377008649,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jfft9hs3ed4uu38yag0y2wzp70vmpcga9xzdq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.465e+21,\n                        \"delegator-address\": \"one17d0gcknryeqn3cjfzq6dvqwf39geadhyvgp47q\",\n                        \"reward\": 97298014628059602651,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uz7d80leehn85yz77yucmr3sk9kdz56vcpg6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lrequvd0kzut0mwgfpgv9yqs8973rmhnshx5kp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zf9gchjhtjnk95h6z7cf0duu76wllfmn44mr8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xv0y8mh9jsp5dl63kpg647v4kpupjfm3hmndd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0434e+22,\n                        \"delegator-address\": \"one1s7uz9fdnsedu5ljxf7nw5tewg52s2d9z34clnm\",\n                        \"reward\": 55104154512387902906,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xmhf7erx9u3yrwzh6nnufxl3cejqshqtk94sk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fxtypxnzz0vll0vtpea2m8h9utx2vpqjjsmp3n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10z6ssedgr9a46ycyy24m4czy35qmjthcxft8z9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s8gms2ryuzghc3v0zqcasyfx4j2pkmtuskwgn3\",\n                        \"reward\": 74672024486711334080,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9242239467e+22,\n                        \"delegator-address\": \"one1v0f5up4kztfpxy63d75lywrwekw29ekxds9elv\",\n                        \"reward\": 564489221929847394637,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10dc350yl5g9sqlfkphcstq4rhdzmhnyxa5mn0e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+21,\n                        \"delegator-address\": \"one1qj0f0dwg4jr8lmguxafsuu4pejzcmvz0e277ld\",\n                        \"reward\": 55834791406597170722,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14m8mtlzu6gk9557ya4nv004lew0ve2tf3kxhzp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 100000000000000000,\n                        \"delegator-address\": \"one19kytp473xph76ga5fflu4trl86sr25m7ez9ney\",\n                        \"reward\": 4299018696733667,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12t4hfhh0am0jzt834yjsrg6s7m6x40whmh7rf4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gg8p84y09svpxa5xlqc36v4epwyjv8mk0cmrj5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one18prt8uam55vsy23j403zykx3uvxs6f7xrs4g56\",\n                        \"reward\": 430351796096803910907,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.03110078445e+24,\n                        \"delegator-address\": \"one14ssxt9yj8e6mq55gfv7d9cw7kcfff73qwh3khw\",\n                        \"reward\": 1.2827556280040778298355e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 668956582125364015719,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16cje0z4pswgck88eprtrd6v04jdy7n6vpcue3x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nrdllzasmpe4yapkw336aa5dakfn387sgks8v3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qwul7qegna5w3pejamps8ejymjf8m2yk3ejttm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j3frzp0l0ex0zhp4ft7w6kp9n8rmnj5962gasr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zv9ygyfpg3uspauyunqqt92e878t2k0887r7xv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one134ujy0hvfu4eksfprrpawyn6szkmg74cdd6zwf\",\n                        \"reward\": 418998953830693187523,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18eeeg8ryyt3vnul8edzssvqw2jtjaa4sahzdt9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 2.3594375784895321737977e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2234417601691e+24,\n                        \"delegator-address\": \"one1jnm0mmlw2rur0hjvq3nl4uw3v7r9fd3gjvzcna\",\n                        \"reward\": 8.500033348449287008971e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n                        \"reward\": 249033823392394069955,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n8cqsgwg5lz3c5cmrs7n0peulc43z9mpxh0x8g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one10zsqhjwjwq0wuda38f4y3d7wdymfkcrfkmezqz\",\n                        \"reward\": 13702919673740494546,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z62wq6ucttx2ksj5v3s0vk0hup7xg0yez8qkyw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1a869ad50qkw0446x3q3mhzx7fm0azx5fvcu7wk\",\n                        \"reward\": 172201369107905933678,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one12cwc8q4r2c6wl6a797ksxgc0njs8j4yshavkky\",\n                        \"reward\": 4.453326884916387038452e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5286315044e+23,\n                        \"delegator-address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n                        \"reward\": 1.1434156537703893692112e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qup2xu4zj2m7aeld7z7cjkcw8fpspfaprs4tc4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.652e+22,\n                        \"delegator-address\": \"one10ctsljtw26636yqr5at2fgjfxdq8ageadznvy0\",\n                        \"reward\": 3.078178937662897450897e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14xvqeuw9v6mqarw5uathtys6wc3r228sdyp7hg\",\n                        \"reward\": 31073632354217079774,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1ej5qxvat3hr6che3y0ur4l67yz8vmwqkpp6c3u\",\n                        \"reward\": 1.377288593453181443229e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gkgefgxpj4kuy873upl7judq5kp6wwc9rqr2y0\",\n                        \"reward\": 26101680034225452612,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kh5pn90gclnqwm2hwe7d44nzywes4r7rxjmuah\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19zhpgyhd7qlcu09yswqqqdq9lkajwzqntz98rc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2000314937e+22,\n                        \"delegator-address\": \"one1m8364hzzjdxa77zcydy2wqkwnz24dks5k40jds\",\n                        \"reward\": 211728673727029299633,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.521708177557e+24,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 2.929965823940260389103e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.47196309e+23,\n                        \"delegator-address\": \"one1ju2tg5mcqqz2n2tjq3l8ngfdcu47gg8mwxlus8\",\n                        \"reward\": 831082018822358081803,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.995e+21,\n                        \"delegator-address\": \"one1cjzgsuv7jcz2wqq8mvnuvcx5rf32d3dhvus55a\",\n                        \"reward\": 116446613570327700521,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.807034958e+21,\n                        \"delegator-address\": \"one18yr4x62lnecw7avdk89lk4l02dwuzv6p7qpr7a\",\n                        \"reward\": 23920946384910274505,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15fcsau6egg75kej9dny2hutvn7d0cy89xfknjl\",\n                        \"reward\": 5537296492222280397,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13wdexsqxsc63jkzd3lsgwrk6z8z2t89fml26f9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 666600000000,\n                        \"delegator-address\": \"one1muspgclumz379tgmyyzzuzlwujft68wrz8jlad\",\n                        \"reward\": 17325573483,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1va8y04640m7tmjzv3c0hkmszremu3xsjyeghsg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one135lhy9rv4ulw2tfvv6l3h95mn5r420n2rdsvt5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pe9xaa4m7jglfvggepl6h2y5yw96cgez4af0fu\",\n                        \"reward\": 27052010894929974472,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0625e+22,\n                        \"delegator-address\": \"one1qn9jwx2mrj7jx3tzls7ejhtc2n8k9r408u53gc\",\n                        \"reward\": 80170019691860115796,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.9905e+23,\n                        \"delegator-address\": \"one1hdh2jdq472u2mwfl65jx3p5m0xxjgv8p90c5vw\",\n                        \"reward\": 4.282755312668523044977e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xc7rc5dmvnmjrstq8vesre79hr89mu7h79v05z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1td7y4ltg6qkecmdxawltcl4fps84wl56dwvrlj\",\n                        \"reward\": 77668057588481721,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one133rvnuneyvq5upwu2azeh6h8xx8n3ph2ztktx9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+22,\n                        \"delegator-address\": \"one1mxwnu2fgpyx2fvweh3j4kvzvndy7zjv0gwvll7\",\n                        \"reward\": 317062249498631971747,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+24,\n                        \"delegator-address\": \"one1trq9jyzvvhs2a0gjj39mlcmc94t8fghfckuumh\",\n                        \"reward\": 2.180287307355658404923e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c0aau6shrtxqgenpf5ymtrspxpvw0sxj0c7hrq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1sq0jgnwl6r73h30v352jmfr9lfyy35m8vna0te\",\n                        \"reward\": 1.801538592482797603971e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wfhu7pvccpyl0w57d0yykdrdjuclmumxqqmgjc\",\n                        \"reward\": 3875098798671768883,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kxtr4agvxpp3a2h5fp3zvs0qvjfc0xdfwvavha\",\n                        \"reward\": 33300892053914036654,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hrkv9lgr33x928ccmvrf6j2arusquuvegmp247\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.22125e+23,\n                        \"delegator-address\": \"one12xfkkmqm7cnv52tml8vpdawvax0kr8f4wrlp96\",\n                        \"reward\": 2.737672210902319574705e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+24,\n                        \"delegator-address\": \"one1a2ym9d8nrayel0dhq62mfahkaawavprts4fdec\",\n                        \"reward\": 3.1402307455862322012808e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333336000000,\n                        \"delegator-address\": \"one1ukrmvudspykg9efg7y42jz60g2yf3pk8tpnlcz\",\n                        \"reward\": 3147613588,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01215058e+22,\n                        \"delegator-address\": \"one1wy2zu6hfxygcnp6a9m3h2qy2wsypgq9vh38970\",\n                        \"reward\": 352494365046690187161,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10d50kxuc5v3rfwqh82kk6ff2uljnerpjqn7jrk\",\n                        \"reward\": 224557944288594657,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6623e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 3585403236938900809,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 909090000000,\n                        \"delegator-address\": \"one1h0hh9ukt4h8h4vp8epn7z74gu8k63k95qsculv\",\n                        \"reward\": 9886248370,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one109ga287k9pkqg3en8jg2hw2r89tny663uw5vhm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yzw0t2u950des2ht08n0secrpaqpmvg7pkmqtj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gr9jcad897m45n0huttyrf2zq24wpwjx2rguxd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+21,\n                        \"delegator-address\": \"one1h2xk4srqlg3amnpvqr0tz09c3c00yasmwkx7sk\",\n                        \"reward\": 25521685182396928412,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u2r0ee3t4gp255axsjlnv3swepaqu2rjkswftc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1mlj2ecjmea22jgp9hrpvndhk09fsahhs28mm8x\",\n                        \"reward\": 359841043851988186539,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1lyud6xd329q0z0z7a6w6v7qdsrmynvs8hqueuy\",\n                        \"reward\": 2.595201144435551272078e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rljdnycz2p6wqjq7kdj6fzlsz3757e4kulta0t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1940xav3v8j2z7fp9rj4xz009y2lpjgrglse2gf\",\n                        \"reward\": 45485317720073474,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 104339894529192206089,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.489376749395e+23,\n                        \"delegator-address\": \"one13zdsyuqnmqh8005mr0xrp2hmdwq48hd5a02940\",\n                        \"reward\": 483217102140629430843,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d60pue8upt6fjezlllqk6jy8xwa2v8qpt7g73r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1txgkp53hshqg5vsez2f5qrggw9c0qt3ymvj7wk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1uh9h25m7tfrhvy0p26tve54kac8hset29mfd05\",\n                        \"reward\": 3.658169408489797632147e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 120765443609854213861,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1whhstz9u4vrfffvkzvj8ncktz3u39k3znmh3f5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hrxguavlwkmrjl6xdeh3hjkk85fsej8kg8nm6l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.17092943437e+23,\n                        \"delegator-address\": \"one12v0yyge8m3hxujkxtakm0epznu5tyk33zgh65e\",\n                        \"reward\": 1.192670358526764768618e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5e+22,\n                        \"delegator-address\": \"one1phpmaqk8xgq284tzuuucsw2tcnr0t4cae7ypqe\",\n                        \"reward\": 507964107752526252111,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one1ef85zp0dgnfdzy8h5a3yuf02sm4ksrfxzgnewn\",\n                        \"reward\": 75410520145844946577,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1utlqplhcygakg7zxn9nersjd4n5ctuhhpmg0mj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one17efjyng3k8yvm6ssmaxlv36l9r8ua28y0cuxp6\",\n                        \"reward\": 28220943606382025503,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1re6kh2eess322u0g8xx2pnysrqkcupr5x6c6a2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xgul4a4keudecfvf3gq2l7w3x0xjs23hjcmgry\",\n                        \"reward\": 6564281923446959087,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uwh705slxp0d7tkgj865kjz4v6kft7gnvyusr0\",\n                        \"reward\": 5011416135575147785,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18886pfha5x9ds0ucssklqjzmvlwpzsptfy8cwq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one13eh8wsk8wa8ag96qjrdrgh2g8ecx8vpwc6q73t\",\n                        \"reward\": 3.254526123332867990685e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dtnwdj0umv7r0zn5styglj6npksmstsk8krm4x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 74983712209416391576,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1wec2k54hfe5s4aksjwd3tpdvxuj72wtpsnre40\",\n                        \"reward\": 64811161074713895721,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfmxzl7v005dza0jtx9hmk35f4ly054y3fk5ac\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1l94nhxwupg537n0de7fspyz0rmw78zq6ady6rr\",\n                        \"reward\": 27324532951673043332,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grpk6706ct68pwcqr3vjw60xcuwjkerau7d9ww\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuqvgn99dnglxr2u0mae0jaax9ldm6rzg27g4s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1axx0khq6c7sf8y5qed70yengk0elmqezgs7sjd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s7hd7wzp907pxzj5sfvcrlt9tygcrunaa4wl2d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n9ugplqsgrlyv9rcfzr8wcxshdt0rha78zj80z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.30837646417e+23,\n                        \"delegator-address\": \"one1gf97n872clav3taatcatxu3az558d8ejrtxv7g\",\n                        \"reward\": 1.038504037208297485687e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.00618251e+22,\n                        \"delegator-address\": \"one1p4683tts8zx62v9fdsuep46dlz6dzlj32wwcjw\",\n                        \"reward\": 26239359938474526803,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.943509519e+22,\n                        \"delegator-address\": \"one15l5f95rwfxw5qlztl9vn4jkwae0tp84knu2esm\",\n                        \"reward\": 43889974566253134402,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2635483167e+22,\n                        \"delegator-address\": \"one1gv2gx3azpnu4yawcd4pp67etlq6d8fcrav8enr\",\n                        \"reward\": 833188321857021228413,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4792973247e+22,\n                        \"delegator-address\": \"one1cuzcsjzxw0f5ayzz7fe2rn39r6hw72u7lzj74m\",\n                        \"reward\": 871430784083933707922,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 625000000000,\n                        \"delegator-address\": \"one1v3tzxmw4fsfx5k5ejxygyt9wlk2dqztvwsk7mc\",\n                        \"reward\": 565472658539107908,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.655e+21,\n                        \"delegator-address\": \"one1xtp6sq0n5szl7xuqsp2ge6d6gh02cpv5zekeul\",\n                        \"reward\": 4048590155309986959,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1hm6m30yfvcts4378eu0tldr4mjwnevdmvg7t5q\",\n                        \"reward\": 24947421245481660536,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9pe23rucwums3u0ey8htt6lxdc5zw56evdqtd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.026e+21,\n                        \"delegator-address\": \"one1x735wv6fqlkfd6n6s27h7td3x6t8qhkpzkevxm\",\n                        \"reward\": 49972665962262864177,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.355e+22,\n                        \"delegator-address\": \"one1rqyhjshucys3xc4zvdaek039r5u6qleefgm5au\",\n                        \"reward\": 47861501481464241132,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.579e+23,\n                        \"delegator-address\": \"one1xsf70cu7uuu5k6f0kpxp9at8r4dmg0sttzx40t\",\n                        \"reward\": 3.272473141238210222659e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ecd8qqjv525vd43mu7m72ws7d7qc7q3v657djr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8122e+22,\n                        \"delegator-address\": \"one1a6ftctrzf599kpchnw44pwsflday3zlp3h65gc\",\n                        \"reward\": 685403630840854293249,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v90kxvca397mkcevp3c8vtg8tr03mfdkrkdrwe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+23,\n                        \"delegator-address\": \"one1pkgr37n4wg97c93qzmqkpufy8jyvsu9khsal5l\",\n                        \"reward\": 97635083256993154473,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1ej3c24rs9p2cedv8mm0fpd6evrcv22s5p2yk4p\",\n                        \"reward\": 602236112028388351203,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6252004761398e+24,\n                        \"delegator-address\": \"one1e0kcszrv0gcv96qauwnzctc756npzgf7073fjl\",\n                        \"reward\": 4.208066974743449005559e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.29639623495e+22,\n                        \"delegator-address\": \"one1t0eety376umvd4cucuqvh0d9tsamgdgvrpe2q7\",\n                        \"reward\": 240561158988610616926,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.625297e+24,\n                        \"delegator-address\": \"one1nkvxkx9sten30aq6ak3ky8ae6ual9y2uuxkmn6\",\n                        \"reward\": 3.167198852830998314918e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.194e+22,\n                        \"delegator-address\": \"one1q22gqh06q0ct8h23ey3f5crj5wc2ps9avvf8ax\",\n                        \"reward\": 516040576290429704388,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13fgk3aqmmqp7s4cv7m6ugl5fa08hwneekul2fe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15lg9lr89swcrmyd5zvyw4netsgkeq9nskwuhug\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1z63t53093vs0jt8xhvhqqt3qnycykq4qqydmvx\",\n                        \"reward\": 230290210902177765151,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1nydf32ytddsunelh7n4ezq3p26vg4vpdw4q2mz\",\n                        \"reward\": 464828591338807314108,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.0337890407e+22,\n                        \"delegator-address\": \"one1ellr409d03zxfh7c592xf4ldzwdv8rtp73cwvu\",\n                        \"reward\": 2.099555234517409183676e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one17vyvjlensmz43hv5asgyndd36vwsv4hcg5txvk\",\n                        \"reward\": 696764812500217684395,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.023251625596e+24,\n                        \"delegator-address\": \"one19v6tnz4nnfyf9e8c3g9vl70zawyz5fkx529aej\",\n                        \"reward\": 958493231172934585101,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1zxa9dduhl89erh4zwe3n2upuu69y2qz3jcq2ga\",\n                        \"reward\": 232414295669401695198,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5589e+22,\n                        \"delegator-address\": \"one10yxqaa643fy787vfmenyylcvccda6asant5wmc\",\n                        \"reward\": 44903179531366753541,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vp48r9z0fwffew379clhz029y5rjwt50undqaw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.044883626e+21,\n                        \"delegator-address\": \"one1mgf7d75g3uklf3vxaxzmj9u60lhvd4d9wsjdld\",\n                        \"reward\": 71142558553752706,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.912096997e+22,\n                        \"delegator-address\": \"one1umh9xzuuzrarv0g86svuyyv4h2sr00rft3hlev\",\n                        \"reward\": 668579965127690022904,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.59660625e+22,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 96600559865962723663,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hc0a9ljk82mqmfqny4282p0a6dps54qqsz5xw\",\n                        \"reward\": 130878134469186044969,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.24e+22,\n                        \"delegator-address\": \"one1xfuukfk4a72e2a9hqh2vmv55duvguv80sxm5tg\",\n                        \"reward\": 99636911062238829904,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.998e+21,\n                        \"delegator-address\": \"one1mj7k69p86auz386ykj5pq3j0zwdx3tmse5xd9r\",\n                        \"reward\": 220864689993568538410,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.805169649e+21,\n                        \"delegator-address\": \"one1nhfnjxfwrkk8653jfz97wtdxvw295nws2vft48\",\n                        \"reward\": 13536182251121639976,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.498e+21,\n                        \"delegator-address\": \"one1cam5e7ualaqfk9t7jsmta89nev9twkttq4vp9g\",\n                        \"reward\": 32660624350398385031,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.66618048323e+22,\n                        \"delegator-address\": \"one1ecqnh54clrlvx2zfapegrqft0lxuafv7hq8jjf\",\n                        \"reward\": 1.017358931334726719619e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.888e+21,\n                        \"delegator-address\": \"one1q7frj9luhffqvg9hk0f4kv3xrux32gpcuyz84j\",\n                        \"reward\": 13754502873714490549,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.588e+22,\n                        \"delegator-address\": \"one170c2ge85jh53esjq4hwcw3wk0kzp2wcj5jshm8\",\n                        \"reward\": 346228781498229830660,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1jln2hngr060rgtxx0wzfy6yn2qya5k37wn0vem\",\n                        \"reward\": 4.158478428902233277357e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1djx6qlsxn06le0wp8rhvg6tck5n9fcv8flje8n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1twq2qf433jl5wg8v0tj54mhy5axgudw0e0nzez\",\n                        \"reward\": 1.061231590137066043306e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v7f26htre4a5rumzsfr9kcfydxu684ufyggl75\",\n                        \"reward\": 116614687667735496993,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17n3zv6jvh2kq2mzyu0grl3q84fasavjgghrmen\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.13159e+23,\n                        \"delegator-address\": \"one1sdcv5w7rvwdnf5cqxve48sdggcsrrgmcy2yydk\",\n                        \"reward\": 27525157341271671199,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7087415825e+22,\n                        \"delegator-address\": \"one1d9u6046pvl9gc9yythqje423h28rpsudmdx7hm\",\n                        \"reward\": 567081481175820120598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xykjfaa6ucfa9p5feulvxy8ux9wfyxk8tgxjtu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.029949e+21,\n                        \"delegator-address\": \"one1k8n464s84pzwfydgwf7kwtgryvya476f0dsq20\",\n                        \"reward\": 103842664306336231206,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.55e+22,\n                        \"delegator-address\": \"one1z5wq66xu2nr6zvydxj6mkztnfxasxfgy3yly9e\",\n                        \"reward\": 81140349173218741219,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sy8xhr6hdv0la727vxl4wlsggg54hh9679v2ke\",\n                        \"reward\": 925042401768000484,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one1at4qrlupyv76y7tfayhxd4ee94a5fnv3ls70zq\",\n                        \"reward\": 2.75035078304615345454e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9r2qh3fjy3tqtlcc9av3yxqq3rte3mfk45zj7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.06171e+23,\n                        \"delegator-address\": \"one1j55zswqx67xf2wclhh0k0sdra7fu6ug74623tz\",\n                        \"reward\": 4.077845376253482797162e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.2e+22,\n                        \"delegator-address\": \"one1dx4qaajpfygf2q2j3wwyfymrzk8nchkha2lcej\",\n                        \"reward\": 471625992157585737560,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.4e+22,\n                        \"delegator-address\": \"one1f2ctrtwl3cwz50recdg52lalk7elnseaf8p2n5\",\n                        \"reward\": 11198200520543826055,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12v440thmnyjmfvmk483m3khwa9ffmp5fzt47fq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.812e+21,\n                        \"delegator-address\": \"one1f5ddkra7wfkez7lav4p79u390gnj7sv85funzu\",\n                        \"reward\": 16417638708723637561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vegus4ekc6pjys9rf8krqx2xsva9rf4ed3rdcu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z8nnwm4t202ffph43ddvn5dwggdkjgmgu6tvry\",\n                        \"reward\": 709510942881697352,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dqee5vv2ntg0ugvu7vrc662knqgde3g6pn9uzy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one158p7lac9hay7ktsmw5mr5umf947krtnwglw2q9\",\n                        \"reward\": 36150629758944593237,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one14c3t6esxwnz44zr7ewyplsxu3ur8gl902wuuws\",\n                        \"reward\": 4582624448639254174,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lgsujrall97708zhpxdn5ursnyh3g6ue8gsj3l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wn6khdqyl6at8d6t76r8d06rjlq8wdztvrh970\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.819061681e+22,\n                        \"delegator-address\": \"one1hue4jpfq8thffmsxdl7gu4u35tf86hsacz4pqe\",\n                        \"reward\": 90231360572220596800,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k2vu3yqd88phpvkdenzaxl4vcv4sp8224ns250\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3815e+21,\n                        \"delegator-address\": \"one16a6n5y6atz9dfur7v2r6t5fng6ehdk0kzhyvvq\",\n                        \"reward\": 9258370941618196140,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4327044131e+22,\n                        \"delegator-address\": \"one1j64a0p85hwp7ktzqsl2h7jempnw88k0p304ldw\",\n                        \"reward\": 105641117078749846862,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2857142857142857e+22,\n                        \"delegator-address\": \"one18yv5m65wa7wrknfmh2jsh3pcst2z0h3698vu3k\",\n                        \"reward\": 163201258741886613835,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 100000000000000000,\n                        \"delegator-address\": \"one10p0v3re5pdrt6nlw0799m9jx3zffaynnt38nft\",\n                        \"reward\": 250411375921369,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h8n93uxvhr62t8k6w5jy9p07ttjmwxzwhzhr6p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ymp2yc6fgtr2mq930nf78mjjusf3qnydwuns4d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zmwukndjhajndq9w3amat73cu47pj9ydv6cc04\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+21,\n                        \"delegator-address\": \"one1wnsq5ynpx7vzgekysscrrajz46e4vlek9m2tyd\",\n                        \"reward\": 42618514877728315877,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 930796464785464573,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5006922086e+22,\n                        \"delegator-address\": \"one1aw687flqnwqatnhvdaw5ee9wefkxwujqqwz32d\",\n                        \"reward\": 399094292761244671430,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.14814e+23,\n                        \"delegator-address\": \"one1xj6sfxtx2rvzcz25yrmvte9tdmw0xg0leq84k8\",\n                        \"reward\": 2.614537065176746810568e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.895e+22,\n                        \"delegator-address\": \"one17fk6vrse3qw5hnst66xdwfgsy6rj7qfgxuf74u\",\n                        \"reward\": 1.10039737762422748234e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.1e+21,\n                        \"delegator-address\": \"one1663k3c5emyy8fs6ddehw4j9m7av8wwphk4f7kp\",\n                        \"reward\": 145230110752436171475,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.077e+22,\n                        \"delegator-address\": \"one16ux6wruhe7vzl44kqdq77hp04ytl6elx7rxeqt\",\n                        \"reward\": 1.265683097279005518616e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+22,\n                        \"delegator-address\": \"one12day5jc36muy6etweyq4j4mkcn5eejr9kvp3jr\",\n                        \"reward\": 10330382188474455654,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1978t7nzmgh9qwks529wqsye6tz2ll4jvd74g0t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.04224e+23,\n                        \"delegator-address\": \"one12xpp6h9pjh8jt5szd9m46kmekdj7h82ml5v97k\",\n                        \"reward\": 3559876519405765452,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fe7g6g0xv4w2tydyr5y40swt3crteyfxfegxcv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12kvy5medu2rj4qt3ltmjj0lyndrhm87eq2lkcf\",\n                        \"reward\": 1210776825142254822,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.016609354e+23,\n                        \"delegator-address\": \"one16059cnrmlczu5wkepj8q945tvn5w003kwy5v5w\",\n                        \"reward\": 285762536415808014090,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18ssccg9x88fepjg50x7rvlp5tlh5f6vmpsctuj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1d9a7vgsz28g7eavjcnetfkkxa8yga2mu4dc28h\",\n                        \"reward\": 144931043187322627271,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14k69l8cv4l5vkng8s2wa8z8w6a87z20v94k22f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1580080976e+22,\n                        \"delegator-address\": \"one1yrvq6g2yqtezr7t5aq9th6dskuyd3n9j9yjs0s\",\n                        \"reward\": 366155609461509446724,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.464231951e+21,\n                        \"delegator-address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n                        \"reward\": 12203205017842891479,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.666467217e+22,\n                        \"delegator-address\": \"one1fejfhta2v8454smq2zc3z54ek35qjmu0885ljm\",\n                        \"reward\": 39945959141865504275,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.705427249785e+23,\n                        \"delegator-address\": \"one1d0cdatalst607xazutqs3u799wrad45w5xxv25\",\n                        \"reward\": 6.170433810843359730474e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.079e+22,\n                        \"delegator-address\": \"one1jhpnl5sfvt0uqltzhfz45e6pu9nfe8sf8mspnx\",\n                        \"reward\": 18727877881619928470,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.22469260096e+23,\n                        \"delegator-address\": \"one1vklxs3pmyteyswtp5d79w7yg2wjtl69jy9ya4f\",\n                        \"reward\": 353253882936531542524,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.430804196e+23,\n                        \"delegator-address\": \"one1hwg37qjh06kwfvtk8yq6tv44twv0zex8yaynzk\",\n                        \"reward\": 2.475386875416305484341e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.38549e+23,\n                        \"delegator-address\": \"one1dt6prnvy3rlq82rwk3jz3y6cyvk58tykqe0y9t\",\n                        \"reward\": 1.764774441871774920252e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1444e+22,\n                        \"delegator-address\": \"one1agnhvat46wzvtanxvfzypycyyaa27u3a0gztdq\",\n                        \"reward\": 511249883043480314713,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.235e+22,\n                        \"delegator-address\": \"one1n2nd0uwmdakccvngjjmsgyktwp07zn9jtnrws7\",\n                        \"reward\": 132745932993852813417,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sxv2j8zd600vd05k6m6vc92mk66qpcpu38xvdm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.60036e+23,\n                        \"delegator-address\": \"one1luqxaz8zz2ec3cneqnjdlznfg880zhp2hzgqx7\",\n                        \"reward\": 5.587886945553656207847e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.012e+21,\n                        \"delegator-address\": \"one1rqvvf5rmpy2cqycfhhm8q9zggy594cp2lrhlca\",\n                        \"reward\": 7007942180078061415,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z46w7d5cqchrj0aa608vdmwze08g7n2ugd692w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one18wdjhy5c5qc5gn9vzhjanln8n529gt6ra8jv78\",\n                        \"reward\": 17367658697431489382,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r65rv2n79nx6m3en8aqzsd0m9xz3x4a4w465gw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.63000056e+22,\n                        \"delegator-address\": \"one1vrhw7uvjk200cz3eh6cxue43znpp7h2hfyhys3\",\n                        \"reward\": 99108567015736176192,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.093418987e+21,\n                        \"delegator-address\": \"one1sdt5ggjsddp9n7v6qs6j9ctjx8hldjvme2s8m6\",\n                        \"reward\": 20739555158372275050,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ryr0llyxe57ftle6f8th8fw52wl8jx8tmje4c9\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5.4e+23,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w5qfpepheyt0lsfynd3cuarqa8ytra9mrplavw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.2208696e+21,\n                        \"delegator-address\": \"one15cfu4hxfx2jrqlxsx8a46s9mztpzzlu007teek\",\n                        \"reward\": 95246062994337740716,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one16ml34dzz00e70eyd8yrv50x603jn5j3gtkkkjk\",\n                        \"reward\": 7384108722188478904,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.022070457e+23,\n                        \"delegator-address\": \"one16567gt4xugdukhnqpnfzcy6nc4d32j5v49ah9v\",\n                        \"reward\": 573748116876443437985,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1dehtnvz7yf6v8d9jj972ytdfd5xg3um9wm2rl9\",\n                        \"reward\": 1.457576471956137564241e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one1ezj0qu6xe084l4d0la726vsqqe9cclhv2xqy59\",\n                        \"reward\": 939692963519524258,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7824260903e+21,\n                        \"delegator-address\": \"one1zlsts63fj6s84q8judet7q4nfny4t73nkte8em\",\n                        \"reward\": 36754501840894896386,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dsqz5qn8pv58nnudvnn0ngm6f9dr3d4t8dcvtn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.07e+22,\n                        \"delegator-address\": \"one1r5skhssc54snf5a0h90czrkx9dmcllxlxgstj9\",\n                        \"reward\": 194897317649840269050,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mdshx6rw80tfh2garydp8p2qfr75p3ulczhs7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3122204106e+22,\n                        \"delegator-address\": \"one1f8ejy4w2t9rwmcyzmz4gm5enyrwdpjp7agy65p\",\n                        \"reward\": 311856460623669358142,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+22,\n                        \"delegator-address\": \"one1ssupsze083l67cqwmt40f853nre45v4w4hdta9\",\n                        \"reward\": 201357525480808855766,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.3207272865e+21,\n                        \"delegator-address\": \"one10fd3e0v2wpfpvgk3umhx2lmhv745cq7xzlrgq6\",\n                        \"reward\": 62133440070574758809,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.606e+21,\n                        \"delegator-address\": \"one148m6s5n2j27kst7genyypuedmer4jevvw8ay4j\",\n                        \"reward\": 3303469072196831866,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yufjhmg62e54lvl849h969acv2we8dsf0aqu2c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1c5st8sfyreqjae0v4ah8nwdtmx80atcdamxden\",\n                        \"reward\": 53660820829601930449,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.550546119e+24,\n                        \"delegator-address\": \"one1cg5u4k8s0g7zur5xlzcmjctyr2dk0gu6drmgtl\",\n                        \"reward\": 1.2903784085995293421733e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1qnphcphap95jyl2y5dsgxnhmm0lm56fxacvuy4\",\n                        \"reward\": 202368959178899619303,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y6f4gaaazespg7exaepwj87u35h2eyvupthuax\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 6.99e+23,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.12701151575e+23,\n                        \"delegator-address\": \"one1fq2vrewysg5pfjykjzpqq37rpe53ya0utjraff\",\n                        \"reward\": 429857331837514323556,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.811083e+21,\n                        \"delegator-address\": \"one1kmna8hzw60kgk7s7ufkruxdmuxn597v0n7qgzn\",\n                        \"reward\": 6360930720296233076,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1klty0kcywwk2mg55nh4y8pqe9396p3qz0uqppu\",\n                        \"reward\": 8891512035966330615,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1e+22,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one18sj48wr5nayzwue4plwvj25c4qlrfgnr2rkcd3\",\n                        \"reward\": 15346135340546114516,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1589917224217e+24,\n                        \"delegator-address\": \"one1lfuaaaptpgpk89zajufqc2f624kxxxhggj5dme\",\n                        \"reward\": 821607094653852837757,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5454e+22,\n                        \"delegator-address\": \"one13jeatzhskyhlfphgs75xt6dpzd56nxzz2gpw7c\",\n                        \"reward\": 30815115419353112054,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.729e+22,\n                        \"delegator-address\": \"one1vjuulkcsk80laajs3xctwd6ha64nx4f33slz34\",\n                        \"reward\": 5620907427635864406,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Community run Validator by highly qualified global P-OPS Team. We reconfigure our validator dynamically to ensure the highest possible rewards at every epoch and use extensive backup systems for ensuring uptime. Visit our website for testimonials on our extensive community work.\",\n                \"identity\": \"P-OPS Team Validator\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.490000000000000000\",\n                \"max-total-delegation\": 2e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"🔨 P-OPS Team Validator | Community Run\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"https://t.me/POPS_Team_Validator\",\n                \"update-height\": 3358764,\n                \"website\": \"pops.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 217532,\n                    \"current-epoch-signing-percentage\": \"0.997683879341579640\",\n                    \"current-epoch-to-sign\": 218037\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"81358712415336142857000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.117906705306162879\",\n                \"blocks\": {\n                    \"signed\": 29212872,\n                    \"to-sign\": 29320708\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122056189406231133\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.119243699288803253\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123839483211171484\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125275064142277765\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121010234465300290\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.126573461725053674\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122637316612910735\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119535475676649582\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118285943064412399\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116940755274110910\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117563746678007611\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116153424806575073\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119706190135700321\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119744223621768592\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120083795780385759\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116900833377041811\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119453928644957955\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120523542212178072\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120550056559279375\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120046169026108019\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119864596585311425\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120457917997068929\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118239658961140355\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118343869309038170\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117819662908951065\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118527146023754360\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118326042970500522\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117033798584213702\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118456511850753707\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117875896222943411\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117906705306162879\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 246280,\n                            \"to-sign\": 246898\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245546,\n                            \"to-sign\": 246216\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245654,\n                            \"to-sign\": 246308\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 249429,\n                            \"to-sign\": 250146\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245561,\n                            \"to-sign\": 246464\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245175,\n                            \"to-sign\": 246173\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 252160,\n                            \"to-sign\": 253102\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245161,\n                            \"to-sign\": 246321\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245206,\n                            \"to-sign\": 246127\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245822,\n                            \"to-sign\": 246613\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245670,\n                            \"to-sign\": 246749\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 247311,\n                            \"to-sign\": 248565\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 246154,\n                            \"to-sign\": 247477\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 248932,\n                            \"to-sign\": 250077\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 258163,\n                            \"to-sign\": 259543\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 269501,\n                            \"to-sign\": 271373\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 248134,\n                            \"to-sign\": 249684\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 246311,\n                            \"to-sign\": 247529\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 246852,\n                            \"to-sign\": 247900\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 261722,\n                            \"to-sign\": 263067\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245710,\n                            \"to-sign\": 246897\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245683,\n                            \"to-sign\": 247190\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 246252,\n                            \"to-sign\": 247414\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 253899,\n                            \"to-sign\": 255065\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 260006,\n                            \"to-sign\": 261022\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 252091,\n                            \"to-sign\": 252841\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 260775,\n                            \"to-sign\": 262096\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 261971,\n                            \"to-sign\": 263262\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 262649,\n                            \"to-sign\": 263841\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 274199,\n                            \"to-sign\": 281005\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 4.320874791835188912665615e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.481840815529263663807e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"935e4e9c467c60646c7acf7a30156b410bdd1aec52403344e964ae33c35e635aa9c1976aa7f1606437bcd2853568db90\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005971273992817934\",\n                            \"overall-percent\": \"0.001910807677701739\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.481726951731763970342e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"17d4c9cf214edad944f13ee8b52dce377c1043842d14c74673a3dbc79ed63420171a3a66d1b10a6a0278db5405320318\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005971273992817934\",\n                            \"overall-percent\": \"0.001910807677701739\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.481840815529263663807e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"64bf95a58cecb76b90d85f0729b3bb411ae56ba11753da991579eca8d3f72bd6749592b567637d53035c3cfc9a57ea00\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005971273992817934\",\n                            \"overall-percent\": \"0.001910807677701739\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448311561802990021915e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"88a5216174e026b45a4be63b17ed2c6cb25fa4e41e397b88d765cc49412d9b6c14d0e7138b7cceb0d2f5957d7ba8a305\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005664870685087644\",\n                            \"overall-percent\": \"0.001812758619228046\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448016316548701173417e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a6898ff36da875376516e205f687a7590e124337f0cfad968624e05a1a3f472e04ff0da9bded67922a2beee748136b09\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005664870685087644\",\n                            \"overall-percent\": \"0.001812758619228046\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448428038127066980459e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"73c059d291361151de45f3b34c9eba861fbde72cff5a00c24526d017a8414b577ab2b72291eee615501b1e336e54d891\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005664870685087644\",\n                            \"overall-percent\": \"0.001812758619228046\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448524936869440177594e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1181a673448c0b135574063249f0754b9a521c31d5955441bd975f33291c214731c57308176877af57e801d3433b9409\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005664870685087644\",\n                            \"overall-percent\": \"0.001812758619228046\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448418986751651121669e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"880106b3aa920518e46ad26ee3a13c7a13426235f3d5ded0c19f75e113628d1807bfd9d8cc614e114dab51a51c9f3719\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005664870685087644\",\n                            \"overall-percent\": \"0.001812758619228046\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.437512575191482318871e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dd16b9e77c883093f9481a84ff96823a5aa4b09f5a0dc6092b8db98ade5302c9b4074c8028f3347dc522c9686592cf02\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005647302571646221\",\n                            \"overall-percent\": \"0.001807136822926791\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.438332894280011181818e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a7d0040ac7c79df54009fd3dc7ceaaae6dbf33cd2c144f75c2558a614032fa846a54d8d779bdeb6ae63590b19c533382\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005647302571646221\",\n                            \"overall-percent\": \"0.001807136822926791\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.438853526807371931835e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3faa1e4d144872bbf6d3168aaa8c2d30b000fbd889f943da2a96edc54ee50c08e7208416f494685ba521b50d0295fe06\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005647302571646221\",\n                            \"overall-percent\": \"0.001807136822926791\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.489618848955252996661e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"179c14684b1d39715563d3cb0565782b37a231c056886fe5cc0c7547a7e95439f5feab4199ae25b8bb191ba4b4d93397\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005850905003102694\",\n                            \"overall-percent\": \"0.001872289600992862\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.488393471707710762113e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"adefd13f109aa759825fec4741aef8df56fa6808c9600da42b7c7e7a29688bb9855cf13abc2e562d80dda58d05546417\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005850905003102694\",\n                            \"overall-percent\": \"0.001872289600992862\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.49012308051522484079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"851e2ac1306d867851b618f0343bb1ffe2ca5d6cacc642defeb603c807138320bd7f33d83184e7865cf5ee0cba242a87\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005850905003102694\",\n                            \"overall-percent\": \"0.001872289600992862\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.490207330205322263395e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4d56f8d3f0e254b61f1fd0987f93e0bd66850f37bcdb6fd90d812d3ae0f44c4272356a42e7af289f8497096dddb4518f\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005850905003102694\",\n                            \"overall-percent\": \"0.001872289600992862\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.1363412415336142857e+25,\n            \"validator\": {\n                \"address\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                \"bls-public-keys\": [\n                    \"1181a673448c0b135574063249f0754b9a521c31d5955441bd975f33291c214731c57308176877af57e801d3433b9409\",\n                    \"73c059d291361151de45f3b34c9eba861fbde72cff5a00c24526d017a8414b577ab2b72291eee615501b1e336e54d891\",\n                    \"a7d0040ac7c79df54009fd3dc7ceaaae6dbf33cd2c144f75c2558a614032fa846a54d8d779bdeb6ae63590b19c533382\",\n                    \"dd16b9e77c883093f9481a84ff96823a5aa4b09f5a0dc6092b8db98ade5302c9b4074c8028f3347dc522c9686592cf02\",\n                    \"4d56f8d3f0e254b61f1fd0987f93e0bd66850f37bcdb6fd90d812d3ae0f44c4272356a42e7af289f8497096dddb4518f\",\n                    \"179c14684b1d39715563d3cb0565782b37a231c056886fe5cc0c7547a7e95439f5feab4199ae25b8bb191ba4b4d93397\",\n                    \"adefd13f109aa759825fec4741aef8df56fa6808c9600da42b7c7e7a29688bb9855cf13abc2e562d80dda58d05546417\",\n                    \"851e2ac1306d867851b618f0343bb1ffe2ca5d6cacc642defeb603c807138320bd7f33d83184e7865cf5ee0cba242a87\",\n                    \"3faa1e4d144872bbf6d3168aaa8c2d30b000fbd889f943da2a96edc54ee50c08e7208416f494685ba521b50d0295fe06\",\n                    \"a6898ff36da875376516e205f687a7590e124337f0cfad968624e05a1a3f472e04ff0da9bded67922a2beee748136b09\",\n                    \"17d4c9cf214edad944f13ee8b52dce377c1043842d14c74673a3dbc79ed63420171a3a66d1b10a6a0278db5405320318\",\n                    \"64bf95a58cecb76b90d85f0729b3bb411ae56ba11753da991579eca8d3f72bd6749592b567637d53035c3cfc9a57ea00\",\n                    \"935e4e9c467c60646c7acf7a30156b410bdd1aec52403344e964ae33c35e635aa9c1976aa7f1606437bcd2853568db90\",\n                    \"880106b3aa920518e46ad26ee3a13c7a13426235f3d5ded0c19f75e113628d1807bfd9d8cc614e114dab51a51c9f3719\",\n                    \"88a5216174e026b45a4be63b17ed2c6cb25fa4e41e397b88d765cc49412d9b6c14d0e7138b7cceb0d2f5957d7ba8a305\"\n                ],\n                \"creation-height\": 3358878,\n                \"delegations\": [\n                    {\n                        \"amount\": 7.5e+23,\n                        \"delegator-address\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                        \"reward\": 9.5776177423320102352043e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.001e+21,\n                        \"delegator-address\": \"one17puvhmhwrjdut4pwlvha3d000d57zm7tda797v\",\n                        \"reward\": 44368777748695835466,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 5.59508118894411109613501e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ft9sknz8cuq5sc4p9nhvuyysu2ejhsznjqntv2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ep8zv2rmwk7e6r5hg6aac7egxy3nx8tcs405q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 241912779361645410318,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 7052146147575682224,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19u0l4vvzhqntlyefjgtxlcmnml99et7jk5nm86\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h6umxzw83zq2d3j0qlnxfg2prh6peeyzpggdvh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u5gl9tgmvz954kj4j74cpvhsumz943kcmcp3sg\",\n                        \"reward\": 667610209639881222,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1940xav3v8j2z7fp9rj4xz009y2lpjgrglse2gf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rj0n5rxqgl5cpzjcmk32wmk5p78ghrrfc2f3e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f0h3c2zf2twsryd2fcv22kzmqu4dpnaye39mxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1avf5h8ecn0nu6sahv0wxg35n2wn6tkjsyykx84\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfcfdur6e9gxl2ee2rqyz8t6sld9gmv8mgq8hh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.182e+21,\n                        \"delegator-address\": \"one1d8q5vnw4ygqrgt0ukpkd7f70w66wvdfe9my47v\",\n                        \"reward\": 80946444727189728792,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one15hcg2sguaxjtnhs3xdr0ceug4u4sju6gz4j3xn\",\n                        \"reward\": 23049817210079339314,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vmwkdltw68zh6g3el0v2xpr6c2kudfd9c4c746\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t460hrd8ndrjfxc4mkyxcz2etglphjk8kzhm2e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one12xk2yqnla9y5qn420dgjj73pc7jzmgptktlg82\",\n                        \"reward\": 20502811079302009237,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.16660625e+22,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 61460304873250172386,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18f0n04frheycfr75ccpntmrmrc0r368vdmjmru\",\n                        \"reward\": 13972268447196220934,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one1489m7zqf3n9gn5axtal3umf8qx2jq3zj7ljrjc\",\n                        \"reward\": 23312486777398254449,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.499e+21,\n                        \"delegator-address\": \"one1ps75yrwelc8xzdkjm02t07lg9nen84xyj9772y\",\n                        \"reward\": 1394396899976767525,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12s6hf5tc5k2pue866x2ywes9zndqm9zv7la24u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z46w7d5cqchrj0aa608vdmwze08g7n2ugd692w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2857142857142857e+22,\n                        \"delegator-address\": \"one18yv5m65wa7wrknfmh2jsh3pcst2z0h3698vu3k\",\n                        \"reward\": 151229428066483538806,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.55e+21,\n                        \"delegator-address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n                        \"reward\": 11638175362819398417,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9r2qh3fjy3tqtlcc9av3yxqq3rte3mfk45zj7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1tn2cdy5nw7f9pe6q5tqk7zac6xmh98mdv6txtc\",\n                        \"reward\": 274540242913459137122,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.34e+21,\n                        \"delegator-address\": \"one1p4hvykx0a22h3keqs92fr6yq39cwcfyth6dyh6\",\n                        \"reward\": 723050528903519759,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5217209954e+22,\n                        \"delegator-address\": \"one1t8372ngc5trnexc8zmflgt57hqgf399plf344e\",\n                        \"reward\": 230034739449188965123,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one1ztuftx554sf84a5gvpzap7dcaa72srjy4wzws0\",\n                        \"reward\": 2598040477047697,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.55e+22,\n                        \"delegator-address\": \"one1v9u59kn6n4pvrvm6qc6ynpag30y6lnh9xh9cm4\",\n                        \"reward\": 214561186675338194463,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.17e+23,\n                        \"delegator-address\": \"one1th6dqkvnsc9wc023mr306yykflcqlpssmxzqp6\",\n                        \"reward\": 2.375590839123601968666e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.000000025e+21,\n                        \"delegator-address\": \"one18r98dwhkqt8trfcsmdu0l7nlk45gzj00wqe7kn\",\n                        \"reward\": 20915476898220886772,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.116e+23,\n                        \"delegator-address\": \"one19j3yh3kz9s5crk3k40hqn4e5few9dx378fjgrd\",\n                        \"reward\": 30114138628192907443,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Reliable and experienced staking service provider from Ukraine. Visit our website for more details.\",\n                \"identity\": \"Staking service provider\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Everstake\",\n                \"rate\": \"0.120000000000000000\",\n                \"security-contact\": \"devops@everstake.one\",\n                \"update-height\": 4021954,\n                \"website\": \"https://everstake.one/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1000000000000000000,\n            \"validator\": {\n                \"address\": \"one1pc3yfnkrj0mey98nla8aswftyy23nat38hku2m\",\n                \"bls-public-keys\": [\n                    \"40a5a14acaf2b36c6bd856e4b4e6e778d5f35fb64146a42ad1092c36d0d32a4273070c40b77cb6a056f5882ce85e508d\",\n                    \"4441022eb63eab44a47073ba3495fe93e5a1f45da21fdc9175c285c027e7bd06415b2c0edcb4fce050d358393fdc638d\",\n                    \"4144d21310172fc7b49df2f4e77507925b8a38729740579facf406678d6ac4e691e325f60507b1838a8902c76455f785\",\n                    \"ba5406a83bee4072040beb3041d20ac9b3cd5d53e4d5be2b7143e806ef33343219fa35f02e3fd81fa0c6f39990e6ec05\",\n                    \"0c543f5938bd35db975294c4716411a3989d68cc3d00b18c4360a37918b0f2277e69ee519e1862074c2051f0f1172000\",\n                    \"1a01bab0a400b81eaebfa9e9bce8554d5cfcdce91764474badd25fdd50b2ba6be23829cd8d89b6bc2af790aa71cda00a\",\n                    \"0cd25ff3f33754d4f77a41630cf8c6af044df31ee7426bdc39278c94d98dbd7c3de57c4697d570f530c4fc327cbd0482\",\n                    \"f7749653cb8880576c655fd2582fdd66bcffd9c52c988e410892baa224715bddc46ff87559f4dea1ecaa451a2f30c384\",\n                    \"fd070607bdcf6f47b04c0063d048d29ee9e79d9e3fa11810a93b5d26d3d4fcfdd198d3e4298cf39e30ba93a6db573b88\",\n                    \"ea30fdd178c758080053c8c1ef9b27c7413b1247e6c814d4b04932846919357f9abaee903ee90db628200d4edcdefd80\",\n                    \"20f9eaa4c6c1a17973ee1fc2c0eddc97f94540821559b7a2a47b2f38eaa98adfbce5338532edd57e0dfb756864b08f09\",\n                    \"a32a83e24126cde8fd9197b21024baf9910ad2c40ba1361ff8be66275de6dcbb75deaf87fadcb76564a5aeb723810d11\",\n                    \"c263b52ff9870a05e81be4d9d330e89fc22f44764fa10d904fa30b52667a822404dbdf2799fa4b355ee12f26fb907506\",\n                    \"eaa5738bce9858ee4ce05236e82052700e3e7675962e709ec21bde40713c0f823f9f258afd4cedc0bf297d22b11cfb8a\",\n                    \"de473612fe976dcc41e0eecee93028cedada61f4a7afa7b7a43e0c9fc3556973f490913ca64f6876b3b5e7092180ab86\",\n                    \"306350b42f0595cb1d05eb07da41cce14ef3779957102f44dde47cdeab3f7091da834dc8444b4d2304c2c5313317a68b\",\n                    \"a4f809a381d3c4f228a436ca0d8efdecd381c03e00d9a68dc92562f27478b606433d31aeddfbbed6f8a21a865ec67b03\",\n                    \"3a0f3ac705703afc936220a12aaf20e79bd22af11fc5595e7b86915fdb0153a93fc1ba6f6aaa0b2a8abdc1a9b4f63a14\",\n                    \"1f49aea99efb71cd01f2ade7ab4006e212f062663b20c0639d179bf0cf1a452f8c48342374cf071b813f134498e2fe03\",\n                    \"464b679c71743dfb4b5ddca94b66992d48e9e85ed8a276562d07d9ef3a89c44b1e941bcfe9fe8d35eaeb3b7fad875d87\",\n                    \"c0b375c7f41079e80707dd4a9196f7e9c031abd76e33e8bad07b96f234f21f4bb68a67e20a2e841e84e844bb78be1f90\",\n                    \"b80ca04c9a300ac9d011bf01d5d45941ca913545c02a787d52e8a6e1a0bacc499f4c14e8d64097d1524e427a83be0b10\",\n                    \"ed63c3963a980b8ff26718bfdf8857aa2661669a380b040182a48aac9c332d95e080ea548d2024f84f3a76b3872d8710\",\n                    \"28f96131edf0456b4d409de93e37b7716da47b50d055a32ce1b1e5389b72270a53291592b008182468549619ad83e285\",\n                    \"1562226f805d651660c7847b6548a2a10713ba506fe18e0831bc85a95c9bebc765f62b35ca1e68301689da5f0b69fa19\",\n                    \"c56a657f35ed5ff594fdc31e4b4e5593b6fc22399ad8fdfbd83434e18318fa4019ea6fb4d95c3f7bfc6bb81fe2240a88\",\n                    \"6fc7d4540e81bc5685a26811acc29d201d662e6800fd2fe71b3f3b5e2d3ae761d528b5589e28ad04c2a3dd49baf23895\",\n                    \"810a66d1c3069d7dbe27c74a5cb102c591931209fc7ea83f7098daf80a3d0ae64fa4c6c1efd0205191e89d2d77b63f81\"\n                ],\n                \"creation-height\": 3358881,\n                \"delegations\": [\n                    {\n                        \"amount\": 1000000000000000000,\n                        \"delegator-address\": \"one1pc3yfnkrj0mey98nla8aswftyy23nat38hku2m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fa40ekglflnh0rl4ed2rhf2gxywrg9wgqwgu7l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fnyhmt5998e78nx57leg4an5req5htaux0fq26\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Mobile Dev Node\",\n                \"identity\": \"JSK_ONE_LIVE_NODE1\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.050000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Mobile Dev Node\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"apps.support@prarysoft.com\",\n                \"update-height\": 3358881,\n                \"website\": \"MobileDevNode.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 188973,\n                    \"current-epoch-signing-percentage\": \"0.999338967096426192\",\n                    \"current-epoch-to-sign\": 189098\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"81003178657385999999999999.999999999999999989\",\n            \"lifetime\": {\n                \"apr\": \"0.116760557038296476\",\n                \"blocks\": {\n                    \"signed\": 26872739,\n                    \"to-sign\": 27049383\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.120903232228269672\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121154448677940250\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.121468252275941535\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125552172333607469\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.118546170063762496\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124494913795146116\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123200412260605104\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119209617291066456\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116145317743962334\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117357641396337501\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.113778309537475468\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115860893416672108\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118331275146496734\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.117614577545630630\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120086346160878553\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118514173598926237\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120457543635403158\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119569925336474721\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120888017556939217\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120538524458492233\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120538802077441678\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.123602220705188709\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116229120069486586\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117733841056479259\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116257474823846669\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117245548799987295\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117135210049703909\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117060424464297215\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117743281339545886\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117502919144993453\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.116760557038296476\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 214149,\n                            \"to-sign\": 214253\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 213408,\n                            \"to-sign\": 213538\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 213408,\n                            \"to-sign\": 213577\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 217690,\n                            \"to-sign\": 217750\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 213677,\n                            \"to-sign\": 213720\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 213532,\n                            \"to-sign\": 213551\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 220975,\n                            \"to-sign\": 221026\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 213496,\n                            \"to-sign\": 213668\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 213228,\n                            \"to-sign\": 213421\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 213793,\n                            \"to-sign\": 213902\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 213718,\n                            \"to-sign\": 214357\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 215647,\n                            \"to-sign\": 216021\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 214556,\n                            \"to-sign\": 214851\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 217276,\n                            \"to-sign\": 217685\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 227750,\n                            \"to-sign\": 228020\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 240550,\n                            \"to-sign\": 240825\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 217324,\n                            \"to-sign\": 217347\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 214906,\n                            \"to-sign\": 214942\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 215205,\n                            \"to-sign\": 215228\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 231696,\n                            \"to-sign\": 231738\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 214212,\n                            \"to-sign\": 214240\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 214574,\n                            \"to-sign\": 214591\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 214772,\n                            \"to-sign\": 214786\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 223023,\n                            \"to-sign\": 223054\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229553,\n                            \"to-sign\": 229580\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 220683,\n                            \"to-sign\": 220714\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 230678,\n                            \"to-sign\": 230698\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 231930,\n                            \"to-sign\": 232011\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 232553,\n                            \"to-sign\": 232570\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 251177,\n                            \"to-sign\": 251342\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 4.227969597426548379241665e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.657875945661803006664e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7bdb0450438e55d56e21e08ce2a881b6fe5cc7c8f3b5b053cde6358af34d36fe53428656ff19a7f7cb757b58ac40f106\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.656769086741880823878e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"40a3db7ddc08f6ccf6b257cff8537ce629077c922533bf06bd4dbfc02b3d278edcbf77169f4bac31e746c892be307182\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.658336014930686989567e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"53cb821ec3a3385905be1b2319956f6dbf9d023cc59ef50b6a3c9e88a7779aba506741eebb42eda0ca1a76d86ea4d98e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657875473261564957817e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e18afae1c74f676cf72b8a0f8f3c8fcd87c4ec284b8eb31c70dd9d855bbbae4a736a92e2dc5668201cc9ac2245eb3b02\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657735734112146692515e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"cd21fcd82f7175dc4231f47d28338197ff1950b9ac7e8bcd7a6df025cba26708c4e0b215bc2410e42d5cd681cda8be86\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657739916118221912477e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b92c957e384e890200c59f98f8d0489a9f23a2be148525f20572b2d4d1eeeccdf6190305d6c89536aff695dbd00fdc06\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657976151379431064417e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"52b0e9c523aa7f5f989c1610d4f3fb12462a857ad15ed7ba82f88677ce11dd4505d8b13b12d224aa8d725ad9f490760e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657120387996964818091e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4fad10de908b4e2eb37f62127a5e4d9fea5f61b062351722d01f5c88aaa6a3584edd1f65faeabc73ee0786b1118e678a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657759557587295321035e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1647af99e7a9c71fdec8f2496deaceb5876814388c4090461de3b28231c242570bb7b5ce551c7f07798f9e6bae7c7b0a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657602489855045879369e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"42dab286776dee71b918d5d5ab947f43321dfd59c939f77f0936ccc972e3615f3063044de78a1916893d528415209506\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657750427692249728265e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0e293e1acda56f1c622ed3d99a4d48d53feff6fa834b2fd3f8d32e49aa15f01b4d1e7d8f3e6e0113779a4970b5a01282\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657154727266448982126e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2dbbc34c15c05c549e733cb03513f8bd5a6f2b851eb8a330b4042bf932d997112da0e3edd7babbd06a8c18d79a017e0a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657981549911450016396e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"930db5f31fc1a4d50298d3bfb8799693b856fa2d65c19298a5c0b3d500d7b24d03848a5650f7b2fd069cc8466385b68e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.1003178657386e+25,\n            \"validator\": {\n                \"address\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                \"bls-public-keys\": [\n                    \"53cb821ec3a3385905be1b2319956f6dbf9d023cc59ef50b6a3c9e88a7779aba506741eebb42eda0ca1a76d86ea4d98e\",\n                    \"42dab286776dee71b918d5d5ab947f43321dfd59c939f77f0936ccc972e3615f3063044de78a1916893d528415209506\",\n                    \"b92c957e384e890200c59f98f8d0489a9f23a2be148525f20572b2d4d1eeeccdf6190305d6c89536aff695dbd00fdc06\",\n                    \"0e293e1acda56f1c622ed3d99a4d48d53feff6fa834b2fd3f8d32e49aa15f01b4d1e7d8f3e6e0113779a4970b5a01282\",\n                    \"1647af99e7a9c71fdec8f2496deaceb5876814388c4090461de3b28231c242570bb7b5ce551c7f07798f9e6bae7c7b0a\",\n                    \"52b0e9c523aa7f5f989c1610d4f3fb12462a857ad15ed7ba82f88677ce11dd4505d8b13b12d224aa8d725ad9f490760e\",\n                    \"4fad10de908b4e2eb37f62127a5e4d9fea5f61b062351722d01f5c88aaa6a3584edd1f65faeabc73ee0786b1118e678a\",\n                    \"cd21fcd82f7175dc4231f47d28338197ff1950b9ac7e8bcd7a6df025cba26708c4e0b215bc2410e42d5cd681cda8be86\",\n                    \"7bdb0450438e55d56e21e08ce2a881b6fe5cc7c8f3b5b053cde6358af34d36fe53428656ff19a7f7cb757b58ac40f106\",\n                    \"e18afae1c74f676cf72b8a0f8f3c8fcd87c4ec284b8eb31c70dd9d855bbbae4a736a92e2dc5668201cc9ac2245eb3b02\",\n                    \"40a3db7ddc08f6ccf6b257cff8537ce629077c922533bf06bd4dbfc02b3d278edcbf77169f4bac31e746c892be307182\",\n                    \"930db5f31fc1a4d50298d3bfb8799693b856fa2d65c19298a5c0b3d500d7b24d03848a5650f7b2fd069cc8466385b68e\",\n                    \"2dbbc34c15c05c549e733cb03513f8bd5a6f2b851eb8a330b4042bf932d997112da0e3edd7babbd06a8c18d79a017e0a\"\n                ],\n                \"creation-height\": 3358893,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.00006709e+22,\n                        \"delegator-address\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                        \"reward\": 1.8153837769131116635033e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 5.70881267095887470926599e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zxucth84p9u4a9zk8f3t0rwvvgrsqgjk4z5f6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13z3n2gqg3ptk8cgs2jfn9cp6mec0kgu7xd9ywn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jnvncsmlxtnr9znhqqx9rfexggmuj25gmh8pn7\",\n                        \"reward\": 572153035995699489,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qka5ahyct3k4hc6gqujedyj9xq3d68nj0ws4st\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2682e+22,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 51867386369253989103,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0a43e43kvlw2uzmmk3xv93t6gcz5mr4whr974\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dsqz5qn8pv58nnudvnn0ngm6f9dr3d4t8dcvtn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dwecfk9455vh6cx9shx30qyeznzem9wum80pvk\",\n                        \"reward\": 22550145380400830795,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vpslanr565n5v3qd0q7gt3j2cz8c3jj9ye7r43\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 13701440783364797915,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zf239ny6pdy0twnzmuaxumvgx9ld9rlfl2a3sh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pds4dtf4pf35xnj7452m7hax24gfzu54y4xfms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1emggc9549mcv259z3w6fe4ptwt89fy2rzqhc3c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.391722285e+21,\n                        \"delegator-address\": \"one1khpmdjyc8qc9ye5np6dpe2paqrz4e2jxymwpj2\",\n                        \"reward\": 62112860643908349273,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1xkekv8vh3y2r4q4agwfesedjs50kcgpqv8k906\",\n                        \"reward\": 10247845670410158997,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.005e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 6856726367799764772,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13xnd5t6sns2qd6qh9rp60pw3lv47q929e9sgtq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r0uhfdksp5xwvsg9yzgugz3n2ucc4re4kj8s8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l4dtuj5s7sj8q34urqmyev5jjx2s6t8yp28wjx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5231438e+23,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 390719185950699122670,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10umgrh373mm7ch9u62jxg6lx9z0736w5gxhwmc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tlqxc0t908dxhmc7cqnpsn70g2dlglsxhuh2rq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3e+22,\n                        \"delegator-address\": \"one1xvyfjz4ypmcwqxvd7q28xp3jwv5xy7wa85jr4n\",\n                        \"reward\": 47064674051094652846,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fqxnu6yy0mfl38uctd562atrpfed6s2ayynlfc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16w3td5xj8uem45vnusfg73fqw9wkdmeukjqh7w\",\n                        \"reward\": 28424933965148242039,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.41055e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 5413243319003819707,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fqcktwuvxcf807cwa86d6hfjvwyrj6tscayfk4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1572l5gau2d7gcestc7qaxdvcsa7hj2467tpf57\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l672kfy4fpvkmmg6d05unv8ln6sdq6lwq980lk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18tfdjlj2ya3q48s0xynjjs44jpcq2u4q3mtcpn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awk88qhn4wk2mj6pwkqd4utlqjcl8sqnsu4szf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awzkclvn9vdennul9m7ftqdwfwftwyhuqk4yta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.030783831e+21,\n                        \"delegator-address\": \"one1ggkud93905xkvgkquykrrn44ftzav7ztmq2geq\",\n                        \"reward\": 3483660540282347606,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jzzz2qrwn62vd8p2v4ylkteyey6k9d9mnm3jpt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqt2455nl3n0qs8v5l2zfl7ez5dygwy3q8tm8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 97700285877858524295,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t6ynwcj7wtd2t8lpcwdxsgzh2j36unngd3l4u2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uugr9gcd7apak6q00a8qg6zaaadls5vc09a237\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r3cjxvlvjrhq3537yswks43tfprn8vzahwdu94\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtttzprrpvgeuwjsvkcyz00lftpy63kjk4yd82\",\n                        \"reward\": 1.540836035833195577303e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 5770828916300453549,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yqlu8j3y6sv55nx3v987cxr209gmkqjy5vgjh0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.202e+21,\n                        \"delegator-address\": \"one1kxd3tx33z6trnz6gqujk39wtmj75xvdy4fzrdf\",\n                        \"reward\": 314316137437273947440,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x8kgyyqgslzrm7jrlj4m7rpg285etdywjk7gez\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1qj0f0dwg4jr8lmguxafsuu4pejzcmvz0e277ld\",\n                        \"reward\": 58753228164958106423,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ty5nf4tlmxgh8acyum5xy27fh5hrmx9lsemj8\",\n                        \"reward\": 9730894954926645255,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3e+22,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 428552579829239166390,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1lpy9wdzcvyek6g629zzv728lnpmxqzqyxhvpl6\",\n                        \"reward\": 545783526797833308333,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 19289470168935954317,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1983tu4snhurnned0n25jn55s4v7rmkknvqfu8g\",\n                        \"reward\": 4.463098433040333982453e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17zh0n602sshq3akqfrxsfpkyj7udmkx4glwy2u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 4784733830471119598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s5sqy8ufg5pegfzv6j4a5n879udsaasu2u5hdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q98lxvxcxl228y4dt6xqjrzkha206usucfx02r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.16660625e+22,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 62482503987431417375,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 1746983969189519491,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.47548787e+21,\n                        \"delegator-address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n                        \"reward\": 8584957050012575515,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Member of the Foundational Nodes, working with Harmony for a year. Node support, managing slots and shards to get the maximum APR with a 100% uptime. Together, we can increase the APR selecting the best bid every epoch. Together, we are stronger, delegate with us.\",\n                \"identity\": \"Embiei\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 5e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Embiei Network\",\n                \"rate\": \"0.098000000000000000\",\n                \"security-contact\": \"@Embiei\",\n                \"update-height\": 3541359,\n                \"website\": \"https://www.harmony.one/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.123198214616241136\",\n                \"blocks\": {\n                    \"signed\": 2784071,\n                    \"to-sign\": 2870321\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.975890261184362980\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.040323733335809066\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.701566660081143019\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.382464829983475513\",\n                        \"epoch\": 189\n                    },\n                    {\n                        \"apr\": \"0.417532328754149670\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.356208628220957264\",\n                        \"epoch\": 191\n                    },\n                    {\n                        \"apr\": \"0.035199170099636249\",\n                        \"epoch\": 192\n                    },\n                    {\n                        \"apr\": \"0.125129197191840545\",\n                        \"epoch\": 193\n                    },\n                    {\n                        \"apr\": \"0.151010453081291732\",\n                        \"epoch\": 194\n                    },\n                    {\n                        \"apr\": \"0.092079829790993314\",\n                        \"epoch\": 196\n                    },\n                    {\n                        \"apr\": \"0.098202509203598409\",\n                        \"epoch\": 197\n                    },\n                    {\n                        \"apr\": \"0.088848085165215030\",\n                        \"epoch\": 198\n                    },\n                    {\n                        \"apr\": \"0.100380313740238750\",\n                        \"epoch\": 199\n                    },\n                    {\n                        \"apr\": \"0.098712922638816239\",\n                        \"epoch\": 200\n                    },\n                    {\n                        \"apr\": \"0.115175287739227660\",\n                        \"epoch\": 201\n                    },\n                    {\n                        \"apr\": \"0.111915877134945977\",\n                        \"epoch\": 202\n                    },\n                    {\n                        \"apr\": \"0.108870261768036723\",\n                        \"epoch\": 203\n                    },\n                    {\n                        \"apr\": \"0.097758730575305710\",\n                        \"epoch\": 204\n                    },\n                    {\n                        \"apr\": \"0.095221581204061636\",\n                        \"epoch\": 205\n                    },\n                    {\n                        \"apr\": \"0.097445872028214715\",\n                        \"epoch\": 206\n                    },\n                    {\n                        \"apr\": \"0.099741172679661001\",\n                        \"epoch\": 207\n                    },\n                    {\n                        \"apr\": \"0.128671051907177118\",\n                        \"epoch\": 208\n                    },\n                    {\n                        \"apr\": \"0.131546409628029644\",\n                        \"epoch\": 209\n                    },\n                    {\n                        \"apr\": \"0.126332842206274510\",\n                        \"epoch\": 210\n                    },\n                    {\n                        \"apr\": \"0.126702996023936574\",\n                        \"epoch\": 211\n                    },\n                    {\n                        \"apr\": \"0.123198214616241136\",\n                        \"epoch\": 212\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 9.96406088552210038814328e+23\n            },\n            \"metrics\": null,\n            \"total-delegation\": 3.29139319992e+23,\n            \"validator\": {\n                \"address\": \"one1ju6cn0dtfa3fahuelc6ppj8c2sg2xqn759zxcm\",\n                \"bls-public-keys\": [\n                    \"0fc33b0fc2c20d5e2b734d87b4af21a7f135289f5d2d96a894b0207d23048969a781f432b6222d88b489b88715ddb58f\",\n                    \"6eed55deb458e8fe98201411b574df054b0a056636bbe8553ce6ee32a548e8767bf76da0a2f4065768862805b490de13\"\n                ],\n                \"creation-height\": 3358936,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ju6cn0dtfa3fahuelc6ppj8c2sg2xqn759zxcm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u2r0ee3t4gp255axsjlnv3swepaqu2rjkswftc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xrvqsydzs9he5rw0plnpq8xyp2hpu5t8a6snul\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lju2qtnf5cx0fs78xrhcwzz3sm0ymjhegxymmq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kcmct2rrvxhy0xalrjzgglcmmytdw26phzxg6v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s7s40ku4ms63066h34xwmm5j5k4jwk74gml5nx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dygg8ugl06pely2q3xqwkuhza9evdnyjesl6qy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12saruhnv9f63dqhuadjq3vhqm3nwyw2ac40uyz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 4.3520236673679776941069e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l9jy4x6f6dcr7hzge72099f5269gqupx9hnzzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1khk3l6vwtghj73an76xnanmdrnqej8uwvmjxrz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w5ezajeeh8v2vrg8naychljwx8wfl8930yw3dm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kjncp7r9er5cuvnxxwuw9xquwsgr4q6uqggr97\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qqd82sncewz6d3pqm9jr775m00w7v3cdpyymmr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xmhf7erx9u3yrwzh6nnufxl3cejqshqtk94sk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one197wwsy7fnkts6mj3258gysaeqq7qz8nqnyent0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7e39h6z0c0jqx9vu2epx3v5d3d44nx7sqmjsg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yms3yzl9d8jcgqdk0fx8hasn4k4zuaaw0rshu5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1azvl4jf93ndfx8886xrumqmvmta9cv453xak2f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+23,\n                        \"delegator-address\": \"one1cny9ehjg06e29znh5478jpakfu7fey2kfdq9we\",\n                        \"reward\": 3.116689581398181115335e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one142w6su2shfgx8jhckcnakxkjzz63fj0tukdvyz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fp2nnpwyjzy0j68j38p6x9vcp8e7zzem3nt9e9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w5qmgz9chjvct9hs6xwg23zhystjvzm5nucuzh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16ymzfqvxyhjr65tk94ql693398dh9tpyd6e9v4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14xfv2jv9fujjkg6t9qt7s2kz0ws290en8ngrsv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1677w9z7hfsszerhd0767d47rekpuzh46xsvaj5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gwdl55he6nh0n06xuhvkuupnlp28260ccsnn6n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wma490dp0qd5f085er2d0yj6apgajajv5j4xme\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one195vyg8sq55ttxl0uygt4kpyg82rcrhfrs5vj49\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18zj55tkmgw78fmjagkfcaey9x5j7t8698nr2vm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19sdf30xtcpys95gwd2j8pxazt628am20m2vauw\",\n                        \"reward\": 88975346773388123008,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tsjm7qc6lt9pl6ryzzss2wcexl7vfurfa2grnw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 13830715052640972,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1whgae04dsds6q80vjg7l4wvv7mcv3zyfgmcdle\",\n                        \"reward\": 347451642613739,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one108acxe4v8jacnvzpvy5laufmhw0a5rd8d7zsjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dztpmj96q2f7rmu8gl8hne8k2z84s8tjmmcj4q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mwhe2kjsxs3fvr8th39nhkgllcap4cplr5pdx3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1572l5gau2d7gcestc7qaxdvcsa7hj2467tpf57\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1emggc9549mcv259z3w6fe4ptwt89fy2rzqhc3c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1upxnram79uhrf9ygflvdh8wwueqdgl64qzczsw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rr5n6qvjxlyhrhnkzxtjslzffrp4trl3wtsuh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d2nafxk24ufu2rw3q96am8juun9jjct346rq2v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7sx6j5pclehfmqvnsczfj6372lr6yx3v7zqae\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qtx776yews0t80k9ppe6d2qd76clnpp2tjs8wt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l90q8v4v3erqv9ptuzhpuu6ywye99v7cc0c3q5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n2svngry0vw2880jexagzd33pdk5kwlwq6hrta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vtulqgfjsjm2nqkdzs5u0g00jvh2tyhql5g07x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16jahlu6ejrtjtc8lsqkjwstg56dw64k9a0ft4e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xntq573g0866ph7lt8y85rwcjqcqc966xdckaa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ju2tg5mcqqz2n2tjq3l8ngfdcu47gg8mwxlus8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q2v8nqnk8gflhscwl7mz2pfmwljk440dd7wjan\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14q3fcd98sksujugh8m8p9f8wfktuj2g23j0x83\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.04139319992e+23,\n                        \"delegator-address\": \"one1dazcecu7hhhxy379qprmucn657kwg6fp9653jt\",\n                        \"reward\": 120279884263707445192,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"blank\",\n                \"identity\": \"9a4dfda22a43\",\n                \"last-epoch-in-committee\": 212,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.050000000000000000\",\n                \"max-total-delegation\": 8.88e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Please redelegate to FreshONEs or someone else, thank you\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"n/a\",\n                \"update-height\": 3546272,\n                \"website\": \"0.0.0.0\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 145219,\n                    \"current-epoch-signing-percentage\": \"0.999476926253484291\",\n                    \"current-epoch-to-sign\": 145295\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"57866205636415656305700000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.118819867685412282\",\n                \"blocks\": {\n                    \"signed\": 19803444,\n                    \"to-sign\": 19828044\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121963735235506078\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121919850901745196\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.132744286054421794\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125227724654491370\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.148753131453644402\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124250855848718201\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123133060390953461\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.121032964938489560\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118015074576267772\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117044409214975212\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.120034624472009401\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115899677033819512\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119956447723716126\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119932134292418358\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120473640438234451\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117697394695349939\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120435043696361308\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121134604590582589\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120793041819230845\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120342987674078266\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119605376188658243\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121111983813617527\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.119705900342177112\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119814324300901947\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118276333276341810\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118835656161139234\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.119489865554138671\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.118174012834837667\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.119721798814021227\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118856539716223005\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118819867685412282\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 147868,\n                            \"to-sign\": 147925\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147548,\n                            \"to-sign\": 147638\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147568,\n                            \"to-sign\": 147685\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 149122,\n                            \"to-sign\": 149282\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147588,\n                            \"to-sign\": 147762\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147541,\n                            \"to-sign\": 147690\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 150962,\n                            \"to-sign\": 151123\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147598,\n                            \"to-sign\": 147698\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147549,\n                            \"to-sign\": 147633\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 180732,\n                            \"to-sign\": 180819\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 197277,\n                            \"to-sign\": 197644\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 199122,\n                            \"to-sign\": 199412\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 198049,\n                            \"to-sign\": 198324\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 200702,\n                            \"to-sign\": 200924\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 210028,\n                            \"to-sign\": 210379\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 199076,\n                            \"to-sign\": 199448\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 182777,\n                            \"to-sign\": 183179\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 181222,\n                            \"to-sign\": 181556\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 181527,\n                            \"to-sign\": 181803\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 189983,\n                            \"to-sign\": 190300\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 180716,\n                            \"to-sign\": 180910\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 164730,\n                            \"to-sign\": 165042\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 165057,\n                            \"to-sign\": 165239\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 188599,\n                            \"to-sign\": 188753\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 176356,\n                            \"to-sign\": 176576\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 169592,\n                            \"to-sign\": 169775\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 227765,\n                            \"to-sign\": 227949\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 193171,\n                            \"to-sign\": 193322\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 223371,\n                            \"to-sign\": 223509\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 159114,\n                            \"to-sign\": 159226\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 3.18268065784282370774664e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.580946478346557454408e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1bdbe548a54e3aeb6598f5618bba513efab205a98f3678c471d956538c74cc39a3070a95edd032671bf1332cd59a5990\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006370583282141211\",\n                            \"overall-percent\": \"0.002038586650285188\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.580946478346557454408e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b66e47b0a02dce01caac7f1425c7589be29096b790d4587302018fb25c7fbbeade90be7ad3fb0d714b5dd0bac49ebe14\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006370583282141211\",\n                            \"overall-percent\": \"0.002038586650285188\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.580946478346557454408e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"87201cd5b68b8a11bab717ee57c6ba8b586be721517d2b9a48cd5690065dbafc71b10dc85bdf39bf762394ef8add9f00\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006370583282141211\",\n                            \"overall-percent\": \"0.002038586650285188\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.54842143597501067918e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1f1eb7dd04d6c789c7a5b949063bba2978ee0c0be3a81e873f36ddd2e0b012256cd45d7218205bf44ce7113c01460795\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006043690261963754\",\n                            \"overall-percent\": \"0.001933980883828401\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.54842294519369836862e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"701b3e515eec515554ccd182d1654b5b9ab2f2420efcc8c22eb269b409a257ce1e12a3698b0d6955b420ec6dbf642b15\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006043690261963754\",\n                            \"overall-percent\": \"0.001933980883828401\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.5485293528683095803e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4b12f2255cde93a0ff6b2bac2965887dd46e96f554c943d760393b7973435128bb7d5c93ae2a17ca757071e4a4e98319\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006043690261963754\",\n                            \"overall-percent\": \"0.001933980883828401\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.538009976252177978406e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f5121d14baddd774e40ff8c39676b932c3828c2128b1431c5977c3b1c44f7b66d77119c49233589eecb75a6b85eab882\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006024947338774616\",\n                            \"overall-percent\": \"0.001927983148407877\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.538775719339154387852e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a8472c1cb4f6a1da3e227646ac5f52817ed91ab8b9177f7483f0d562eb64e9e801b0ed09ffa3be221d4998c0b2580102\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006024947338774616\",\n                            \"overall-percent\": \"0.001927983148407877\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592049197087204098968e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"75e991e1b581086ae2f97d47db63a07116e8d4f2b705beea1f1165f936f7d5e91d324ab0c10a4704a89e47d7f194ab97\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006242165012523966\",\n                            \"overall-percent\": \"0.001997492804007669\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.591968233598205325468e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7961fd0c5713f9db3c6d8e8798673a2012df3d9ae24e868b88a8b2dbe7efae99e908a2445089b2b4909aaa62533aa513\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006242165012523966\",\n                            \"overall-percent\": \"0.001997492804007669\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 5.89271486759458563057e+25,\n            \"validator\": {\n                \"address\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                \"bls-public-keys\": [\n                    \"1f1eb7dd04d6c789c7a5b949063bba2978ee0c0be3a81e873f36ddd2e0b012256cd45d7218205bf44ce7113c01460795\",\n                    \"701b3e515eec515554ccd182d1654b5b9ab2f2420efcc8c22eb269b409a257ce1e12a3698b0d6955b420ec6dbf642b15\",\n                    \"1bdbe548a54e3aeb6598f5618bba513efab205a98f3678c471d956538c74cc39a3070a95edd032671bf1332cd59a5990\",\n                    \"87201cd5b68b8a11bab717ee57c6ba8b586be721517d2b9a48cd5690065dbafc71b10dc85bdf39bf762394ef8add9f00\",\n                    \"75e991e1b581086ae2f97d47db63a07116e8d4f2b705beea1f1165f936f7d5e91d324ab0c10a4704a89e47d7f194ab97\",\n                    \"7961fd0c5713f9db3c6d8e8798673a2012df3d9ae24e868b88a8b2dbe7efae99e908a2445089b2b4909aaa62533aa513\",\n                    \"4b12f2255cde93a0ff6b2bac2965887dd46e96f554c943d760393b7973435128bb7d5c93ae2a17ca757071e4a4e98319\",\n                    \"b66e47b0a02dce01caac7f1425c7589be29096b790d4587302018fb25c7fbbeade90be7ad3fb0d714b5dd0bac49ebe14\",\n                    \"f5121d14baddd774e40ff8c39676b932c3828c2128b1431c5977c3b1c44f7b66d77119c49233589eecb75a6b85eab882\",\n                    \"a8472c1cb4f6a1da3e227646ac5f52817ed91ab8b9177f7483f0d562eb64e9e801b0ed09ffa3be221d4998c0b2580102\"\n                ],\n                \"creation-height\": 3358940,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.187060781549e+24,\n                        \"delegator-address\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                        \"reward\": 3.4682539949654341697549e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 70052682263197681194,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.058405409333e+24,\n                        \"delegator-address\": \"one1vzaqsgzmy4g023dkynfdq7vqs4cxl2ru8jjec6\",\n                        \"reward\": 8.566130963597143465204e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16m5r7awa4y2z2cyage4cns4uejxx8rn0gw77ug\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.44e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 5253221141039671625,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.154e+21,\n                        \"delegator-address\": \"one19day69t6zzqrk3yr5086v9892c9ajvkw84fegv\",\n                        \"reward\": 1335105625648926978,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 89846678787194927183,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 29395211865739663469,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 7e+22,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.418e+22,\n                        \"delegator-address\": \"one1u9amfs5zakjkh8gj2jwhjf8mk4jjnz2qx2lzwn\",\n                        \"reward\": 102721408208242248928,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.394313e+22,\n                        \"delegator-address\": \"one1ps9xghthhsw9p94gadvmgwmg86urlmu3uka97f\",\n                        \"reward\": 73762834290600948044,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+22,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 46186187390416943224,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.745749782e+21,\n                        \"delegator-address\": \"one1rsswq9k7yq47mv7mrpc28ngq7mrn0xhnhe7mgk\",\n                        \"reward\": 145456598640202090807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0035e+22,\n                        \"delegator-address\": \"one149h38k3rt8m8gfaxxfn3zn43lqt6mzlvthcy5e\",\n                        \"reward\": 548226050651105652637,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.081939e+24,\n                        \"delegator-address\": \"one1la2fefj8hfwg33ww4l2qcsv2g7zkdxxp3gethz\",\n                        \"reward\": 1.3584696923280887743299e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1utkxtz9mjja28lrtltf28w4jmuzqrn5j7hlat7\",\n                        \"reward\": 161184311232280796884,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.10144165819e+23,\n                        \"delegator-address\": \"one15kyg8ghs4lk3njkauw2sy3luypsa3j6u5sydsy\",\n                        \"reward\": 452817416917679211546,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 49975018341605085,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1emggc9549mcv259z3w6fe4ptwt89fy2rzqhc3c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eq3ratczrnpct6hpn384rvy9njyzq6cparn2pp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                        \"reward\": 85568975804389450032,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10umgrh373mm7ch9u62jxg6lx9z0736w5gxhwmc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m5g77qw0qmxrta42vy9g9l2s7zdw6df8xu29pz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.199999e+24,\n                        \"delegator-address\": \"one1mcr7ue2mdqm63x4r9v6n79lgf8zxr6djamr7gt\",\n                        \"reward\": 1.30771482345802790465572e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1smvxmegse8k3ya86mdxe62gwjmadmvqz6q0qwp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1h3szew3asdd32u7mzd9upjg78k2afdz2cl2fxx\",\n                        \"reward\": 345673704527759520251,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.902982928449e+24,\n                        \"delegator-address\": \"one1u6fmwccwgh2e0h0qvj59gvute6j58j2g3eqz2n\",\n                        \"reward\": 2.0375834314837864979374e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.604900997e+22,\n                        \"delegator-address\": \"one12qtcvz4yd5qa7dfdmqnxmpl75ktgnhs6jp6e72\",\n                        \"reward\": 103874077245184935356,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2364987096e+22,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 113443242806897771475,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19mqs8kpuu3vzytsq5gmxauxv8g6yf4j93mll7j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 43410228500153117259,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18zj55tkmgw78fmjagkfcaey9x5j7t8698nr2vm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+22,\n                        \"delegator-address\": \"one1fsqyatysv7y3dg7lg0h39kmq2qygxwx3lmm83m\",\n                        \"reward\": 33946918659890470558,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.84e+22,\n                        \"delegator-address\": \"one1urmj08g9zu4hpmqdzn3uvt6fwecxm7amzypqy7\",\n                        \"reward\": 1.453212757508492004015e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8dt4hz56jzksjaw7vayf8d4n5k5tj5heagnpw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6808623582e+22,\n                        \"delegator-address\": \"one1qch57lkuudl850ner7xsytezwclzhnzztnkazr\",\n                        \"reward\": 194098907107278901728,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9707507853e+22,\n                        \"delegator-address\": \"one1svdlrmpcdxsuy7j80uncscgxuqz38kkpgmddcl\",\n                        \"reward\": 659023414626483882538,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1j6dhuczyfxz677l33j0kkeez23whf8jpjkyftw\",\n                        \"reward\": 31517335976759606048,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lcw9gkm4xuwrpqyjfqgz4zf5fduxrrqexnp4hf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1sdp4lyruf8ruk2x3xyyremdaq2ck0xxw9n53x5\",\n                        \"reward\": 83745695895908969271,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 1.743439455267560592729e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5009994e+21,\n                        \"delegator-address\": \"one1mwhe2kjsxs3fvr8th39nhkgllcap4cplr5pdx3\",\n                        \"reward\": 71693868794933828300,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2966e+22,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 27618731072064471734,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one135f4zp70a6dsv759rx72f7t49ev8hmqn67e4ta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 5531421629558060049,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one122uq95m7t63rcvy6jd8jwgf96x8hfv63q9m9hh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qnn5c20aymv7v3hjmewvmpewc0w8sy8hceqqaq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1657479818e+22,\n                        \"delegator-address\": \"one157rwjephc5y9vt3wc685uqlfy62amjf0ukavcw\",\n                        \"reward\": 26648134257321492009,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 104939562337454551795,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 55607057691004602235,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 3.435365672745255600453e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4974e+22,\n                        \"delegator-address\": \"one1ajwetv5tafl047sdt776lhe2v7mysy6tajcejh\",\n                        \"reward\": 2237038337259277727,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jfft9hs3ed4uu38yag0y2wzp70vmpcga9xzdq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gu6ftc8cva77j7n5zevgpdshk8jmk0vhhs0w2c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one169mgllpxsz6h5dt5nzgxpy7qtkswll5qade38y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.08999999772e+23,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 520711676286357154474,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ex8lpdj9tzu9wpfgupea04z3m2nh9rqyjefnx5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ks0jw0r5scn9su47n3fc66qt83l9s6a7up3j94\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+23,\n                        \"delegator-address\": \"one10steweqwvh3gk4cu9v85z53ndjrt0c40e9pfsj\",\n                        \"reward\": 70591319678805957332,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.323e+22,\n                        \"delegator-address\": \"one1an6ee2etedplc7sj7p45jy2s08alx35lwaye5q\",\n                        \"reward\": 86810680930199275369,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q8y3kg3ag6mwedj5haqs9gv7jmpfjxrzca9h6m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dnh7wjg8mkvru3fantlqcazsrw3ma6ucdkqvps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.17454e+23,\n                        \"delegator-address\": \"one1dp7axzg2lr46p5j4upvn4f0k9pw3kc3ull2q6u\",\n                        \"reward\": 4.966024996817460325267e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xjq4xf4uhd9fyszvm2aw63j4hvhcddn0aq4hg7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fqxnu6yy0mfl38uctd562atrpfed6s2ayynlfc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.24453482951e+23,\n                        \"delegator-address\": \"one19w8klanmgjqw4waxuv5y2ncwfz5d6f3md74t8x\",\n                        \"reward\": 38575890765750633305,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rfjslpy648xltxuw272v8q5w4lthr9m8ncpgfr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.76e+22,\n                        \"delegator-address\": \"one1jrvn0x6xwfl35cazxp6fpxl2xx0qnxsawl5r7f\",\n                        \"reward\": 99139295429841496312,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sx2lu574e3xxqp67zm6x3hqds9ppnkmzf76fkc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zr9pqt6nhls5q4qesnl2v609umrqrh9hs2kdqh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 10691934912602551411,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.8e+21,\n                        \"delegator-address\": \"one1q8n0et2teszhw9dfuup07cyzs5ekemezhwdpfd\",\n                        \"reward\": 164312705911611046216,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w5qfpepheyt0lsfynd3cuarqa8ytra9mrplavw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.35133959e+25,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 1.736761978339323038967e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.03449737528e+23,\n                        \"delegator-address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                        \"reward\": 4.752366904120698536394e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.189e+21,\n                        \"delegator-address\": \"one1gclsr6czt25s56e7dkpy7cn22096xtqwjqupcm\",\n                        \"reward\": 18149204904384647191,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13xnd5t6sns2qd6qh9rp60pw3lv47q929e9sgtq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ew2n5677rufu6e8n32j8pmvkgxt7gug3zajgy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1acyxv69xjgunv3z5ymnjt2w70q7rdardr4a3uz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.15e+22,\n                        \"delegator-address\": \"one1kx5t0efz6deqcggtrvjxg58llr2agp34y3jvzq\",\n                        \"reward\": 952597098031868590295,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 21247052869381504705,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.555424864e+23,\n                        \"delegator-address\": \"one18pqt2455nl3n0qs8v5l2zfl7ez5dygwy3q8tm8\",\n                        \"reward\": 3.672788566652542331458e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vrpmaqnzs4pzhyqyhv4rxf2952zzjvrsqjpjex\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 215913716629760470015,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1mv3ta8wgdeehrsja9pv7474chmu62dyy7cfqg5\",\n                        \"reward\": 60159742306714071198,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jm9erjgeudx44jxvpyr09u2wevfrjykuvch5kf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4985e+22,\n                        \"delegator-address\": \"one1rgl6f9qgr40a2pv95jey22pstdfmq9gsak8u9w\",\n                        \"reward\": 68545146182863401577,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hlatxd4q8ld78djaerr4hhv0g6vcraxxluks97\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.13556835743e+23,\n                        \"delegator-address\": \"one1l85psy64zvjjqwz2j6224tekjsslk37ecdggfc\",\n                        \"reward\": 1.621253244423270227344e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17zh0n602sshq3akqfrxsfpkyj7udmkx4glwy2u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n                        \"reward\": 19494044880632756896,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0138563597e+23,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 712855315465817785803,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yy96kgumhfw6tjwdkxtspju4qf0sc9ay4tf50s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one108acxe4v8jacnvzpvy5laufmhw0a5rd8d7zsjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.03688222751e+23,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 254030017654383903434,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 72997540156264093278,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17uudye02ffxhlpqnvvm8fkc3wyqsgn320gg86k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.23e+21,\n                        \"delegator-address\": \"one1ausldvnqxmarafdcswmp5drtj85ak35qw4xud5\",\n                        \"reward\": 204738186364401648938,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8884e+22,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 157591271077708231072,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 123646180662799528305,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.15e+22,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 92321338392974767257,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one1axv7pm9duu4qygc0krwr0z4p4dzedlh5qlpqrs\",\n                        \"reward\": 16277210969571299849,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.9071842153e+22,\n                        \"delegator-address\": \"one143tc4hfttqrtun6nl3x78nqcm3pnt9m8jj7mtz\",\n                        \"reward\": 550870032382170530530,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one15tjsjcff0mcxc76qjrspmc8ml53yg9px3d2qgp\",\n                        \"reward\": 5573773723422181647,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 37750552460324507272,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3e+22,\n                        \"delegator-address\": \"one1ckyzz90hwkcjv9ge2rc8qk5g42kpt2vcha7pek\",\n                        \"reward\": 1.597248262417318758365e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1e+23,\n                        \"delegator-address\": \"one1572l5gau2d7gcestc7qaxdvcsa7hj2467tpf57\",\n                        \"reward\": 2.305311090197758197135e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nwjw8xkvtxdrlc65vtjnqc73czz6vdvp33d78w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15y6dh6h4xm6lz9h3pf75v5jeekfwswkftr5jj8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1khhv78nax8qgyygutvxmfawz3t4taztqv4mrdm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.15e+22,\n                        \"delegator-address\": \"one1782xv62cx49zdhr474lt4emc97xnvrpt8d6yrx\",\n                        \"reward\": 34513439878076278714,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1yg5cuu5m8l92gsrkxm753vxe74qax3u2m620s5\",\n                        \"reward\": 282829972779521875521,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.99802720619e+22,\n                        \"delegator-address\": \"one1rf732ne5z74ahp79c39jpezz07qzuwz2gtwgyn\",\n                        \"reward\": 194269211924637643533,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 398301530809403204629,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.01884e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 672892765834461626911,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.887189e+24,\n                        \"delegator-address\": \"one19verfm5jyu9ys6s4nrzm6a8888kzdlvmqpenh4\",\n                        \"reward\": 9.548958921326029719298e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1drvtd8ry50teatkmucae2tajg7ngjr7cdk02ul\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12yctampe4hqeug668v48kd2tvm85j0u0lk9lh9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 212454620332555652529,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0556e+23,\n                        \"delegator-address\": \"one1983tu4snhurnned0n25jn55s4v7rmkknvqfu8g\",\n                        \"reward\": 5.814225706145454802291e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1j9g7uyg8kx5pkh82hpmuahcd6a3k347fdrg396\",\n                        \"reward\": 876906170474639996932,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.7e+22,\n                        \"delegator-address\": \"one1z9uyar8g43em3ejdm779qpy5sc2uaxcfayvr7m\",\n                        \"reward\": 2.645640901667945901432e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.51344e+24,\n                        \"delegator-address\": \"one1wvaxshh8c7kxda02c5pszvme564274x3uaywek\",\n                        \"reward\": 424573620235514170008,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+22,\n                        \"delegator-address\": \"one1qy9mum6mtp5j5u0y3ekaqn8quahvsezavxwu32\",\n                        \"reward\": 28487264318612679136,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sr39wfrc3ww0urs2p8cwy9a3vjpxlsg36apgyv\",\n                        \"reward\": 155295015662843022,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zf9gchjhtjnk95h6z7cf0duu76wllfmn44mr8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15v8eg400r3fg8789zzpt987e85lkdn7u0h9umf\",\n                        \"reward\": 546412773656745758955,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4e+22,\n                        \"delegator-address\": \"one1elgrh05nuesu9chyjlev8rlfexfsq4a87xtp2r\",\n                        \"reward\": 64493794980418288063,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.50005e+23,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 3.641830987727808770136e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nx3rcxupc465lyduzn2z3p0e6kvg3pfkrndttr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one17gvzdt059427y0razhx36ej86f5sdv3cgxh7fq\",\n                        \"reward\": 10353472652261690538,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.4715e+22,\n                        \"delegator-address\": \"one1yas7flqkssv9dgtlczy4l9rcqnpvq927v26jja\",\n                        \"reward\": 1.415261268971210630111e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x2t20n2rs5pxjg24duh8hkxq9fx9tk684qe4ax\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1yjf47da7ymljt09x8w44d8as3csvqp8czk3suj\",\n                        \"reward\": 469727733543278390065,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2e+22,\n                        \"delegator-address\": \"one1dqm6nv6vfa8ks7mnprnchzsk6zggk9zcs44al7\",\n                        \"reward\": 30703840393485044697,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1e+23,\n                                \"epoch\": 320\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 3.7411e+22,\n                        \"delegator-address\": \"one1j0nmr445gf35lskevtac7khtudt5vah27af2c9\",\n                        \"reward\": 14693010561531398827,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1muus26kz85zfn8lavcgxlt2n9zcxeza3d9tl4m\",\n                        \"reward\": 24064918418445527927,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17td8n6wa7l57gj727gl4u3z7hn7mpyftj9fhef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10ayjz83f0lrawxtpcryc4xrpjhtr4a8p9aure0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0384516825e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 5407659216198952553,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2e+22,\n                        \"delegator-address\": \"one1wyu4my3uhm8xmyacnm5k94a4psc532kehzn7aq\",\n                        \"reward\": 1.944433043856086264518e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one1ps4gky30d2y60q59ydu72l7dtch6zvvtmu6x0z\",\n                        \"reward\": 18300298369819590391,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one16xrctvk782mc4gx49nxl69789mu3qluj7zhtzs\",\n                        \"reward\": 85285834711827348570,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00343374927e+23,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 510545427260733385155,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333400000,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 1188683391,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.645e+21,\n                        \"delegator-address\": \"one162lm56fmu60u4hxqx23ez7fwjythhs8y8c09ds\",\n                        \"reward\": 261341060299228641953,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vlva5q8jhmuuhfxl7knhyy0vxctpk0v46fs9n9\",\n                        \"reward\": 866581505718200301,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ynw79cnv4epyxqhg7w5qn50fxtgkezwdltrx03\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16yvnyrac2nfaapm8tyraesa7khtg3d9tr786pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.54763687e+21,\n                        \"delegator-address\": \"one1fxtypxnzz0vll0vtpea2m8h9utx2vpqjjsmp3n\",\n                        \"reward\": 328798838842978684,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0fzq4shcj6t9mgp9whjd2wwjs5cum9qlq8x3d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kj6jtey9esdpwv4qpqsgldzqckpqe6padlp04k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.233e+21,\n                        \"delegator-address\": \"one1jlh0wxlpwkzxaqk536uqukkpqvczgcw57t0c5k\",\n                        \"reward\": 41318285410126544366,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1te2tfurcvk678g9j5u920l72jdz58fr0lrkpsv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one19jvw9uruqem0hehduv95km63947p4cvxfgnsg0\",\n                        \"reward\": 27973266054917946235,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8075929858e+22,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 87650846813653904624,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l6v5djd7ss7axpfxgr9rq2v2chp3trnvhzl7aq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.19e+23,\n                        \"delegator-address\": \"one1g4upvdt9xcnkc9mr5t0nf6pvm8ez7vu5gqk0c3\",\n                        \"reward\": 665962057256962262929,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one105nyzvqzrxlfa3h67najs8yr3q0vjmrpwh7d0c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qh6s6258xn27pstyxul6cg9nzq33l77dn3tx4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.218e+23,\n                        \"delegator-address\": \"one165stpdzl6c6pwdkt9f5xrad063e00symwyznd6\",\n                        \"reward\": 833236868245692035361,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.08944339079e+23,\n                        \"delegator-address\": \"one18cj3m04q7zwk27v2erw3ss5dakyh6xzc0kl8pn\",\n                        \"reward\": 154483672793480444409,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wx7e8m39hls5m9vcdygkr00gu74trys5de5npt\",\n                        \"reward\": 24093625974037533,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.375e+21,\n                        \"delegator-address\": \"one1h2kljdu542mrg6zjv33w9nfwt3lpxnzhn6dscz\",\n                        \"reward\": 15222660332883723607,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vcnek4wft94u8hyqnpgs8k7hxffh3ggjtgl72a\",\n                        \"reward\": 57685947482755111082,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l672kfy4fpvkmmg6d05unv8ln6sdq6lwq980lk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f7rrg8hraq6m9h6d5l3rp6y7kmvsgq4r5t7anz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0247e+22,\n                        \"delegator-address\": \"one1tzjapdswlu93wr0mjul2vggs8x5mqqeelk2pt7\",\n                        \"reward\": 17509320302808602107,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 44080768052034126357,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4410059167e+22,\n                        \"delegator-address\": \"one16pzrzly843qum2vdjdj7cua0eawxe4y7yc0m0g\",\n                        \"reward\": 1.322633801568086631923e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cn93rndj40fsdstmzs4sv62ufgch2g52y8lkrw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lnlt7l5930ut590ezlul7hmz6xhg7a64kf475p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.6e+21,\n                        \"delegator-address\": \"one17pddfz8pkfy74ktn0w3g8s5rs6rdanhx2x6q5n\",\n                        \"reward\": 46436435954997453008,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h3hrez2c4urd40mzn4en7x8vsnvy0m984fgmry\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1963vpvuj9x4l5defkk4dkx8de7lutnvdr8hvdz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pzgdvkce57c323l55l8nwkr6acrswtezlpwsgs\",\n                        \"reward\": 138583865847067684,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13k7vlreqgy80w4kvkqknpgsvp2ux92lwf0kssa\",\n                        \"reward\": 201295961085719972,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uclaccq744v8j9xzqhdwxncx0paduaw5ymgpz9\",\n                        \"reward\": 119528479457480101,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.75e+21,\n                        \"delegator-address\": \"one1fwlnqxr49vfeg9sxaxjn4xlgcu7drglm57qpdn\",\n                        \"reward\": 13486336051472805887,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one173aj6q5daans2nklgu5phdezfaeelnqp29jwky\",\n                        \"reward\": 1.23552423431007256759e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 23351470912783092505,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3711051727e+22,\n                        \"delegator-address\": \"one1s7uz9fdnsedu5ljxf7nw5tewg52s2d9z34clnm\",\n                        \"reward\": 284552599334548744747,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8475e+22,\n                        \"delegator-address\": \"one1svw5m8w4mztmp37l7p72tkglqvfvmfqluddjcx\",\n                        \"reward\": 21960958466105118371,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vh2pxsm52m73k9vedcppmx9jgrdawevkfge9er\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+24,\n                        \"delegator-address\": \"one1yxfylrfm3r2vee07kynwjc605nq5nu2suff4me\",\n                        \"reward\": 2.279431909110858028425e+21,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5e+23,\n                                \"epoch\": 316\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.5533645035e+22,\n                        \"delegator-address\": \"one1l8p7ytcsq2c97t75a5er6kqedw0qddgyjpd7eg\",\n                        \"reward\": 274226792254479487636,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+22,\n                        \"delegator-address\": \"one1ewhakak5wfhjlk5aulejksp5eapqpg2pm27qvt\",\n                        \"reward\": 95125197259873639165,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.012404595e+23,\n                        \"delegator-address\": \"one1km7cvmy6da8l7cj22htqtm9phs85auajepe8kv\",\n                        \"reward\": 274984412585435851115,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hy2mkkn4av7mfnwc7gn5ak3trcnq2mrg80297t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4074e+22,\n                        \"delegator-address\": \"one1xvyfjz4ypmcwqxvd7q28xp3jwv5xy7wa85jr4n\",\n                        \"reward\": 51703850607487584594,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4556063000000000000,\n                        \"delegator-address\": \"one1ga0r42vuw995ct96anzemx896an4dvwtu4snql\",\n                        \"reward\": 167742169924656221,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.100072602e+21,\n                        \"delegator-address\": \"one1870rta9syx7m8lpqqnxlu9aherka7utlx5hqvt\",\n                        \"reward\": 1309922172854350735,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7sx6j5pclehfmqvnsczfj6372lr6yx3v7zqae\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10z6ssedgr9a46ycyy24m4czy35qmjthcxft8z9\",\n                        \"reward\": 202176720239732982,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m30dzxrjg3kfmadzppan0y5lxvmenm4w0tc9yq\",\n                        \"reward\": 25134732487924599309,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gg8p84y09svpxa5xlqc36v4epwyjv8mk0cmrj5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one1jfswdzr7cruvpyp2t2ed5znun6uvku7ynqzq22\",\n                        \"reward\": 188955558252726014526,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qka5ahyct3k4hc6gqujedyj9xq3d68nj0ws4st\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12ql0r53jkrpv99h7eqhwy9fd3uaq9lcwdj4zeq\",\n                        \"reward\": 2695078869514828131,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14m8mtlzu6gk9557ya4nv004lew0ve2tf3kxhzp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l90q8v4v3erqv9ptuzhpuu6ywye99v7cc0c3q5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19u0l4vvzhqntlyefjgtxlcmnml99et7jk5nm86\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16cje0z4pswgck88eprtrd6v04jdy7n6vpcue3x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0433e+23,\n                        \"delegator-address\": \"one16feu33uzfjkn9tvqzaffjs08p4aztdltdukr9g\",\n                        \"reward\": 837469464951808189662,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 21563132644695716657,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17yk3vcj47jdm04p3uq2yqpm4sp57vjv9utlh8t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hdf03n7fdms7rakkekse7atftnl42vm299pcap\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one18prt8uam55vsy23j403zykx3uvxs6f7xrs4g56\",\n                        \"reward\": 439014246458023942017,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t29eh6egv870g44dwzx76d7awrwc04u4acmlsd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1df49l0afjgltkaheussp8e7y708ac9zuyfpfle\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5404e+23,\n                        \"delegator-address\": \"one1xuqzd8u0950vkfufylr2e8d4p5ud789x3alzf6\",\n                        \"reward\": 224294335857459205947,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one123fdvcj5dk4l55jz990fukssq7sryvt7v9zdce\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.058696272e+21,\n                        \"delegator-address\": \"one1wtel9v7gdfe6w3d8dnxjgts6gzvz3neqxcwhga\",\n                        \"reward\": 89094968733041335296,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.37e+24,\n                        \"delegator-address\": \"one1khau8lyy2hqesvve6wp33ful5d3yysuemy97w6\",\n                        \"reward\": 1.1056263706120518852339e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6160337333e+22,\n                        \"delegator-address\": \"one1j3frzp0l0ex0zhp4ft7w6kp9n8rmnj5962gasr\",\n                        \"reward\": 9940211493322607491,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 1.328670895884857959156e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2e+22,\n                        \"delegator-address\": \"one1xhguj2npkujvlkgmvw6ez4j0w4wn2qaeg5d5mn\",\n                        \"reward\": 97375917839327194383,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10dc350yl5g9sqlfkphcstq4rhdzmhnyxa5mn0e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0888534e+23,\n                        \"delegator-address\": \"one168d7cx7r3f3el9ytytmz04vpmnlv7a7mpyqsf4\",\n                        \"reward\": 41528362553485263332,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kh5pn90gclnqwm2hwe7d44nzywes4r7rxjmuah\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one134ujy0hvfu4eksfprrpawyn6szkmg74cdd6zwf\",\n                        \"reward\": 426978696338873739709,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1643ly0hpr2kssjsgpmhtrrq8hghag42xl560dv\",\n                        \"reward\": 50023996855897602,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ft9sknz8cuq5sc4p9nhvuyysu2ejhsznjqntv2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 1.2031934889939234758988e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14x79dn9qunnputr3n0z3594ve7lla77vc3wjrr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8pu8pwfh7q7x8e70ptnztwdk6n505adm42yva\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16lexpnvm40w7dj7u328stxdnxyzv4n6ypd9qum\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.84975e+23,\n                        \"delegator-address\": \"one180mfv4dneefp9g74duxhspjvkmcjffstd0sj6q\",\n                        \"reward\": 2.117581378481111731684e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5201e+22,\n                        \"delegator-address\": \"one1nrd84ldj3ldtdwz5ktrcqvvekuavpeypwz3lpe\",\n                        \"reward\": 134997658075545956266,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yzw0t2u950des2ht08n0secrpaqpmvg7pkmqtj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u6fkwz2vmaaaxttsgn49r3fsyxcckyysrsme8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q22gqh06q0ct8h23ey3f5crj5wc2ps9avvf8ax\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n                        \"reward\": 253370708266562010727,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuw02s26lxyy8w9k3y9crfsxkq50hfs045s9yk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one10zsqhjwjwq0wuda38f4y3d7wdymfkcrfkmezqz\",\n                        \"reward\": 27497242651919884942,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z62wq6ucttx2ksj5v3s0vk0hup7xg0yez8qkyw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10zsqm4mk7gc3n4z6xtywr2am0jnmq283lvwrlw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one10utt7kd7jnjmcyq50an7d32jr5exdfzdps39lm\",\n                        \"reward\": 10665765928363559072,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.03e+21,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 13974051525216725664,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s8gms2ryuzghc3v0zqcasyfx4j2pkmtuskwgn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.17573513487e+23,\n                        \"delegator-address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n                        \"reward\": 1.0878374742249461434855e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qup2xu4zj2m7aeld7z7cjkcw8fpspfaprs4tc4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x735wv6fqlkfd6n6s27h7td3x6t8qhkpzkevxm\",\n                        \"reward\": 243393770693476065,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+22,\n                        \"delegator-address\": \"one12kkwq0tg6u67p8kp9hgsx5yqlatzmm3vwlfvvs\",\n                        \"reward\": 1.162047068529534689891e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tk90nrhjww9dw46vvm6gh3rljrweckcxf76jre\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1kf33vtpamnr5xraq8lf88rnkeagf72payxmulf\",\n                        \"reward\": 2.869221303666429581113e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14xvqeuw9v6mqarw5uathtys6wc3r228sdyp7hg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zn5axvgpx23t606xs0t59qf8xfc4fmavkh4ffc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.262e+21,\n                        \"delegator-address\": \"one1s4604lg40q9tvzaaf3wp9rtr3txzl2796p6dgf\",\n                        \"reward\": 12478649451793348053,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19zhpgyhd7qlcu09yswqqqdq9lkajwzqntz98rc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.021e+21,\n                        \"delegator-address\": \"one19h2v4fe9hggd6w77cv36qyss0qkg073xa88srh\",\n                        \"reward\": 12962850136779355058,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.49599992e+22,\n                        \"delegator-address\": \"one1gnsker2z6sdepd0a9xm644tlvc4m2x9kgdd2ns\",\n                        \"reward\": 56738011029672498836,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1e+22,\n                        \"delegator-address\": \"one1axx0khq6c7sf8y5qed70yengk0elmqezgs7sjd\",\n                        \"reward\": 3761603315385448208,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 100000000000000000,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 1327822839019952,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qn9jwx2mrj7jx3tzls7ejhtc2n8k9r408u53gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.491974716315e+24,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 3.761881894840861951188e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2222222222222223e+21,\n                        \"delegator-address\": \"one167hy5watz30yev6pdw4wn672puf9pwxadm080p\",\n                        \"reward\": 49399853134492172183,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 6225920877968733204,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dxp2cj58k4cnurxpm5z9n2uu60rjqlwtt25gfj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16n9hxeww8hefagsu9anaej3cn5ggt6uu8s9xqu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q2v8nqnk8gflhscwl7mz2pfmwljk440dd7wjan\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4916965134e+23,\n                        \"delegator-address\": \"one1yr5caqp7y264l5ywyh3c3xlu776dya23zh0a8e\",\n                        \"reward\": 338746592186429984295,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19x42kdzxjfeqppjsvag3gdy3md3nmxve7stuq4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.07084326483e+23,\n                        \"delegator-address\": \"one13umzp7lsmgtdpnlmw73fv3fseu8w70jtj2cqhz\",\n                        \"reward\": 674733846037823176706,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eaf67zmhc9sjqn5ag9cjwv3zwpw0shthj6yn43\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.10377325e+24,\n                        \"delegator-address\": \"one1mgesvhk7yhyc65mr9yardtsmgkyafxn8myfy3l\",\n                        \"reward\": 176369537021922984539,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1n55puv7gmz74wjnskgvqeqc7tswjh04sjdyjxl\",\n                        \"reward\": 1.033658992611683355361e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one18yr4x62lnecw7avdk89lk4l02dwuzv6p7qpr7a\",\n                        \"reward\": 13508460684897123113,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.625009208e+21,\n                        \"delegator-address\": \"one1cjzgsuv7jcz2wqq8mvnuvcx5rf32d3dhvus55a\",\n                        \"reward\": 54738210400109811865,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.371124418e+21,\n                        \"delegator-address\": \"one130d8hfdqls45qv5937pszl7pla3094tkgluhe2\",\n                        \"reward\": 176480486344657967108,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f4rp0r5f0sa0a7n9a8e5hzn4fy030ntt88lm7u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zctfnssn5frpfz9ms0dn5l5dkgl66mjyujdz39\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.182514e+24,\n                        \"delegator-address\": \"one1c6m2w8t0p3de3cjleu2t2duvspas6366jtf8da\",\n                        \"reward\": 1.3869284524856587618754e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kcmct2rrvxhy0xalrjzgglcmmytdw26phzxg6v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfztqgaqu500unnvthwv02dv7ruemqrpvvr0gj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15twl6n78kduxv0fyv9808uk8t4n5smk2r47pv0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ttswzlnv5ysk8rzfsfrv3fsz8xn0llpfx3ex5u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one109ga287k9pkqg3en8jg2hw2r89tny663uw5vhm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fu54c62wcqq2uhswlnp62kvgh6uwq4j69ke5rl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n2yfzq0py7wkar3sudx2tjnjwl2yl0k8gekt52\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one148m6s5n2j27kst7genyypuedmer4jevvw8ay4j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+23,\n                        \"delegator-address\": \"one1phdtx4h7azqtqwa5kmr26xz3pf5sq35wxppp78\",\n                        \"reward\": 1.3248927438330404959288e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rjyg5f8cq2utrawfe2hyck96ac7z67j4efgswm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.38e+22,\n                        \"delegator-address\": \"one10m3e5x9lp6splhh69fw0tfvulrxhtv60vpkzrt\",\n                        \"reward\": 900927065806467591508,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h7y8znxfcltckram228ru3y8cfpuvwmg5pnpqq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3808e+22,\n                        \"delegator-address\": \"one1lfatngvwgecp3gdclsa6qns7vw0244dcpvknhx\",\n                        \"reward\": 550405407336505525101,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.333e+21,\n                        \"delegator-address\": \"one1lw65t2wvqvc7ahl0ac0xafjvpu47h8fpdlurua\",\n                        \"reward\": 67708235388987846306,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hj0ep089pnwqz4gvl6qxp4unpyd6u8xmntgx8u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ftuwxsz7e4qdt9a8gwgn4688d0q73gqag5crs\",\n                        \"reward\": 891315965816533603,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuqvgn99dnglxr2u0mae0jaax9ldm6rzg27g4s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.6093800212e+22,\n                        \"delegator-address\": \"one1tq054362ng0lupwn0de80edae4lp50fxlgtvqt\",\n                        \"reward\": 99846746583307738226,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 909090000000,\n                        \"delegator-address\": \"one1h0hh9ukt4h8h4vp8epn7z74gu8k63k95qsculv\",\n                        \"reward\": 10066550795,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9599e+22,\n                        \"delegator-address\": \"one1l94fdaatjz97d3l6pjg77pqp2aq4vrzcwt9jxy\",\n                        \"reward\": 684385434261318797700,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.69473e+23,\n                        \"delegator-address\": \"one1dl4w49xl533rlnk4am8f5nmasc888syjlfqrnj\",\n                        \"reward\": 150469405511212944124,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1940xav3v8j2z7fp9rj4xz009y2lpjgrglse2gf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfgwkf2lney0r2sq4hsy3vhpvwcxf33qpurtpj\",\n                        \"reward\": 314129344324081985,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.48461507449125e+23,\n                        \"delegator-address\": \"one13zdsyuqnmqh8005mr0xrp2hmdwq48hd5a02940\",\n                        \"reward\": 764014832907605545256,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jjgx2xu30d0h6ga590c2c0gt3xw5qsyaga25lh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hrxguavlwkmrjl6xdeh3hjkk85fsej8kg8nm6l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gsghhyd2tpf4my8ave7nm4946ypytjw0sjsa70\",\n                        \"reward\": 261872272086320637,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.53000401384e+23,\n                        \"delegator-address\": \"one1unmae47j2w3q9vxqs8fjpa33u8eu8w5dfsuh5w\",\n                        \"reward\": 2.93421345542201184506e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfuaaaptpgpk89zajufqc2f624kxxxhggj5dme\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.418757976e+21,\n                        \"delegator-address\": \"one12nr92s52lclc6cuk2w6cenrfwqam98v20007fn\",\n                        \"reward\": 74686695640061408040,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one13eh8wsk8wa8ag96qjrdrgh2g8ecx8vpwc6q73t\",\n                        \"reward\": 1.658220301324058762043e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.7682e+21,\n                        \"delegator-address\": \"one13x2elg0a43g3t4ptcny5p08z53sjf4lny0z5d5\",\n                        \"reward\": 238535132894037141349,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.77575e+23,\n                        \"delegator-address\": \"one19ckxmvgg6fh486vljsaaye9ys2z508j6ufg498\",\n                        \"reward\": 3.832849524868074847081e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.8125e+22,\n                        \"delegator-address\": \"one1uty6xd9zmatpc8geqves5l56kxea8qa2dwf7nn\",\n                        \"reward\": 397811579105888605746,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e7kq76c4g32ur60n6l7n8lstznxqvtjw9t2pwr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.240143216e+21,\n                        \"delegator-address\": \"one1xwzad7aha0h77hulz0uc7uzmsqrjl858xj9h45\",\n                        \"reward\": 36984888383416869005,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.6409e+22,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 140356467786786687095,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f3lldsahvllls785vejr8saun87fcnv20vczlh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.56349e+23,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 317893634791678517501,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.88876999e+21,\n                        \"delegator-address\": \"one1q7frj9luhffqvg9hk0f4kv3xrux32gpcuyz84j\",\n                        \"reward\": 13835140099537473475,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.045e+22,\n                        \"delegator-address\": \"one1ptals0gsldvgshff7q873xjua8jfltfnuxcejj\",\n                        \"reward\": 18966956973576148899,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.41e+22,\n                        \"delegator-address\": \"one12xk2yqnla9y5qn420dgjj73pc7jzmgptktlg82\",\n                        \"reward\": 62848254066245935598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.14e+22,\n                        \"delegator-address\": \"one1ln66zgvc2krv9v7hqauws45ktnal6jmws2c0fa\",\n                        \"reward\": 9198541574352954387,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one17fk6vrse3qw5hnst66xdwfgsy6rj7qfgxuf74u\",\n                        \"reward\": 186188696851385189382,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.45485100129e+23,\n                        \"delegator-address\": \"one1c0nltn3c25cvfzu0yl0p4f02nh9ue3j28v8j3j\",\n                        \"reward\": 500842337568049746358,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.61e+23,\n                        \"delegator-address\": \"one1qwvh9ay9ml0fvgsuxgj9qw6h24flj9fwv27xvp\",\n                        \"reward\": 4.400056150794040954101e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one12day5jc36muy6etweyq4j4mkcn5eejr9kvp3jr\",\n                        \"reward\": 11813610097275593983,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1necw0ft8tykzluhdxyrnsdacdfp2yc2fp0sk5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f7wlxgn4zs2dy9gfmt3atqwmmp9le2eretugqg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.08e+22,\n                        \"delegator-address\": \"one1r8tp2vyuq5aud4jq6qfurv88kaer2xue8arteg\",\n                        \"reward\": 122539179582677417503,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.872765197e+21,\n                        \"delegator-address\": \"one15cfu4hxfx2jrqlxsx8a46s9mztpzzlu007teek\",\n                        \"reward\": 40854811289086601839,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dsqz5qn8pv58nnudvnn0ngm6f9dr3d4t8dcvtn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.990517274e+23,\n                        \"delegator-address\": \"one1fq2vrewysg5pfjykjzpqq37rpe53ya0utjraff\",\n                        \"reward\": 1.766018497812593961694e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.28e+22,\n                        \"delegator-address\": \"one1ka4shjasftw2hm6et2m46zeppce2gw5z9dxkg9\",\n                        \"reward\": 184287609881867663273,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1u97te20xm0j4tj554gawe7yzpa5yhlh3086vsj\",\n                        \"reward\": 133256192426823325,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.33334e+23,\n                        \"delegator-address\": \"one1nycq26mln9yh47zq7t6kmynnkes92met2kumk8\",\n                        \"reward\": 731567735885991246302,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0166e+23,\n                        \"delegator-address\": \"one17wdddq5yhruk5wvths70m0sfey2c0tn8mv23dd\",\n                        \"reward\": 208692539485506112586,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.04516862909e+23,\n                        \"delegator-address\": \"one1twzqd42taqua2r7auwsxzwcrucfwp9uu58tq35\",\n                        \"reward\": 689188199947702542360,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1we498tld7qwaxz8asjz6nnj4chdtyc0gvwyw4l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1qn0cc0626mwnsh53s2dtjgvkz0fjuwq3yddu2m\",\n                        \"reward\": 5984220848687223318,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one17zygwwlpv5pklsw9uh63mk3u9hv0dl894yguvr\",\n                        \"reward\": 59842208486873741916,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q6mcd27ne56lfwkp7f8t5aanrgacjcnr68fhhg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one1f2ctrtwl3cwz50recdg52lalk7elnseaf8p2n5\",\n                        \"reward\": 182229009796193990,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1ps75yrwelc8xzdkjm02t07lg9nen84xyj9772y\",\n                        \"reward\": 1012924918730074954,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.48194958e+23,\n                        \"delegator-address\": \"one1d5x28z4hdfzklecellg5nw5as037w8fef52c72\",\n                        \"reward\": 2.413968332850897279948e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2352e+23,\n                        \"delegator-address\": \"one14m8pwzsavv9gzrrpkmhucrdl8w277tj053k0cu\",\n                        \"reward\": 1.258939282965413216573e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6128e+22,\n                        \"delegator-address\": \"one1sx73lw6kzlfzz973zas7dctkykl0udq9vcsvjz\",\n                        \"reward\": 124203393992567186200,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 47536510254350813804,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.672e+21,\n                        \"delegator-address\": \"one1pe9q4myhu7ydcwx55xzhc3ttfrrg69dyty90nh\",\n                        \"reward\": 17887863050096840329,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.96404856e+22,\n                        \"delegator-address\": \"one1trrvvx02lqwjjrk3ser22wu709ftv5qxpve69z\",\n                        \"reward\": 15248607597156945025,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.020506147e+21,\n                        \"delegator-address\": \"one1jhpnl5sfvt0uqltzhfz45e6pu9nfe8sf8mspnx\",\n                        \"reward\": 5268807781718551629,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+21,\n                        \"delegator-address\": \"one1zanz6rxvzm6j7sgewt54x6qant3grn74rt6lwd\",\n                        \"reward\": 4585607962569944822,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.105e+21,\n                        \"delegator-address\": \"one1rqyhjshucys3xc4zvdaek039r5u6qleefgm5au\",\n                        \"reward\": 3897766768184512610,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one1tp4ct4vvn7crhn8nl3edpqy44rentlprpwqs6n\",\n                        \"reward\": 6445438648331924697,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one13guglgwq58rcpajjwv9nr3gkw2jk08w6k9ajjk\",\n                        \"reward\": 2633629268272404886,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.133e+24,\n                        \"delegator-address\": \"one1fta8pe7j5xntgff4msjlge3amkuh0jpqzq9whg\",\n                        \"reward\": 92802999327952239425,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 666660000000,\n                        \"delegator-address\": \"one15fy3rp6rnfx5em94jsy7se9jmhl6xrczpdtpyd\",\n                        \"reward\": 1355919935,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.55988666666e+23,\n                                \"epoch\": 314\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 5.31e+22,\n                        \"delegator-address\": \"one1x20d2e0lad9lraysg0c7dzaw5uc385l50z72tv\",\n                        \"reward\": 76646333960253953132,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5002722e+24,\n                        \"delegator-address\": \"one1ja0mukfvmk7dlnx6q67kq37rtlrmegfaxdakm2\",\n                        \"reward\": 979706254339889180017,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one193rjfmhvf9yyynu44e82txjzwthz0jfemnszd9\",\n                        \"reward\": 55416807242574914035,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1zxqpmswjduv3m3lzu33mhgxwr7cyv59ezfppjc\",\n                        \"reward\": 13854201810643662094,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.000000402e+23,\n                        \"delegator-address\": \"one1w4ya9t7qv5k4ez559afr4gpuvajumqcwcyszc4\",\n                        \"reward\": 71118965935160164311,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.039999835e+21,\n                        \"delegator-address\": \"one17uhgr367pxcxhmga8dc5hgzg82qca34vzj7tne\",\n                        \"reward\": 787489499743964485,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4999995302e+21,\n                        \"delegator-address\": \"one1xd5j3yzw84jf5zh0mdtdefduegj0qs00ffy0xj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"We are a team fully dedicated to the best DPoS. We offer our services across a variety of protocols, including Harmony, Tezos, IoTeX and Icon\",\n                \"identity\": \"Multi-protocol validator with over 5 years of experience\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.250000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"StakingTeam\",\n                \"rate\": \"0.049000000000000000\",\n                \"security-contact\": \"https://t.me/stakingteam\",\n                \"update-height\": 3784659,\n                \"website\": \"https://stakingteam.com/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 28916,\n                    \"current-epoch-signing-percentage\": \"0.993950226866492507\",\n                    \"current-epoch-to-sign\": 29092\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"11568743170613593221500000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.115528059048016528\",\n                \"blocks\": {\n                    \"signed\": 4102200,\n                    \"to-sign\": 4142556\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.120503099329025000\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.120924560165576743\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.121466815741074856\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125572661426444950\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.118509525621780445\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124495167811092105\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123209256550436635\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119195545699407883\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116138740165111321\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117352363344012327\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.113754835275306478\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115867241518208801\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118326945099390926\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.117612360347925788\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120062114275555237\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118631550537725825\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118063527500604445\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119695630130426767\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.119693203593475888\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.119120512832686746\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119503288208308196\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.123159277394162624\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.115753323336637640\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.116977073885773689\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.115929964053746382\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116615055711328873\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116919583772747651\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.116998708666400756\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.116819770409992817\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115793490257846716\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115528059048016528\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 32617,\n                            \"to-sign\": 32962\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32378,\n                            \"to-sign\": 32852\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32581,\n                            \"to-sign\": 32858\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33473,\n                            \"to-sign\": 33500\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32816,\n                            \"to-sign\": 32880\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32680,\n                            \"to-sign\": 32854\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33905,\n                            \"to-sign\": 34004\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32641,\n                            \"to-sign\": 32872\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32674,\n                            \"to-sign\": 32834\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32775,\n                            \"to-sign\": 32908\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32599,\n                            \"to-sign\": 32978\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32792,\n                            \"to-sign\": 33234\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32687,\n                            \"to-sign\": 33054\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33452,\n                            \"to-sign\": 33490\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34345,\n                            \"to-sign\": 35080\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 37032,\n                            \"to-sign\": 37050\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33428,\n                            \"to-sign\": 33438\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33062,\n                            \"to-sign\": 33068\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33107,\n                            \"to-sign\": 33112\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35647,\n                            \"to-sign\": 35652\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32949,\n                            \"to-sign\": 32960\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33010,\n                            \"to-sign\": 33014\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33040,\n                            \"to-sign\": 33044\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34307,\n                            \"to-sign\": 34316\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35318,\n                            \"to-sign\": 35320\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33951,\n                            \"to-sign\": 33956\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35478,\n                            \"to-sign\": 35492\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35687,\n                            \"to-sign\": 35694\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35777,\n                            \"to-sign\": 35780\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 38573,\n                            \"to-sign\": 38668\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 6.78688202155367438472957e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.529697692880366863357e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1efe44ddb21ca28cf2d15e357a0ea292e57bea000981f2f467163030cf70549412c0529a3cf774d9eced7e61526ff402\",\n                            \"earning-account\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                            \"effective-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"group-percent\": \"0.006022605734398797\",\n                            \"overall-percent\": \"0.001927233835007615\",\n                            \"raw-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.531020031197870494927e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"202770994a16d8bf6ed5d8c11985302352e5a9739588236c0d4d1a2a99c2dc97a74542b7cd30a7f6515b6e36a44f8c86\",\n                            \"earning-account\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                            \"effective-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"group-percent\": \"0.006022605734398797\",\n                            \"overall-percent\": \"0.001927233835007615\",\n                            \"raw-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.15687431706135932215e+25,\n            \"validator\": {\n                \"address\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                \"bls-public-keys\": [\n                    \"1efe44ddb21ca28cf2d15e357a0ea292e57bea000981f2f467163030cf70549412c0529a3cf774d9eced7e61526ff402\",\n                    \"202770994a16d8bf6ed5d8c11985302352e5a9739588236c0d4d1a2a99c2dc97a74542b7cd30a7f6515b6e36a44f8c86\"\n                ],\n                \"creation-height\": 3358987,\n                \"delegations\": [\n                    {\n                        \"amount\": 5.9955518792614598885e+24,\n                        \"delegator-address\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                        \"reward\": 1.74884875087194092424e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0670847307068e+24,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 2.348526871824802393744e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1qfs3q0mwzmg3dsyzc6vf2telzx54t0t3zlc8a7\",\n                        \"reward\": 254959935170534584936,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d235ehhlcdec9vsg6vua3j6gq2csz3u9hvju0e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1la2fefj8hfwg33ww4l2qcsv2g7zkdxxp3gethz\",\n                        \"reward\": 1.2234722924315419205333e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zr3y8tr2l5djdff5wjvtf0ec6j2shsp6rp5j80\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kl6wxrxhxualmrl5fshqzvs4unq5cc38esf85q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x8kgyyqgslzrm7jrlj4m7rpg285etdywjk7gez\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 2852794095461744987,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nwjw8xkvtxdrlc65vtjnqc73czz6vdvp33d78w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a9x2hfav5a2q378mpq5zcydvr2s6eekh7swdu9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 4.1695170469617162180136e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.03294e+23,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 222303651237039530449,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+22,\n                        \"delegator-address\": \"one1dqm6nv6vfa8ks7mnprnchzsk6zggk9zcs44al7\",\n                        \"reward\": 18212981748934302241,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.5e+22,\n                                \"epoch\": 320\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mwhe2kjsxs3fvr8th39nhkgllcap4cplr5pdx3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.000009998e+23,\n                        \"delegator-address\": \"one1vkncynzf0kegy80nfa0ppfnktg4ltr7dvlzag9\",\n                        \"reward\": 2.019430474891642822206e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 7814077044090492045,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dztpmj96q2f7rmu8gl8hne8k2z84s8tjmmcj4q\",\n                        \"reward\": 106202696210725239,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05e+21,\n                        \"delegator-address\": \"one1jkpam6q00rgw2rs9hzch665tvjkrs5849p3axe\",\n                        \"reward\": 21060061198673005996,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 2042981289780510975,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.89293560845e+23,\n                        \"delegator-address\": \"one10udw2wr0xkuxuefx6rfhuwgkkchsh2sdl8lyc8\",\n                        \"reward\": 378226672613276923599,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5e+22,\n                        \"delegator-address\": \"one1uvu4uq272045stknx5a9fssgf0ghgen0sydrkz\",\n                        \"reward\": 220882150025265394954,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l90q8v4v3erqv9ptuzhpuu6ywye99v7cc0c3q5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 1284196775706145625,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k074luf6ea2geuers5k8nsc0fwss0fkx8gl624\",\n                        \"reward\": 1349238166209139078,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 119418049060908295822,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333000000,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 107965919,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lees0cc4dxv9xdr7qv3mm4gwfrdjacfxzxm244\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one17efjyng3k8yvm6ssmaxlv36l9r8ua28y0cuxp6\",\n                        \"reward\": 27912467742993080967,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grpk6706ct68pwcqr3vjw60xcuwjkerau7d9ww\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1wec2k54hfe5s4aksjwd3tpdvxuj72wtpsnre40\",\n                        \"reward\": 63431741997425467182,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17vtxary4re3shw5wvdca8satnj4ycp80dvesvg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f3lldsahvllls785vejr8saun87fcnv20vczlh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jy0uvsvx6kkv7pg3xl65sywf4875d3fasw4qde\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9468e+22,\n                        \"delegator-address\": \"one1w49v7fl2zsz6hk42qqcs59dftdd4mvmr8wn4xj\",\n                        \"reward\": 970560789579410951649,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Creator of https://github.com/Robovalidator/harmony_autobidder an open source program which bids for your validator by managing BLS keys. You never have to set an alarm again for election.\",\n                \"identity\": \"robovalidator\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"RoboValidator\",\n                \"rate\": \"0.069500000000000000\",\n                \"security-contact\": \"hsiung@gmail.com\",\n                \"update-height\": 5423584,\n                \"website\": \"robovalidator.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 72702,\n                    \"current-epoch-signing-percentage\": \"0.999244058990887475\",\n                    \"current-epoch-to-sign\": 72757\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"26593978797054058333000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.119504230260352090\",\n                \"blocks\": {\n                    \"signed\": 7803843,\n                    \"to-sign\": 7845029\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.132561604776586799\",\n                        \"epoch\": 288\n                    },\n                    {\n                        \"apr\": \"0.131589386168049710\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.123046675059908151\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122784511652263164\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125900551499111163\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.091507571923916258\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.128137874299936913\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.105696214592078312\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123803732576371181\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119903494720246858\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118139443274059028\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117465650287358533\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.116331404090511324\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.118506157031140946\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121467397337339844\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120878781142729879\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119093141703581925\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119298341883299543\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.121619860611890034\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.122775704917107261\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122187525085597601\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121189263885437904\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119058420776010499\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119512350142093382\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.120180056098920187\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120111498208871937\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.119756642762091660\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117386015011214592\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.119286369181849860\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118964371344450411\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119504230260352090\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 82300,\n                            \"to-sign\": 82403\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82004,\n                            \"to-sign\": 82114\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82080,\n                            \"to-sign\": 82153\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83653,\n                            \"to-sign\": 83752\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82112,\n                            \"to-sign\": 82232\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 81995,\n                            \"to-sign\": 82076\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 84850,\n                            \"to-sign\": 84944\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82037,\n                            \"to-sign\": 82129\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 81894,\n                            \"to-sign\": 82025\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35,\n                            \"to-sign\": 35\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82952,\n                            \"to-sign\": 83090\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82451,\n                            \"to-sign\": 82632\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83545,\n                            \"to-sign\": 83706\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 87570,\n                            \"to-sign\": 87695\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 92450,\n                            \"to-sign\": 92622\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83391,\n                            \"to-sign\": 83563\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82514,\n                            \"to-sign\": 82667\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82708,\n                            \"to-sign\": 82824\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 89026,\n                            \"to-sign\": 89153\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82208,\n                            \"to-sign\": 82381\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82264,\n                            \"to-sign\": 82497\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82452,\n                            \"to-sign\": 82584\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 85630,\n                            \"to-sign\": 85800\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 105624,\n                            \"to-sign\": 105904\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 84701,\n                            \"to-sign\": 84852\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 106207,\n                            \"to-sign\": 106444\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 71301,\n                            \"to-sign\": 71397\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 89373,\n                            \"to-sign\": 89455\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 96490,\n                            \"to-sign\": 96575\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 9.36540551387127956301787e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.423157836463665626356e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"651f1e3a45a54e2a046f9c038fbd21e990bc911169c16e4518f235fb28c7a36e83e7a70f3eedf2bcf83637973f63d291\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"group-percent\": \"0.005555082415200909\",\n                            \"overall-percent\": \"0.001777626372864291\",\n                            \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.463509668883542235921e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"960d35be94f9915fb5e6f9127726ea6bc1ace83e34923b0157328ad4e85cec2463b36d0e4950ec645ef2d03f01c7db93\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"group-percent\": \"0.005737511287116687\",\n                            \"overall-percent\": \"0.001836003611877340\",\n                            \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.4631467327080136158e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7d9b1e9fcf190e3f201fd7a7df3b86d669001063884152c3ef824859e25c9e45fa0b00f59d81c62b807ffca0f8f37c13\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"group-percent\": \"0.005737511287116687\",\n                            \"overall-percent\": \"0.001836003611877340\",\n                            \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.463494580893309756001e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0a551033f14306b088545b07ee0f8919b6bbe41d1fe220dc37749b8fdc71ae01dc520f786c8dd3af4bc9cf1fc4b4168f\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"group-percent\": \"0.005737511287116687\",\n                            \"overall-percent\": \"0.001836003611877340\",\n                            \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462277878523139377235e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9f9249854bacdd414da45d2934cdfbed122a12fc34d8722616ceaa4633112bcecadeabfc8610f95aabbe4af5014a520f\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"group-percent\": \"0.005737511287116687\",\n                            \"overall-percent\": \"0.001836003611877340\",\n                            \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 2.6593978797054058333e+25,\n            \"validator\": {\n                \"address\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                \"bls-public-keys\": [\n                    \"0a551033f14306b088545b07ee0f8919b6bbe41d1fe220dc37749b8fdc71ae01dc520f786c8dd3af4bc9cf1fc4b4168f\",\n                    \"9f9249854bacdd414da45d2934cdfbed122a12fc34d8722616ceaa4633112bcecadeabfc8610f95aabbe4af5014a520f\",\n                    \"960d35be94f9915fb5e6f9127726ea6bc1ace83e34923b0157328ad4e85cec2463b36d0e4950ec645ef2d03f01c7db93\",\n                    \"7d9b1e9fcf190e3f201fd7a7df3b86d669001063884152c3ef824859e25c9e45fa0b00f59d81c62b807ffca0f8f37c13\",\n                    \"651f1e3a45a54e2a046f9c038fbd21e990bc911169c16e4518f235fb28c7a36e83e7a70f3eedf2bcf83637973f63d291\"\n                ],\n                \"creation-height\": 3359061,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.2e+24,\n                        \"delegator-address\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                        \"reward\": 5.035055332679448036481e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.382304e+24,\n                        \"delegator-address\": \"one1yxfylrfm3r2vee07kynwjc605nq5nu2suff4me\",\n                        \"reward\": 2.08651479148184479606e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ds5h88zazdwnc8tk8j2m0t0wk90x23jcj2dyks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 1.09250217978103942988881e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1940xav3v8j2z7fp9rj4xz009y2lpjgrglse2gf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 500000000000,\n                        \"delegator-address\": \"one1588j47yhfdn89pm56g0r0scj487hu8ggvgv3da\",\n                        \"reward\": 2410243872,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tx90spqxyluzhe59jxenkyza296u8fgpqvzfef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cvn9mn9zhww75ynp6a9ul8wrcg8lt6lty6wfvk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5345e+21,\n                        \"delegator-address\": \"one1h7dzamwjvfyt8zfjgnuxx247uuplj3fyns7gpg\",\n                        \"reward\": 25894098682714393548,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.567970246727e+24,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 2.1791112042386361746e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one133rvnuneyvq5upwu2azeh6h8xx8n3ph2ztktx9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1hj5f373l2lgc7eu36zzpczvnspsckhc9x236jm\",\n                        \"reward\": 63123101748710967674,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g4k8j5a0d032duwk4ns9qcv0lgrtr8370t2s7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.638e+22,\n                        \"delegator-address\": \"one1l8lkqr69rmw0lw95l75sln6e2y7l0cjj8ufysc\",\n                        \"reward\": 167105579145944321557,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333000000,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 115288825,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e7sj9ark98yrzax3yyl0nvnxxtqcc2s6kk2r73\",\n                        \"reward\": 242412397658966824,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one10utt7kd7jnjmcyq50an7d32jr5exdfzdps39lm\",\n                        \"reward\": 33002424149420107286,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zefkjl7rh92ppn7ds67cap0yjrduz8923szdmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yzw0t2u950des2ht08n0secrpaqpmvg7pkmqtj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13k7vlreqgy80w4kvkqknpgsvp2ux92lwf0kssa\",\n                        \"reward\": 4777861585597538596,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16n9hxeww8hefagsu9anaej3cn5ggt6uu8s9xqu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1umwmahvkvf6pwpmw9wcsq02gjz0v0k4sss0c3r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1fpxaqadep0s85duxhv6mm2562nrj8p022xrjp5\",\n                        \"reward\": 60351667266141886908,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nl0xvlleputa5zzr7rz6ah3x4h99hcp6ke3dzz\",\n                        \"reward\": 26374359492987760,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5260628728e+22,\n                        \"delegator-address\": \"one1hcl5swxvs3t5lx2d9rr02004dgmcxapu7jfdkp\",\n                        \"reward\": 45231220321455717544,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u6fkwz2vmaaaxttsgn49r3fsyxcckyysrsme8r\",\n                        \"reward\": 32871518157043761,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 38254239824691492809,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fzne3d2ndvxpx5vx0v2te7zzjprkgcryckeuuk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4833635817e+22,\n                        \"delegator-address\": \"one1nm9datcza5wktzjgvyvwwez7ue7puwxlklna4r\",\n                        \"reward\": 239819547798696546561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lx34qanhz6vqkrjwvtuefnapqw0dnpnadzqq9k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zn5axvgpx23t606xs0t59qf8xfc4fmavkh4ffc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xjq4xf4uhd9fyszvm2aw63j4hvhcddn0aq4hg7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.09000035e+22,\n                        \"delegator-address\": \"one1hue4jpfq8thffmsxdl7gu4u35tf86hsacz4pqe\",\n                        \"reward\": 77903456224225017710,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vle69v9xswf9fttr3mn77k4pgsgt5pr3d9hm3c\",\n                        \"reward\": 19496452096334288784,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5611877126e+22,\n                        \"delegator-address\": \"one122uq95m7t63rcvy6jd8jwgf96x8hfv63q9m9hh\",\n                        \"reward\": 80466000543460112164,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.27e+22,\n                        \"delegator-address\": \"one1k6gjkt0jk5hqch6dwmu3xj0qcuh5krg6aemupq\",\n                        \"reward\": 923502215677821164070,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xsf70cu7uuu5k6f0kpxp9at8r4dmg0sttzx40t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dqlljeense9cz595wnsvmkyp47dur62803x7cq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy63k9kp6vgmrl2s4fpw8kmwn4dl96vrdhlpnx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.002e+21,\n                        \"delegator-address\": \"one1v9yk732v6e3reamu33zgt57thpg753vyazuj2e\",\n                        \"reward\": 15745117282548067689,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.80000182473e+23,\n                        \"delegator-address\": \"one1c69a6qj9phxeftp959jmzg3wdlu0hcgjxvxlyl\",\n                        \"reward\": 3.294893394784058109878e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vv9tx5g809zfgygzwccsr05a8shlpcn7j6whp\",\n                        \"reward\": 3560787376336323414,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.3844859767e+22,\n                                \"epoch\": 316\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.95770022441e+22,\n                        \"delegator-address\": \"one148yv9zk8r3c05r4dnxrxnzhv7ch4v7pg2su0w6\",\n                        \"reward\": 555158665339613013729,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17z53h6m843kn3vqayktwvy4yvaj8wqc6fpthh3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.989999975e+21,\n                        \"delegator-address\": \"one1myz5fpmctcqq424u42dkkmrsn8xhg9tsgduyy7\",\n                        \"reward\": 44495864233436212479,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fl3ua65mgtpy6l95f6wlghavm6548gucxffh22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1r0kkm8992a5awyhghgmnquk38suld0xzvpzkjs\",\n                        \"reward\": 16092249398755774375,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f4rp0r5f0sa0a7n9a8e5hzn4fy030ntt88lm7u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5399999976e+22,\n                        \"delegator-address\": \"one1eexqspq9vlu73pp4gse0q599xzhz7eln8lu6mk\",\n                        \"reward\": 429123892226836776891,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 247239199608570792207,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.08484e+23,\n                                \"epoch\": 320\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lnnrqtykf68uh4p2vs5kqf8mrlhhtymcv2m482\",\n                        \"reward\": 368621737229399943,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one183ecdj4g2lam3e0xyfexxyv9c2p6q30clpxl07\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one13r2e6rfdllvatljvhkunrhygwd76dx2cj06rfe\",\n                        \"reward\": 8429209894935871895,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yk6ntuxxpmxxauk42qkrglfar4e7eekv0t0tgr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1wec2k54hfe5s4aksjwd3tpdvxuj72wtpsnre40\",\n                        \"reward\": 59903478945156051323,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f4ztjsa4tn3azu9qqghphfwdjt89sn3p8d4ya5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eqflv5wu0sldgpheflywqdk45m8g35fzyd8sct\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.044e+22,\n                        \"delegator-address\": \"one1xntq573g0866ph7lt8y85rwcjqcqc966xdckaa\",\n                        \"reward\": 211376184132035387817,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grpk6706ct68pwcqr3vjw60xcuwjkerau7d9ww\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.4305e+22,\n                        \"delegator-address\": \"one1dnd69723taqllad0efjte0sy3xm5ukk7fjshl5\",\n                        \"reward\": 1.010265974299169868858e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ac0p66nvaj39k2jxahsdzt02chx64pzsh5rn2w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dxea4w0pa7v9m2ax08frgpmh5x4va5gupqcd4l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.889e+22,\n                        \"delegator-address\": \"one1pqjmt6s9tnyrapfg4hren2sfa63mkjlrt9ep3m\",\n                        \"reward\": 972071949699662746462,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qgkqpscscfp7frvq6enexlekj6tz4u6r66phy6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.193e+22,\n                        \"delegator-address\": \"one1c5vqp3u5y7n2ym8gyweykem3nt2wc4hfvz3ca9\",\n                        \"reward\": 580134214296926376223,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9343e+23,\n                        \"delegator-address\": \"one10qpj8nzc37x3jfn5qagylkjemrszea56hhmerw\",\n                        \"reward\": 4.395740114322369010366e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q4md9dlrlg9g7u6vxxunajyqm6llajudckww86\",\n                        \"reward\": 9727885788744474973,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.605812128e+21,\n                        \"delegator-address\": \"one12nr92s52lclc6cuk2w6cenrfwqam98v20007fn\",\n                        \"reward\": 60245854091417916598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wvy5v5n6vwtlddx0hjzt63d7fvudad60andqe7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.13e+22,\n                        \"delegator-address\": \"one1qup2xu4zj2m7aeld7z7cjkcw8fpspfaprs4tc4\",\n                        \"reward\": 177709341462836138350,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.8e+21,\n                        \"delegator-address\": \"one1qgnu3jrle48dveu2xhql7a6ck92wt3g36gc63z\",\n                        \"reward\": 262446583174690620289,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xxwm5efekrd6h4wk3vz2un6ap0tdvq5ctf33vq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16lrjwy2y0025ydsmwc0a92jdvwpmq20rjkpny9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.04564e+23,\n                        \"delegator-address\": \"one1rfjslpy648xltxuw272v8q5w4lthr9m8ncpgfr\",\n                        \"reward\": 764969700962985162136,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1943a79kdy85wv6q0nst7dhtv2pykz28mlc8y3d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zkt2jwxxqgsl74pt9rmldl6wdcggrys5rk2mzj\",\n                        \"reward\": 475940633426738965,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7ycs6yexeatycs5686lajr43v9ezc0tgpw7fz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yzcntc6uv7gx2ml2w8cptt6r80st9hnjnvyacw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.06594558045e+23,\n                        \"delegator-address\": \"one1gf97n872clav3taatcatxu3az558d8ejrtxv7g\",\n                        \"reward\": 803556346433509658104,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.684794995e+23,\n                        \"delegator-address\": \"one1j9u7q5ulslgdmdzpkqres3uvv477rjk0lc3eul\",\n                        \"reward\": 1.684925434489961879728e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one197wwsy7fnkts6mj3258gysaeqq7qz8nqnyent0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1ml8qedmlsltjzjk2uszzjjqh670jtae7k370l3\",\n                        \"reward\": 14161137182905500532,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q842kkns55se376px4ggzapwut4h6uphdsrcs4\",\n                        \"reward\": 5269881982576184881,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kzhs0vfhv6q52xh5pq6z25qnaeaztrkmh50zfa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a5t82ss6qejv0tep5x2vzjae8g7h3elnwchtux\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3e+22,\n                        \"delegator-address\": \"one1u208relr7g8yuhrm4yapns49qgla4luqlt48ry\",\n                        \"reward\": 489129958602502307793,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19rz3el68crvtxca0esn8ywc4wy9vda7leau5dj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.614902e+22,\n                        \"delegator-address\": \"one1smvxmegse8k3ya86mdxe62gwjmadmvqz6q0qwp\",\n                        \"reward\": 623110476667052766816,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5745e+22,\n                        \"delegator-address\": \"one1nsycmjwwe0fcdtzd4a3tgadfw76jxkuyhzsp4f\",\n                        \"reward\": 46666856042087467368,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2444732508e+22,\n                        \"delegator-address\": \"one1gv2gx3azpnu4yawcd4pp67etlq6d8fcrav8enr\",\n                        \"reward\": 1.079946907901643824263e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.223e+21,\n                        \"delegator-address\": \"one130d8hfdqls45qv5937pszl7pla3094tkgluhe2\",\n                        \"reward\": 45583536208067639959,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5981e+22,\n                        \"delegator-address\": \"one1qu26mfgaccdcuszw6p5sqqctgdp2n86xuplp8q\",\n                        \"reward\": 246288436226806131972,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7999991e+21,\n                        \"delegator-address\": \"one17yl3mc3ghztl8e532e2lt9xfzkpwlqmzu3fnc6\",\n                        \"reward\": 32678966775185285769,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz5wlka3f5rk2y8r399a6hx4pav8ljfz238lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1snm00zd3vw927vsxavpnnd0fs4mmv00s9g6nms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19x784ltvty9yyau22y4xlc5yuq3lqdu0flew7a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f2ctrtwl3cwz50recdg52lalk7elnseaf8p2n5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 625000000000,\n                        \"delegator-address\": \"one1v3tzxmw4fsfx5k5ejxygyt9wlk2dqztvwsk7mc\",\n                        \"reward\": 4831258043,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 1.487616316934513995695e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0238e+23,\n                        \"delegator-address\": \"one1uxk5wyrpxac3zs09aquzx5vx9z4fmn0rz2jwan\",\n                        \"reward\": 341426482319629316997,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.68665264194e+23,\n                        \"delegator-address\": \"one1lq8d9ff3hfux7978d7ael00ev6jrtgnc0hfjg7\",\n                        \"reward\": 46283590454610603556,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.44799e+23,\n                        \"delegator-address\": \"one1k4ezerqe6mzh6pngf92vtc6v00egu5uytsfs5d\",\n                        \"reward\": 3.509045945971203926384e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1utlqplhcygakg7zxn9nersjd4n5ctuhhpmg0mj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qn9jwx2mrj7jx3tzls7ejhtc2n8k9r408u53gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.52756e+23,\n                        \"delegator-address\": \"one1n24e0eqg0ajwf2ehtvy0fw02ruvu4955ks27xg\",\n                        \"reward\": 4.464030982255464648685e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.02556661165e+22,\n                        \"delegator-address\": \"one1mj3e0wtd3u3u537v2zf7kgwyng9x7zw8cdwx06\",\n                        \"reward\": 862903474700959949690,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q2v8nqnk8gflhscwl7mz2pfmwljk440dd7wjan\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r2cpsd22pgqpurdzy0gt5rvtv7wp7cg5t50lsq\",\n                        \"reward\": 487618704779580294,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18p6kz3lp0j79gpr9jmmzq6whfgw3eaksjplklk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1y6ehq9cpvc2hjlg8x6qwevk58zshhwl79y44y3\",\n                        \"reward\": 637010128525475336526,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+23,\n                        \"delegator-address\": \"one13as5pptp4wvsu432ennnvwu77dpl8sc440slgm\",\n                        \"reward\": 2.063590174298506523591e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.078709967695e+24,\n                        \"delegator-address\": \"one1ul265qs7zvxj2e9kpfvlnju4tvky5g6dz7skjh\",\n                        \"reward\": 2.708918408390536447356e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+21,\n                        \"delegator-address\": \"one10c2ldg24fsrxhq54pys63sh8mfr5gjw50fa7qp\",\n                        \"reward\": 38653860679451333384,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.24e+22,\n                        \"delegator-address\": \"one1ln66zgvc2krv9v7hqauws45ktnal6jmws2c0fa\",\n                        \"reward\": 9588259220647631821,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.184672012e+23,\n                        \"delegator-address\": \"one1fkt9vcr8sulcrpv7ppy5q9rrqqmddaz52a52h3\",\n                        \"reward\": 1.0547767874763088184179e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j7z6656ft4vlwhcv0ug7m8rwflh2fml8sfag2r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1kv9cu6x5c4apnlx5unf9elx0mnp078fgcmek69\",\n                        \"reward\": 3.363733557597806483368e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1krvseckxzw0r4wqxmvayv35jnl3uy5q2fh2shl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 1896981527669462090,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1mj2k29vddq0mqmzk7egnqfqje2wck83tt2d7t9\",\n                        \"reward\": 15262586841773007841,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1rqvvf5rmpy2cqycfhhm8q9zggy594cp2lrhlca\",\n                        \"reward\": 4445873868728550089,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1mm2cxctwn63dp4ptv893kftay38rhtlnttpn8u\",\n                        \"reward\": 11839010512554180294,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Proudly Foundational Node since day one. Running on reliable cloud host - 2 nodes per every BLS key. Low fee, close attention.\",\n                \"identity\": \"Even Solutions\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 5e+25,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"ESValidator\",\n                \"rate\": \"0.040000000000000000\",\n                \"security-contact\": \"escorpsupport@pm.me\",\n                \"update-height\": 4531449,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1n2dfgcv0lykh42p2pgxcd8k7s820qkcdf8lelf\",\n                \"bls-public-keys\": [\n                    \"5abaee8b43f9358fdf369a653e551a928b3fa3a748a1fe8df16f809c9543f3403eafff5d9753efc8dd499e65113dcb88\"\n                ],\n                \"creation-height\": 3359220,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n2dfgcv0lykh42p2pgxcd8k7s820qkcdf8lelf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Avid harmony supporter\",\n                \"identity\": \"Foundational node runner\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"napsterRocks\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3359220,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 14545,\n                    \"current-epoch-signing-percentage\": \"0.999312950875987633\",\n                    \"current-epoch-to-sign\": 14555\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"6654613648187800475155500.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.117923162031000361\",\n                \"blocks\": {\n                    \"signed\": 955660,\n                    \"to-sign\": 978221\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.092185958154480013\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.090965203228429016\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.093465841808753182\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.086770851528634736\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.086439934839353925\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.085528871046446517\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.084218377568045979\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.083789057514877845\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.082245608951720483\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.080840803229235868\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.078818334669722087\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.081093437658635930\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.082560214892125182\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.086917602887443051\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.086097012378257065\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.087740647546785197\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.087738661667701757\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.088954590584762229\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.089783000933647814\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.088850968991226376\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.089754601500691071\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.090359221099471869\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.090656265343835871\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.091241092706369951\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.091934385787456981\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.091466954010617132\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.089185168099217335\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.087503969397005375\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.089256417857674996\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.091754893630953977\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117923162031000361\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 16467,\n                            \"to-sign\": 16482\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16399,\n                            \"to-sign\": 16424\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16417,\n                            \"to-sign\": 16431\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16566,\n                            \"to-sign\": 16751\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16418,\n                            \"to-sign\": 16448\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16385,\n                            \"to-sign\": 16415\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16953,\n                            \"to-sign\": 16986\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16402,\n                            \"to-sign\": 16424\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16369,\n                            \"to-sign\": 16411\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16436,\n                            \"to-sign\": 16456\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16440,\n                            \"to-sign\": 16480\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16596,\n                            \"to-sign\": 16618\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16485,\n                            \"to-sign\": 16526\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16710,\n                            \"to-sign\": 16740\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17520,\n                            \"to-sign\": 17544\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18517,\n                            \"to-sign\": 18529\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16698,\n                            \"to-sign\": 16715\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16511,\n                            \"to-sign\": 16535\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16508,\n                            \"to-sign\": 16565\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17788,\n                            \"to-sign\": 17833\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16435,\n                            \"to-sign\": 16475\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16446,\n                            \"to-sign\": 16498\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16483,\n                            \"to-sign\": 16514\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17112,\n                            \"to-sign\": 17156\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17605,\n                            \"to-sign\": 17650\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16930,\n                            \"to-sign\": 16965\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17722,\n                            \"to-sign\": 17744\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17797,\n                            \"to-sign\": 17846\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17878,\n                            \"to-sign\": 17891\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 19304,\n                            \"to-sign\": 19314\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.26029950533758638428629e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.831042816809165225379e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"11fe3720af7c383558400a2ab16b76caee83bb158d973e5fecb7b21f2fea82eecca2a68d1c8a50814d54f80041edac0f\",\n                            \"earning-account\": \"one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007178489764402561\",\n                            \"overall-percent\": \"0.002297116724608820\",\n                            \"raw-stake\": \"6805096873936133334900000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 6.8050968739361333349e+24,\n            \"validator\": {\n                \"address\": \"one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x\",\n                \"bls-public-keys\": [\n                    \"11fe3720af7c383558400a2ab16b76caee83bb158d973e5fecb7b21f2fea82eecca2a68d1c8a50814d54f80041edac0f\"\n                ],\n                \"creation-height\": 3359226,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.13e+22,\n                        \"delegator-address\": \"one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x\",\n                        \"reward\": 1.031913336514712654547e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grt0frrmy7a8239sg3tygh83nd5q74yymq2ljh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0au0p33zrns49h3qw7prn02s4wphu0ggcqrhm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zdxjy50aa9kk33pxrjy8yerpgz49hx0nhc2r6k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.96e+21,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 20371172733687140016,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 59281896724268356307,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.767e+24,\n                                \"epoch\": 319\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1726az373v5t8rh5ym6cvvpp9xyh0dztwre204a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 133333000000,\n                        \"delegator-address\": \"one1jx7wusrrnj2djdf4dus5cq07yw3fe2077j2l67\",\n                        \"reward\": 816718341,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v9yk732v6e3reamu33zgt57thpg753vyazuj2e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+24,\n                        \"delegator-address\": \"one1a5fznwvnr3fed9676g42u7q30crtmmkk5qspe9\",\n                        \"reward\": 7.4807149909706143820998e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12v440thmnyjmfvmk483m3khwa9ffmp5fzt47fq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vegus4ekc6pjys9rf8krqx2xsva9rf4ed3rdcu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f9atls5hashsdvmg7mxxjxgphx74t7tdkw05d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.446549e+21,\n                        \"delegator-address\": \"one1r36zuqdn8gpcrst089dr4dk0829nhecqaqtszj\",\n                        \"reward\": 123574744832166970,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 400000000000000000000,\n                        \"delegator-address\": \"one1z46w7d5cqchrj0aa608vdmwze08g7n2ugd692w\",\n                        \"reward\": 4682814099638354148,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wnsq5ynpx7vzgekysscrrajz46e4vlek9m2tyd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zhslw38cjuds22fhfj0pdg54jevn9u8jyz9r33\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy63k9kp6vgmrl2s4fpw8kmwn4dl96vrdhlpnx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j64a0p85hwp7ktzqsl2h7jempnw88k0p304ldw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one197wwsy7fnkts6mj3258gysaeqq7qz8nqnyent0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14c3t6esxwnz44zr7ewyplsxu3ur8gl902wuuws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l87vnsjlj6aqkyspde7qv7eff6vwuvsw3r6ujc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5398e+22,\n                        \"delegator-address\": \"one1k44ayu32tpn5v74d4sk9kxdafz4av5t2wrwwkf\",\n                        \"reward\": 34602276028812200443,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1quk8twcgu067t9a7lttk9l7m67xefxr06x8603\",\n                        \"reward\": 520933369688003244,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.046e+22,\n                                \"epoch\": 320\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g4k8j5a0d032duwk4ns9qcv0lgrtr8370t2s7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10gknxpjn5feq04jan9nkup6wd0jg4tra08dtef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tzu2dc4js8lnkjyz78crdw4z0ruvx9nhhf9yqe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p2hzggpswh8yap9pyqjef9l7vplshfyes78t5h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7ycs6yexeatycs5686lajr43v9ezc0tgpw7fz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l6h3gmg0hgw9yuu74scjm4tsuc6rqgtgmmgt6k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2000000,\n                        \"delegator-address\": \"one19vmf6afcuvpklmrs9ldjtx4r3cse2maf7zy7r4\",\n                        \"reward\": 4214525796174987810,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19w8pthyxs3hvnpy2puu2muxansj6y8zj05t3x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gc750mfrnszza5nwym3dnkrvy7n8chzsgjykkt\",\n                        \"reward\": 3506427532050972385,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.727313332e+21,\n                        \"delegator-address\": \"one1c69a6qj9phxeftp959jmzg3wdlu0hcgjxvxlyl\",\n                        \"reward\": 12261628914033994625,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gvmj6rtauupyteyhd0r7mced9nr0zjlxzh50rv\",\n                        \"reward\": 2766367804543022076,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.212e+21,\n                        \"delegator-address\": \"one1nl0xvlleputa5zzr7rz6ah3x4h99hcp6ke3dzz\",\n                        \"reward\": 12797273210680277832,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fe7g6g0xv4w2tydyr5y40swt3crteyfxfegxcv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cm7g89x5j0y7f0mges28qtsen92wqr0vqurl5l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1222f5g60utelrcx3f7vdv5u3zqpkhf96tk5r9u\",\n                        \"reward\": 935393598051566803,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 4.646e+21,\n                                \"epoch\": 319\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ll6n09wnuz06gpg7f8dgjdyaqg2zrceqsm5aus\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.314376e+21,\n                        \"delegator-address\": \"one1sdt5ggjsddp9n7v6qs6j9ctjx8hldjvme2s8m6\",\n                        \"reward\": 26091171903782346023,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ddkra7wfkez7lav4p79u390gnj7sv85funzu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zmmkqmmudktx0asxel6lv096n6zf5wflj8jze4\",\n                        \"reward\": 1459781143041426737,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vwfplktczvnlt8zht3n35v4za7wez35krwzekg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.370766452e+21,\n                        \"delegator-address\": \"one1f2ctrtwl3cwz50recdg52lalk7elnseaf8p2n5\",\n                        \"reward\": 212205109006922125,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sva3gaekwx57857s0ragz0y0tf0yp00l75lwzh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 867548451324902239,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n6awpf8heumwc89sp3lh32spvrfgfxqh0rc2mu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14nw34zknz8re06fqe7cq70kjstn2uxar57a3nr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fl3ua65mgtpy6l95f6wlghavm6548gucxffh22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1p4hvykx0a22h3keqs92fr6yq39cwcfyth6dyh6\",\n                        \"reward\": 479037367485596561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rkwt237g9r2gtfp7ptnzxzwfsd9pemmk9q666\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zf239ny6pdy0twnzmuaxumvgx9ld9rlfl2a3sh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1snm00zd3vw927vsxavpnnd0fs4mmv00s9g6nms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xelfhvk6n6247ayk872u5l2zv6qn4m5gpr02ne\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18vscrm3qxc0fv0y8yzksfe4vhq2aar47yfr6rk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fzne3d2ndvxpx5vx0v2te7zzjprkgcryckeuuk\",\n                        \"reward\": 60809928255099018,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 8.07e+21,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.875e+21,\n                        \"delegator-address\": \"one16yf2scttr4kfhzmcpllea7yarc76xdkz026wuc\",\n                        \"reward\": 16014396137937408812,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xjhs7nygzy644h3z7xx83jpnwdwc0kuhfg6c3l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one139ujmnlqdradgs9rmzwtpnk0n5yyxe86quj7pe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jy28ye30v38kevqschm08q833wat97y7vmjkff\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17pddfz8pkfy74ktn0w3g8s5rs6rdanhx2x6q5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wjrlr8asttn09za4lcq07zs4yf0920xr0amfpw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 501000000000000000000,\n                        \"delegator-address\": \"one1eg0fzsgsuew83kcmf9xs4ek6hddf4ex0xt7ht4\",\n                        \"reward\": 3203337243442562844,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g22hs5u4zyr6g2tfjl7dlx7kkrslrhqeqmua8c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zhz6gv9yagh8m4vrd52sfvfk9v6amxd3l4rwkh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.14011144e+22,\n                        \"delegator-address\": \"one1krhnzaf9lkqyf7y9j3xrzrtkqj9g0j8htquy6s\",\n                        \"reward\": 345860069107643875308,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.281166537e+23,\n                        \"delegator-address\": \"one1ghs6ng5e6vhuz74g5mj03qc0an0ln97yuf5xsk\",\n                        \"reward\": 235414422052388761151,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1ex9a46773wtsj455lsjykdmn8al6uqalgnlhmz\",\n                        \"reward\": 336432461771338364285,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tvxurnzczfwq97jethcn5vjqye7ckpvv83cmnl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 990000000000000000000,\n                        \"delegator-address\": \"one1jreqzk8w839dajfelwmy8t7vxg3tvkk8we45cw\",\n                        \"reward\": 6423306673646052228,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9999999999900000,\n                        \"delegator-address\": \"one1ps75yrwelc8xzdkjm02t07lg9nen84xyj9772y\",\n                        \"reward\": 9259053420131,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hy2mkkn4av7mfnwc7gn5ak3trcnq2mrg80297t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ka4shjasftw2hm6et2m46zeppce2gw5z9dxkg9\",\n                        \"reward\": 86839529829622146444,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one14pgwdvujxhr5j405mr0lacxd6n0n27p2vh0kaf\",\n                        \"reward\": 582298764049556321,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.4975e+22,\n                                \"epoch\": 318\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.600211355e+21,\n                        \"delegator-address\": \"one1t2vp6g9c9xasvpu9wpducvy5kdshs7nsdmupjk\",\n                        \"reward\": 2421223563271258347,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one18qlnccujlkc9087ug9n5djxcp9zateasvdvrsn\",\n                        \"reward\": 9475646320146636476,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0543419427e+22,\n                        \"delegator-address\": \"one1khpmdjyc8qc9ye5np6dpe2paqrz4e2jxymwpj2\",\n                        \"reward\": 244253014818892115582,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one189qjhwam3h4rcz5qy9lhn9mtzktcmaec76p7st\",\n                        \"reward\": 191393080918347152,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kt45qvz9j5re9hyymxszwwxsstqdtfgftjks7p\",\n                        \"reward\": 65126300779949309,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 9.989999e+22,\n                                \"epoch\": 318\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 5.9e+21,\n                        \"delegator-address\": \"one1dmqzt5etr4dkqkm8lzvkykan7pkqz7et2e49n0\",\n                        \"reward\": 34181808429371069084,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.22e+21,\n                        \"delegator-address\": \"one1cutkv2fjwewkwyspst9zfd0gmvzslfwema4vqs\",\n                        \"reward\": 10184160313256113186,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.385e+21,\n                        \"delegator-address\": \"one1uzk9kwzf2ndhh05mk6205yqy8k9sdf88ewew6x\",\n                        \"reward\": 738488238086776081,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9589e+22,\n                        \"delegator-address\": \"one1xdux76dr3ta5xu45alxdk76lj8dld564jwgner\",\n                        \"reward\": 22815739567752416651,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0473e+22,\n                        \"delegator-address\": \"one13mrw9tfyjeyxllm2v4f59hxvu30mjf7vq6nyqh\",\n                        \"reward\": 238967146241275877478,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.22523597361e+23,\n                        \"delegator-address\": \"one17c7aczc7vumaxw5lmxt9mh4w34lexar90qmdue\",\n                        \"reward\": 682493213115891147069,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3333e+22,\n                        \"delegator-address\": \"one1pzhu3t2m4pdhgt7gujctqt56mdmlahqa69rry5\",\n                        \"reward\": 178638055121329187197,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13lxywjkz4ygqdg7ejy7rjvspexa5zg6tafkc68\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 7.4e+21,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 8.9e+22,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 182252796553537804013,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1fn8hktfm3xhknn9y9ptw0wj9evcn0xzmr5cuws\",\n                        \"reward\": 5151984687949201848,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.04516862909e+23,\n                        \"delegator-address\": \"one1twzqd42taqua2r7auwsxzwcrucfwp9uu58tq35\",\n                        \"reward\": 538469277339654214264,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one162fsf8vssftqeewvksnmcqrfrsc4q9dflpg3zy\",\n                        \"reward\": 1714393628366857986,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Keep faith with us\",\n                \"identity\": \"KeepNode\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"KeepNode\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3386570,\n                \"website\": \"https://www.keepnode.xyz\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 464825,\n                    \"current-epoch-signing-percentage\": \"0.999462452292640972\",\n                    \"current-epoch-to-sign\": 465075\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"168292955178272827207600000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.119194197527195979\",\n                \"blocks\": {\n                    \"signed\": 64563916,\n                    \"to-sign\": 64617938\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122484590511553308\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122603805343830095\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124494377604012880\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.132493745164926296\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.128578163726565429\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.125136999372444247\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.124182155933578919\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119857680507052669\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117660014312153214\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117651322406270737\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115719275684888462\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117645829597741310\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120522866763217196\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119964690768090941\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119552232571773596\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118498804850232616\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.121064215519961175\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121695834168015459\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122114439204733623\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121243894637563653\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121215932278628475\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.122777121620882446\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118751216376179833\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119799056026296655\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118878210361449827\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.119869964539529136\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.119694466237789574\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.118698826858926740\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120414396712675451\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119609171740632942\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119194197527195979\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 509805,\n                            \"to-sign\": 509947\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 508515,\n                            \"to-sign\": 508712\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 508413,\n                            \"to-sign\": 508747\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 515257,\n                            \"to-sign\": 515601\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 508903,\n                            \"to-sign\": 509179\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 508516,\n                            \"to-sign\": 508769\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 522968,\n                            \"to-sign\": 523170\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 541846,\n                            \"to-sign\": 541996\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 574106,\n                            \"to-sign\": 574404\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 575640,\n                            \"to-sign\": 575929\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 576525,\n                            \"to-sign\": 576903\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 598039,\n                            \"to-sign\": 598238\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 627387,\n                            \"to-sign\": 627712\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 602228,\n                            \"to-sign\": 602369\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 660420,\n                            \"to-sign\": 660748\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 692695,\n                            \"to-sign\": 693275\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 618120,\n                            \"to-sign\": 618435\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 628149,\n                            \"to-sign\": 628270\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 629225,\n                            \"to-sign\": 629358\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 693728,\n                            \"to-sign\": 693880\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 626046,\n                            \"to-sign\": 626146\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 627013,\n                            \"to-sign\": 627074\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 627602,\n                            \"to-sign\": 627718\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 668916,\n                            \"to-sign\": 669178\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 723522,\n                            \"to-sign\": 723828\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 678725,\n                            \"to-sign\": 678919\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 797728,\n                            \"to-sign\": 798540\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 820176,\n                            \"to-sign\": 820767\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 733356,\n                            \"to-sign\": 733509\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 772645,\n                            \"to-sign\": 772769\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 8.633618505514232225574772e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.434639891978039644629e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1dfd33e1ba1f48640d64bd0a878b21840758f44c6d5845d9e0e804997d3207aa2c40d04b2eee3dd03cdd7a6453395508\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434639891978039644629e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"43ad254f6cbec380f5f99df0369f96fb6ba7c7518d89241939faf6d9d69c5490afeef05b421fffbf926b479390fa0b90\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434639891978039644629e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a7d5341af7a9cb69bcc366a41a98d0eeb3e9bc68e2a73d9e3799825738bdfd6b183d0bbbdf4448d6bf064b6e0e16f218\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434639891978039644629e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3c9ff839972f68a9179d90211d086252ac66f04d975934a6e91e45f805ce746b8b59156bd79cfac414c9a77017c11680\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434639891978039644629e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"61756a1a3f55ac33cf86a884ddc0795a91ecb05ee4486b89da20c7c0ecd8977a7225a789b91e02d52ebed33ddbc31f94\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434639891978039644629e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"16e3d373df7e5c01c2dd21be40cc04e5036b259cc3f28844659501d06e46b1f223891c7eb1f6c2eb41eec8eb606dd604\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434531233432522208327e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ce72a574a4ad4b116314c82162250211476066e1403f65f83baac852c378650d4796fb34c39a1012a632ff5f7f508b90\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434639891978039644629e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4d4aa3f120cc3cf27edac2a29029dd640e712f92e47ee751a20839896a0ff5bb185c33d7c832961c21df070ac2d85314\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434639891978039644629e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"715f484e66a6c6e4597dacea5fedbb318414c73c6e82b092a7d3399f5410a5b1afd5ebff47ea58e08a0012fe6eece98c\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434527153617816244389e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6d1f4132b9beab5ad84b9038bcbf0ab9a6d23ca739f1bdaf8d9020fec83b7eaa741b78b66c00a09ce7a7c906bc18310c\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.406589235469154568802e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"00b6377e7d3eb5c8d7e88fcb82754f45c89e21bc4d65ddf8d68b9d9646f779bcc010318a5f943d57f8cd0e06629e320d\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005492791967164783\",\n                            \"overall-percent\": \"0.001757693429492715\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400132161394420470333e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"298a240c89c51bb025d613d240c7d9ac7f25efce5e78dcf709cee013b67fbb6703a961d7a5e8c561560fcb07218baf8e\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400028742163130091046e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"74a4274fa9f794536921cb84ef4c6644a278a1bb8778da6c6c694aac1c12bc618a78c2eab321662b1a5976339c20c402\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400031471918560241833e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"70a36816c4d0c0b97f352378cc22ff7e0d337322c89962867b5017cb0565197899cc0d4b151985d7ab25e047d8563502\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400132161394420470333e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2826b297f1c212b89e510d7fafd7979de781116b44277e3c879286088be7b4d26cf4e4d439d99ff85944d9e0266c528a\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400132161394420470333e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e1c465d5d4b654b6d9a4244fe62dc417adbffb1536c6adc179d0d60ab584869ca5c653175ffebd9dda8c374a1a25c90e\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400028742163130091046e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bcbe661d60d81334dcc30881f18ff6f4c64f8071f0f21d62d99b992ed28d6051aea58c691cbfaee674c98355c1de5182\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400132161394420470333e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c86a5171077eed06fd29e5add5561e649f60af1455130d15fecdd2784ba7ed87fb68c4e72ef01f4f64c0c4e51b3e3c86\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400132161394420470333e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5b13791fa1787deaefb5edaa4c614865660f041ce6f99017bf26b28fe6734b564fcf3f1827706dd11a729fbf58a8780a\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400028742163130091046e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8133ed48cc607ccfcb890d8780dc8610b038a0e0e09c05f8f61981cc53486ea6672293cb9c249ac86fd2aa50bdc19b12\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.399923501699798475593e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f4dd50ff795d7ac3947c2eed19b6a029ce959c1ae753d6ff0ce3af8d9570c00fad3897a6a5cde612c0a72a524c952106\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462038\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448211340827122469829e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"16c76b244e7cac2017f505234579991d68e40f6be0989e501da98e6adc271526a69b4ffaf232b1e137a85ade615e740b\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448211340827122469829e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"028e33a20bdb4c3badb5b32107899b3e6abef57af2f9d330e47c1318c439938164fb9c4d6eda4c133089648e33400987\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448211340827122469829e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"55d36ffc75e6be957415dcfb8bdf3235f6e95167d644bb6d50ddfcc868594f852b7ef520140a5d44f3a0723a16d0d417\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.447994950428896061497e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9b413252ce0cf2f289c1838b3e35a4b70ec6ef659bd23c606b8e93be3c2e4e065400310cfdbb299ea65bd357c7c9da0f\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.447983378989858228032e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a60da09df9a6aba6754d2a2541ee41274d00e991ef1b14d7d6d889227a5a437d0b9f201f155e0e1ed535770b1f8f2a83\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448211340827122469829e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3dd79d723b8aac2182660a12cc173dd76973c1f6c459ce4f3b797cfa0d9114924f12cd211d36d7356318c75026afbd13\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448211340827122469829e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fcd49de42863a6059a8a60a1565e4616a7933a5f918b8eac986da5594fa3b0f0177e66f01b5f54c453c4adfda836c913\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448103627612848011904e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7e2ac7bea191b33fd9efe9326e727c4a0c357cc7e0019a41085cc5cf2d01aae6c2ef98746185aa99ee2837d2d079638f\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448103627612848011904e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8778aef9a71ae1cac71a8c86e07df5e0764d0b1287e03f92cbe0bb4ba4fa278ee8584d33048e69425dd6b7d732f9f887\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448101028291279950154e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"949e0e2fa9643fac1ddfe01c91254ca2e53cd29aa8a37dbf52df804a02a6f58bd34f9f7b2f7c84eeece714715459df83\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448211340827088038009e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d4eaeaaff529c66ded783947df40503622ea653bbc3bcf7d2f6165550b76a053842a18acec09a230babb3579f6444683\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769565\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.683184560382728272076e+26,\n            \"validator\": {\n                \"address\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                \"bls-public-keys\": [\n                    \"2826b297f1c212b89e510d7fafd7979de781116b44277e3c879286088be7b4d26cf4e4d439d99ff85944d9e0266c528a\",\n                    \"298a240c89c51bb025d613d240c7d9ac7f25efce5e78dcf709cee013b67fbb6703a961d7a5e8c561560fcb07218baf8e\",\n                    \"8133ed48cc607ccfcb890d8780dc8610b038a0e0e09c05f8f61981cc53486ea6672293cb9c249ac86fd2aa50bdc19b12\",\n                    \"028e33a20bdb4c3badb5b32107899b3e6abef57af2f9d330e47c1318c439938164fb9c4d6eda4c133089648e33400987\",\n                    \"8778aef9a71ae1cac71a8c86e07df5e0764d0b1287e03f92cbe0bb4ba4fa278ee8584d33048e69425dd6b7d732f9f887\",\n                    \"16c76b244e7cac2017f505234579991d68e40f6be0989e501da98e6adc271526a69b4ffaf232b1e137a85ade615e740b\",\n                    \"74a4274fa9f794536921cb84ef4c6644a278a1bb8778da6c6c694aac1c12bc618a78c2eab321662b1a5976339c20c402\",\n                    \"949e0e2fa9643fac1ddfe01c91254ca2e53cd29aa8a37dbf52df804a02a6f58bd34f9f7b2f7c84eeece714715459df83\",\n                    \"5b13791fa1787deaefb5edaa4c614865660f041ce6f99017bf26b28fe6734b564fcf3f1827706dd11a729fbf58a8780a\",\n                    \"55d36ffc75e6be957415dcfb8bdf3235f6e95167d644bb6d50ddfcc868594f852b7ef520140a5d44f3a0723a16d0d417\",\n                    \"3dd79d723b8aac2182660a12cc173dd76973c1f6c459ce4f3b797cfa0d9114924f12cd211d36d7356318c75026afbd13\",\n                    \"9b413252ce0cf2f289c1838b3e35a4b70ec6ef659bd23c606b8e93be3c2e4e065400310cfdbb299ea65bd357c7c9da0f\",\n                    \"a60da09df9a6aba6754d2a2541ee41274d00e991ef1b14d7d6d889227a5a437d0b9f201f155e0e1ed535770b1f8f2a83\",\n                    \"7e2ac7bea191b33fd9efe9326e727c4a0c357cc7e0019a41085cc5cf2d01aae6c2ef98746185aa99ee2837d2d079638f\",\n                    \"e1c465d5d4b654b6d9a4244fe62dc417adbffb1536c6adc179d0d60ab584869ca5c653175ffebd9dda8c374a1a25c90e\",\n                    \"70a36816c4d0c0b97f352378cc22ff7e0d337322c89962867b5017cb0565197899cc0d4b151985d7ab25e047d8563502\",\n                    \"c86a5171077eed06fd29e5add5561e649f60af1455130d15fecdd2784ba7ed87fb68c4e72ef01f4f64c0c4e51b3e3c86\",\n                    \"bcbe661d60d81334dcc30881f18ff6f4c64f8071f0f21d62d99b992ed28d6051aea58c691cbfaee674c98355c1de5182\",\n                    \"16e3d373df7e5c01c2dd21be40cc04e5036b259cc3f28844659501d06e46b1f223891c7eb1f6c2eb41eec8eb606dd604\",\n                    \"1dfd33e1ba1f48640d64bd0a878b21840758f44c6d5845d9e0e804997d3207aa2c40d04b2eee3dd03cdd7a6453395508\",\n                    \"3c9ff839972f68a9179d90211d086252ac66f04d975934a6e91e45f805ce746b8b59156bd79cfac414c9a77017c11680\",\n                    \"4d4aa3f120cc3cf27edac2a29029dd640e712f92e47ee751a20839896a0ff5bb185c33d7c832961c21df070ac2d85314\",\n                    \"ce72a574a4ad4b116314c82162250211476066e1403f65f83baac852c378650d4796fb34c39a1012a632ff5f7f508b90\",\n                    \"715f484e66a6c6e4597dacea5fedbb318414c73c6e82b092a7d3399f5410a5b1afd5ebff47ea58e08a0012fe6eece98c\",\n                    \"43ad254f6cbec380f5f99df0369f96fb6ba7c7518d89241939faf6d9d69c5490afeef05b421fffbf926b479390fa0b90\",\n                    \"a7d5341af7a9cb69bcc366a41a98d0eeb3e9bc68e2a73d9e3799825738bdfd6b183d0bbbdf4448d6bf064b6e0e16f218\",\n                    \"6d1f4132b9beab5ad84b9038bcbf0ab9a6d23ca739f1bdaf8d9020fec83b7eaa741b78b66c00a09ce7a7c906bc18310c\",\n                    \"61756a1a3f55ac33cf86a884ddc0795a91ecb05ee4486b89da20c7c0ecd8977a7225a789b91e02d52ebed33ddbc31f94\",\n                    \"fcd49de42863a6059a8a60a1565e4616a7933a5f918b8eac986da5594fa3b0f0177e66f01b5f54c453c4adfda836c913\",\n                    \"d4eaeaaff529c66ded783947df40503622ea653bbc3bcf7d2f6165550b76a053842a18acec09a230babb3579f6444683\",\n                    \"00b6377e7d3eb5c8d7e88fcb82754f45c89e21bc4d65ddf8d68b9d9646f779bcc010318a5f943d57f8cd0e06629e320d\"\n                ],\n                \"creation-height\": 3359293,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.4305e+22,\n                        \"delegator-address\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                        \"reward\": 5.076634787540866294051e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.147500678302e+23,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 727379405353256765549,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.786467e+24,\n                        \"delegator-address\": \"one1nhz9g98na0x2mgal2z9yth77lw83arf7ndr7zs\",\n                        \"reward\": 2.166831461200948570574e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1e+23,\n                        \"delegator-address\": \"one13zqn0g4r3zs9ppjqqzyan6h9vzdznndw9t33zh\",\n                        \"reward\": 1.4809932301099615029486e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9296e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 57441236654123030340,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.9326439625e+22,\n                        \"delegator-address\": \"one1kcmct2rrvxhy0xalrjzgglcmmytdw26phzxg6v\",\n                        \"reward\": 304908450658920329870,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xyvvte88cau9ka0jhw37pp2qtp7zq9k0dw6cf5\",\n                        \"reward\": 387715258951897728,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkr4mqpee3gqeykql0cchmul4e2k5x35h9kutm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2500398e+22,\n                        \"delegator-address\": \"one1ueaf3s2t4s9gff0sfa6gkyycffd0fll5dqf82f\",\n                        \"reward\": 884226165824440070325,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 88727094464900869769,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.68017e+23,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 280306057052982815530,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7lxuqkg3sedxz9j6a4v2axxmrdhhr45d2ckv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1d9vl22yqm43ut87wh2c2lja5yt55jwk62q74a6\",\n                        \"reward\": 259114739173944347964,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.966243559e+23,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 542759108679641736769,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 300740991450875346820,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n24e0eqg0ajwf2ehtvy0fw02ruvu4955ks27xg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 70735841036776338724,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pqt6c9vfsy72nsawu5c9cedtw5vkr2wcn4g6a3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dygg8ugl06pely2q3xqwkuhza9evdnyjesl6qy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 65510008777875681,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5.012e+21,\n                                \"epoch\": 319\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 1018595387960040444,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 7.00001e+22,\n                                \"epoch\": 319\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 85043560464162670,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 6.199e+21,\n                                \"epoch\": 319\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 43396759859050183156,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 1.573489877180105080342e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 213693958127627717010,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1000000000000000000,\n                        \"delegator-address\": \"one1vlafys3hgv098te6c40vapwdmr26prsrp68ywf\",\n                        \"reward\": 19788308873826923,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one197wwsy7fnkts6mj3258gysaeqq7qz8nqnyent0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 510179766396412190052,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333400000,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 1193487112,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16m5r7awa4y2z2cyage4cns4uejxx8rn0gw77ug\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18zj55tkmgw78fmjagkfcaey9x5j7t8698nr2vm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l4dtuj5s7sj8q34urqmyev5jjx2s6t8yp28wjx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5258e+22,\n                        \"delegator-address\": \"one1fql0lwnx4dyzy4z3nrfcqem0ejxdhshe4hud84\",\n                        \"reward\": 360524310035405560543,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d6vmmq6elrx0z52zv5v7su2sykua8smaxy330d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 1.795471924010452257046e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.772e+22,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 163684620957335418812,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v8tg5hgtmxrsa9x8wwcy3rnue7nqlmcrps4ezy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 7324728666614312754,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 29496973546755707697,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 7e+22,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z250uy4fvkzwxvkjz30s26rwgwwezvdtvpwygf\",\n                        \"reward\": 4690414503386007225,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xcy78f2hs6wmxxtgm7u5gwtc73m22mm72yj0c0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.266831476e+21,\n                        \"delegator-address\": \"one1prc5xaxhrwhzr6t9npwntw5jvrtjun25hkezgg\",\n                        \"reward\": 95208911571956773193,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14kr7gvrrmhvfa3p30q8tmy8nkrlqtcjpce6jqq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0a43e43kvlw2uzmmk3xv93t6gcz5mr4whr974\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17td8n6wa7l57gj727gl4u3z7hn7mpyftj9fhef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1428e+23,\n                        \"delegator-address\": \"one1th6dqkvnsc9wc023mr306yykflcqlpssmxzqp6\",\n                        \"reward\": 2.671441409772486098301e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4775135425e+21,\n                        \"delegator-address\": \"one147w9xun8eqrdg6yka7ejnr4mpjwupl4pgs9dtz\",\n                        \"reward\": 83078347982724595625,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13z3n2gqg3ptk8cgs2jfn9cp6mec0kgu7xd9ywn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 56795713148164947291,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18tfdjlj2ya3q48s0xynjjs44jpcq2u4q3mtcpn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z22h2hedqev9yptfwj2vtwv0wxnuw97u6t8dfz\",\n                        \"reward\": 22249274779149539959,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 2948609139246398966,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 4.218846344983619857462e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 1.753232175031666068567e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xrvqsydzs9he5rw0plnpq8xyp2hpu5t8a6snul\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.10754e+23,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 290520777357182435672,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 128806240093379500,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h2t0k0g9fjqh249w5pddv9wuudm8d9cj4nzyw4\",\n                        \"reward\": 92861149707835871,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 9364059107879604343,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5325446839e+22,\n                        \"delegator-address\": \"one1dh2f694yfw2tpe3zqsvkgaj0ykeustw93gdyq0\",\n                        \"reward\": 115819062180486819194,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgsdhg36jdsst6hpagxxum3ncmgax5amqawptv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 10221216601378990063,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eexqspq9vlu73pp4gse0q599xzhz7eln8lu6mk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.081e+21,\n                        \"delegator-address\": \"one1r8p9p4hnt3kx9ymvznxgfcm308md5fxwezy55d\",\n                        \"reward\": 20722537957488960389,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 6.10982076151373561428965e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1jqq8fcscn9udqnqh2qy38424u6hf95efp5y99a\",\n                        \"reward\": 2.063427280030036969421e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5374928065e+22,\n                        \"delegator-address\": \"one1d33sufcyef8k4eedfj84akatekack9suvmc8ru\",\n                        \"reward\": 44932775714555415471,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01e+24,\n                        \"delegator-address\": \"one1ugcjmc89hdju06s6s3l7ypevrhvf3yzhl68zea\",\n                        \"reward\": 3.930734201441165283754e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17zh0n602sshq3akqfrxsfpkyj7udmkx4glwy2u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n                        \"reward\": 8930629255421616568,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15ad34lhszdnz7n8uvnmuzd3w0ay3vy8fdt3343\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.57e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 23761300711003342083,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.5559e+21,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 90869328007152105191,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 36211046415675697999,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05210936265e+23,\n                        \"delegator-address\": \"one143tc4hfttqrtun6nl3x78nqcm3pnt9m8jj7mtz\",\n                        \"reward\": 653715887297900359464,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.82688e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 94382946832133413602,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.925e+22,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 700150734406962478505,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 21310929700744116378,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 9816355651548693952,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.806205e+24,\n                        \"delegator-address\": \"one1z9fvhzdxn76rdckva824xvvhlpd8rt0fnv404c\",\n                        \"reward\": 3.882629506689833328906e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 44219265635722370710,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0085e+22,\n                        \"delegator-address\": \"one13eec5h4k6xw5h8up4duqzpvsdtcrypnekqjnhy\",\n                        \"reward\": 4408193012477936622,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 1.938532553792695678217e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2765163344e+22,\n                        \"delegator-address\": \"one1mv3ta8wgdeehrsja9pv7474chmu62dyy7cfqg5\",\n                        \"reward\": 68640908742477095772,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.951665e+24,\n                        \"delegator-address\": \"one1xven3mqyznvta70g4nvum0pk3pmrnyzghf72vz\",\n                        \"reward\": 1.637467837650974251459e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0446e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 233630211651725597602,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4998e+22,\n                        \"delegator-address\": \"one1lpy9wdzcvyek6g629zzv728lnpmxqzqyxhvpl6\",\n                        \"reward\": 608632616079934147138,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n                        \"reward\": 4.713141783156433184983e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tysvkwnp78hwxkhzh8a4amyea54n580q80v44m\",\n                        \"reward\": 70599767646241540,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15xsj5dfqxes7dxwa02cpfdvzdvmzg2vgtchkcx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.00005e+23,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 2.107955823852951827105e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 41372101689075074606,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9699e+22,\n                        \"delegator-address\": \"one15lh5pqwpfu4xq8dz0mjh2qvhwx6tv9n7p0p74x\",\n                        \"reward\": 504829302672686775658,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gwdl55he6nh0n06xuhvkuupnlp28260ccsnn6n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.02043e+23,\n                        \"delegator-address\": \"one1lju2qtnf5cx0fs78xrhcwzz3sm0ymjhegxymmq\",\n                        \"reward\": 143026601063104784671,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.375e+21,\n                        \"delegator-address\": \"one1h2kljdu542mrg6zjv33w9nfwt3lpxnzhn6dscz\",\n                        \"reward\": 15281844405219899780,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.809684808e+21,\n                        \"delegator-address\": \"one1fxtypxnzz0vll0vtpea2m8h9utx2vpqjjsmp3n\",\n                        \"reward\": 343930530405158163,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.55e+23,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 1.105991098879510309289e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x8kgyyqgslzrm7jrlj4m7rpg285etdywjk7gez\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+23,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 8.782472235011061020717e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gg8p84y09svpxa5xlqc36v4epwyjv8mk0cmrj5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a869ad50qkw0446x3q3mhzx7fm0azx5fvcu7wk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.945820615e+22,\n                        \"delegator-address\": \"one1wwajz8k0t3z200c3qjxwxz0gsfua8ffy2a6asy\",\n                        \"reward\": 2.938677250136446263754e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14xvqeuw9v6mqarw5uathtys6wc3r228sdyp7hg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zn5axvgpx23t606xs0t59qf8xfc4fmavkh4ffc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0366e+23,\n                        \"delegator-address\": \"one1wvaxshh8c7kxda02c5pszvme564274x3uaywek\",\n                        \"reward\": 28855484874785687139,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ydlj0qtzepwxkg4z5kcnyu7fycswlal84ztw47\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0066748059e+21,\n                        \"delegator-address\": \"one1jkpam6q00rgw2rs9hzch665tvjkrs5849p3axe\",\n                        \"reward\": 21398545557483066864,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.023487975e+21,\n                        \"delegator-address\": \"one1cjzgsuv7jcz2wqq8mvnuvcx5rf32d3dhvus55a\",\n                        \"reward\": 12400484051214920025,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d2nafxk24ufu2rw3q96am8juun9jjct346rq2v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z62wq6ucttx2ksj5v3s0vk0hup7xg0yez8qkyw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 45707620491884533350,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dsqz5qn8pv58nnudvnn0ngm6f9dr3d4t8dcvtn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qwul7qegna5w3pejamps8ejymjf8m2yk3ejttm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.8956469876e+22,\n                        \"delegator-address\": \"one1txgkp53hshqg5vsez2f5qrggw9c0qt3ymvj7wk\",\n                        \"reward\": 23128981803427201697,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eq3ratczrnpct6hpn384rvy9njyzq6cparn2pp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.55e+23,\n                        \"delegator-address\": \"one1nffxvsrhxn94xpft9eyek7uxrympjgx0szm8ru\",\n                        \"reward\": 144642655082151904907,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.916276e+23,\n                        \"delegator-address\": \"one1dazcecu7hhhxy379qprmucn657kwg6fp9653jt\",\n                        \"reward\": 1.1103967109188378055317e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcfhm6t87ygsqm5jkyr23hl9eg0ts56yfmynst\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1sq0jgnwl6r73h30v352jmfr9lfyy35m8vna0te\",\n                        \"reward\": 1.903792218087103874645e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1yqlu8j3y6sv55nx3v987cxr209gmkqjy5vgjh0\",\n                        \"reward\": 6336899047147054966,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.725755e+24,\n                        \"delegator-address\": \"one1ls6n0ellmennql73l5hxnvmqw2n5pkrs54qzzd\",\n                        \"reward\": 1.018708574469327191911e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2e+23,\n                        \"delegator-address\": \"one19ujzps78fdgks72vlqyxndhxj984qcdr56hu92\",\n                        \"reward\": 963038967897108529558,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.24e+22,\n                        \"delegator-address\": \"one13mr8sm89l0lju52swcalyavklhffamqn9zgfql\",\n                        \"reward\": 383305188609516716918,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1nhfnjxfwrkk8653jfz97wtdxvw295nws2vft48\",\n                        \"reward\": 5683357270669434741,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.191857664e+21,\n                        \"delegator-address\": \"one1nj0sa5q08qyjz2jwnkw460k2s9lttntqdk5x58\",\n                        \"reward\": 10927937111606874706,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1uvu4uq272045stknx5a9fssgf0ghgen0sydrkz\",\n                        \"reward\": 154000661790982089294,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.125e+21,\n                        \"delegator-address\": \"one1a5wskwncdpleca5lqn9h0hqnpdr560nmwgzaw3\",\n                        \"reward\": 12656583598782060504,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uf2mck76qeug6qy9kejq2rjvtqlzw0uz5qx4dh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 3396879399436148936,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 909090000000,\n                        \"delegator-address\": \"one1h0hh9ukt4h8h4vp8epn7z74gu8k63k95qsculv\",\n                        \"reward\": 10272781986,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12ljv0jr7duaue9ywqf09xq6kxsxk8endzz9rq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8e+22,\n                        \"delegator-address\": \"one1ypr6twd5vd4wszf0g9j3wuxgg29n7m98qtcsfy\",\n                        \"reward\": 71581710531355705847,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.002060484062e+24,\n                        \"delegator-address\": \"one1rez9xg8hpddswd8cc09njdlp724gdmmsg53cmh\",\n                        \"reward\": 336075572130999743678,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v23j972s6qvj0ymht6lgq0g45fyes0ahxzx6gv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1km4sjhgmynmf0d7e5ekmq3lgwtm4g20c0a2qn8\",\n                        \"reward\": 11167917031143841,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1staxun5na2ltqw0x0s98tgkjlv0ye7cwj64987\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9e+22,\n                        \"delegator-address\": \"one1wk607xfwee52l90luv295p5ha34wnwhq43utql\",\n                        \"reward\": 91310594742273433673,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.227e+21,\n                        \"delegator-address\": \"one1fwlnqxr49vfeg9sxaxjn4xlgcu7drglm57qpdn\",\n                        \"reward\": 25585770286914481464,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3111e+22,\n                        \"delegator-address\": \"one1tzjapdswlu93wr0mjul2vggs8x5mqqeelk2pt7\",\n                        \"reward\": 28732814610404693182,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 73207837657187780594,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1mlj2ecjmea22jgp9hrpvndhk09fsahhs28mm8x\",\n                        \"reward\": 315424355501677779764,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1lyud6xd329q0z0z7a6w6v7qdsrmynvs8hqueuy\",\n                        \"reward\": 2.385198880240703651981e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.031e+24,\n                        \"delegator-address\": \"one1lc00rrru56f2u38vrkc2y7z46wr528axezw792\",\n                        \"reward\": 2.093003210498258288795e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gr9jcad897m45n0huttyrf2zq24wpwjx2rguxd\",\n                        \"reward\": 28045649280807598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xxwm5efekrd6h4wk3vz2un6ap0tdvq5ctf33vq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+23,\n                        \"delegator-address\": \"one14edl47lnhr2gnehv5hgpuyrrhy6dr29djylkcc\",\n                        \"reward\": 296508977032154092821,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.575e+21,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 59067981878421371331,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.79481e+23,\n                        \"delegator-address\": \"one1hdh2jdq472u2mwfl65jx3p5m0xxjgv8p90c5vw\",\n                        \"reward\": 1.107441777945730952679e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4428571352e+22,\n                        \"delegator-address\": \"one1zmv6mk9rdlnyr4fywg6wuc2s7v5y9a9r9lslfx\",\n                        \"reward\": 927305341406277818764,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.7131468978e+22,\n                        \"delegator-address\": \"one1upxnram79uhrf9ygflvdh8wwueqdgl64qzczsw\",\n                        \"reward\": 332681901996199419564,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00115e+23,\n                        \"delegator-address\": \"one1k9nvefx0znyg4jrpvcj6mzphecxqmqa398d5nc\",\n                        \"reward\": 85342761641606273539,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.4502e+22,\n                        \"delegator-address\": \"one1jjgx2xu30d0h6ga590c2c0gt3xw5qsyaga25lh\",\n                        \"reward\": 137779463142036402926,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.99999995e+22,\n                        \"delegator-address\": \"one16z7w95lr95qhr9phs0ldhellt5fudyjueglnmn\",\n                        \"reward\": 1.738984107315102971743e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s7hd7wzp907pxzj5sfvcrlt9tygcrunaa4wl2d\",\n                        \"reward\": 263222114813359754249,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 125875822771882274485,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7477083333333333e+22,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 9393720988989306126,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.32549358748e+23,\n                        \"delegator-address\": \"one1d5x28z4hdfzklecellg5nw5as037w8fef52c72\",\n                        \"reward\": 7.399819229495683057729e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfgwkf2lney0r2sq4hsy3vhpvwcxf33qpurtpj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 2.428133661968146090773e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hrxguavlwkmrjl6xdeh3hjkk85fsej8kg8nm6l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.365e+21,\n                        \"delegator-address\": \"one1dztpmj96q2f7rmu8gl8hne8k2z84s8tjmmcj4q\",\n                        \"reward\": 113338272142090425434,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n                        \"reward\": 882061925979619460901,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5820707742e+22,\n                        \"delegator-address\": \"one10udw2wr0xkuxuefx6rfhuwgkkchsh2sdl8lyc8\",\n                        \"reward\": 13058402532942512015,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9502580337e+22,\n                        \"delegator-address\": \"one19ylhvmuka4uel3e8hla3dvadayujseftezee2w\",\n                        \"reward\": 113555160872433634996,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+21,\n                        \"delegator-address\": \"one10utt7kd7jnjmcyq50an7d32jr5exdfzdps39lm\",\n                        \"reward\": 39230752580439316987,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16hxl0yxn3wfy8t0nezu8rqlvh9hkfvz4yz7m2t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.69941767332e+23,\n                        \"delegator-address\": \"one12v0yyge8m3hxujkxtakm0epznu5tyk33zgh65e\",\n                        \"reward\": 1.402496986016873705473e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                        \"reward\": 2.162635191413434799964e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9999e+22,\n                        \"delegator-address\": \"one16cs7wrpk38rzrrajm2cvnxgsua2gees5lhzz27\",\n                        \"reward\": 1.619055081368902146843e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.025e+21,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 7373863325092661863,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00000389786e+23,\n                        \"delegator-address\": \"one12kvy5medu2rj4qt3ltmjj0lyndrhm87eq2lkcf\",\n                        \"reward\": 1.183692421946635752301e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1wzcne5z5k8lvjytun84pd0cwwsn9j3z5h04u4p\",\n                        \"reward\": 1.837388948034096078869e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0168e+22,\n                        \"delegator-address\": \"one12xfkkmqm7cnv52tml8vpdawvax0kr8f4wrlp96\",\n                        \"reward\": 53743654089043086749,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5898e+22,\n                        \"delegator-address\": \"one1ej5qxvat3hr6che3y0ur4l67yz8vmwqkpp6c3u\",\n                        \"reward\": 36014269571064753538,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one17efjyng3k8yvm6ssmaxlv36l9r8ua28y0cuxp6\",\n                        \"reward\": 30507695818104646613,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9r2qh3fjy3tqtlcc9av3yxqq3rte3mfk45zj7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.27873e+23,\n                        \"delegator-address\": \"one1nat38y2yrla909c05gzs5hvf49c8wukgyz8zcj\",\n                        \"reward\": 7.158275297136676080397e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yh2rvwwecu2x9c9rlj3cp2kvpwvj4c8fndw7j3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vzlt9yygwvc62vx9n35t2l3k57adctyhzxn7ar\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5546e+23,\n                        \"delegator-address\": \"one1vegzurdx7vgpw4te5jwdvyvx4qsgdy3htk4ncv\",\n                        \"reward\": 1.662407055218960214949e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01052138106e+23,\n                        \"delegator-address\": \"one14ew2n5677rufu6e8n32j8pmvkgxt7gug3zajgy\",\n                        \"reward\": 274687547232705684471,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.2058955949e+22,\n                        \"delegator-address\": \"one1re6kh2eess322u0g8xx2pnysrqkcupr5x6c6a2\",\n                        \"reward\": 1.610921164742126098607e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.49532296702e+23,\n                        \"delegator-address\": \"one1eplkhwjeqfcfdvydmzmuczu6lzr3kq5ndsxk7k\",\n                        \"reward\": 1.486206140109862653835e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1llnqqpepyjlpmhr96zhrqpf7ekgd3dhx3jpscf\",\n                        \"reward\": 19575704418655158405,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rkczqp7exhwjknfcugmhgyzm7aww87ynhjsff3\",\n                        \"reward\": 4995115840628396473,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one1euvjnal9e5n79mc6w7k285nhtwvnqmqggp0zlf\",\n                        \"reward\": 170861662749222805553,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18886pfha5x9ds0ucssklqjzmvlwpzsptfy8cwq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1071232218e+22,\n                        \"delegator-address\": \"one18xp3594ljkgws3gxrexsl36umcw8jgztseza5v\",\n                        \"reward\": 24386970864404209766,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one13eh8wsk8wa8ag96qjrdrgh2g8ecx8vpwc6q73t\",\n                        \"reward\": 1.704165503762105638048e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1wec2k54hfe5s4aksjwd3tpdvxuj72wtpsnre40\",\n                        \"reward\": 97835283762685093494,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9hnyw8demj8n5r8xv5d05j2wlfpzxj52vm4nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13r2e6rfdllvatljvhkunrhygwd76dx2cj06rfe\",\n                        \"reward\": 354670824580116522635,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one195nm8x4rmyv6n98j20chzgrjtayxjfcafmwzux\",\n                        \"reward\": 68702440688515607488,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.813775876e+22,\n                        \"delegator-address\": \"one1d9u6046pvl9gc9yythqje423h28rpsudmdx7hm\",\n                        \"reward\": 1.697039077672684565337e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 108439681977964806326,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.636e+22,\n                        \"delegator-address\": \"one1grpk6706ct68pwcqr3vjw60xcuwjkerau7d9ww\",\n                        \"reward\": 274364892224536759355,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d60pue8upt6fjezlllqk6jy8xwa2v8qpt7g73r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4214e+23,\n                        \"delegator-address\": \"one1df49l0afjgltkaheussp8e7y708ac9zuyfpfle\",\n                        \"reward\": 9.649088261093443495924e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.12e+22,\n                        \"delegator-address\": \"one1aw687flqnwqatnhvdaw5ee9wefkxwujqqwz32d\",\n                        \"reward\": 1.981078073313029617159e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.30559109511e+22,\n                        \"delegator-address\": \"one1n9ugplqsgrlyv9rcfzr8wcxshdt0rha78zj80z\",\n                        \"reward\": 862530294944767618125,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.447240132248e+24,\n                        \"delegator-address\": \"one1v4qm509zq4jmcr53anjz2k7vp6xw6geqkl76tf\",\n                        \"reward\": 111334793688558824082,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kzhs0vfhv6q52xh5pq6z25qnaeaztrkmh50zfa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.454e+21,\n                        \"delegator-address\": \"one1kt957tv5v6h3ez45zpvwyyu59c2ej9dx0285qw\",\n                        \"reward\": 12308065820891033701,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.705427249791667e+23,\n                        \"delegator-address\": \"one1d0cdatalst607xazutqs3u799wrad45w5xxv25\",\n                        \"reward\": 6.267124814294125765918e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1y7c57dp05de53v6l2h3kcx48dmlcmj8slfgdwx\",\n                        \"reward\": 654109008781739781465,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.10506e+23,\n                        \"delegator-address\": \"one1ac0p66nvaj39k2jxahsdzt02chx64pzsh5rn2w\",\n                        \"reward\": 407927216288965668542,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.187501257e+21,\n                        \"delegator-address\": \"one1r9m98elzdeljz7exlnc60adftzkk2ug2w8yqgw\",\n                        \"reward\": 39151978710068722401,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.40044058e+21,\n                        \"delegator-address\": \"one1h2v0ggmma3369lhcn7e4u2sgcltphasvxjzuyc\",\n                        \"reward\": 48942162264968103853,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qg8fg3r99wzxtz5krhlc4869uwh34u5xd624a\",\n                        \"reward\": 212953515122233117,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17kwh4wz3r6hsdepgdguwr80d5p6d330jn5qdmf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one15lke5hd8hvz8y4srm0u3kllv0g6uedd0dx7sqv\",\n                        \"reward\": 13364755556539591541,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1e9pe23rucwums3u0ey8htt6lxdc5zw56evdqtd\",\n                        \"reward\": 44845889227418619143,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ed2eg7hnzws2wy2xhwt5yrps6gtfn64y9uw4t5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.10189819273e+23,\n                        \"delegator-address\": \"one18ex2drgrxq2y5l858h0e3j2k3lkzsa3hppzkuj\",\n                        \"reward\": 2.406552756294226684948e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfmxzl7v005dza0jtx9hmk35f4ly054y3fk5ac\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.117e+22,\n                        \"delegator-address\": \"one16cdt48q05ryx3ykakmen77d8l6lm8xgv8m48uj\",\n                        \"reward\": 300477781610875432084,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.24295e+23,\n                        \"delegator-address\": \"one1e9wxfrhkrzv9n8ycg482xvkf50mw720zhr37l3\",\n                        \"reward\": 2.205358607781883474634e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.27723289284e+23,\n                        \"delegator-address\": \"one1sszftgehlm0ph9s0u0ds4j5h0e2cnjygz5wvxn\",\n                        \"reward\": 7.609717993696734271803e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.009713e+24,\n                        \"delegator-address\": \"one1e0kcszrv0gcv96qauwnzctc756npzgf7073fjl\",\n                        \"reward\": 5.237251324625039091801e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9357e+22,\n                        \"delegator-address\": \"one1dh7xvdqwlh6tj8u4d2hdzewkf99f7a3z9u8mdj\",\n                        \"reward\": 244367241011398615500,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13fgk3aqmmqp7s4cv7m6ugl5fa08hwneekul2fe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12deatk5yn3zwuzcru3wtkgq2077ndcdss4j200\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.55756124864e+22,\n                        \"delegator-address\": \"one1vxsdcdgxpa9hwh5xnmnz7ehmlfmdwhnrrxyq98\",\n                        \"reward\": 389956124739588972049,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nrdllzasmpe4yapkw336aa5dakfn387sgks8v3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z63t53093vs0jt8xhvhqqt3qnycykq4qqydmvx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s5c20sumh9k2cdv66jledl9yjav3udwaqpetks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.15e+23,\n                        \"delegator-address\": \"one1gwfk4fdhkmf9eza0zu0mzkx82wu8nuar90c5fv\",\n                        \"reward\": 1.269065021522741565616e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 428571500000,\n                        \"delegator-address\": \"one1ykqgnpeqln4kzhgsseu6qg790655x562064wmc\",\n                        \"reward\": 6891046012,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333332000000,\n                        \"delegator-address\": \"one1thn7hnq59wap2hfm8g93m6zh4n42pdc2su7664\",\n                        \"reward\": 6368143098,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vp48r9z0fwffew379clhz029y5rjwt50undqaw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f9atls5hashsdvmg7mxxjxgphx74t7tdkw05d\",\n                        \"reward\": 318277484058091137288,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 3.6536881659e+22,\n                                \"epoch\": 314\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1nlhvd9av9qhddz2a0ynm4ftgegqe4kw5ax8y3v\",\n                        \"reward\": 6961434789712808016,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16ef43jr7s8hcw89yr84l9sxl3xsta5xh4qq2cg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gzk6r9zljse9kcctxzugk7p24hql2rvp5k03f3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1sewr7mmyheycpty6aejgn2tpydp0mszqwt7rer\",\n                        \"reward\": 121458362639422560997,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.96789824949e+23,\n                        \"delegator-address\": \"one18p6kz3lp0j79gpr9jmmzq6whfgw3eaksjplklk\",\n                        \"reward\": 271725160110522339894,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0091048859e+23,\n                        \"delegator-address\": \"one182kse8lthze6e27cz4nw47ns947sx7m2qjwcqd\",\n                        \"reward\": 2.414639883951620712377e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.414215752e+21,\n                        \"delegator-address\": \"one1khpmdjyc8qc9ye5np6dpe2paqrz4e2jxymwpj2\",\n                        \"reward\": 58806342176791874858,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1f5ddkra7wfkez7lav4p79u390gnj7sv85funzu\",\n                        \"reward\": 19846966148644181560,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dav9m37rtreue3804nvv2zeyxp9s9mcred4vh6\",\n                        \"reward\": 2017449999019361898,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4414e+21,\n                        \"delegator-address\": \"one1wvy5v5n6vwtlddx0hjzt63d7fvudad60andqe7\",\n                        \"reward\": 6320976013297868708,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.45e+22,\n                        \"delegator-address\": \"one13sd5zlunak3dswmv3vngwfanumke6jzqy834kc\",\n                        \"reward\": 346963718108170314593,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one14mr8fcpuav2hhmja0zuy7upjmpc5w0avnnu93s\",\n                        \"reward\": 239285322833221484002,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.153e+23,\n                        \"delegator-address\": \"one1xfuukfk4a72e2a9hqh2vmv55duvguv80sxm5tg\",\n                        \"reward\": 273595024933476148577,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12sqkj8jq4ry00ag6hvsj674qm055ah8xe8wx23\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one1uq66y79kzgjgfxxed0jspr8kewmqeac59zern3\",\n                        \"reward\": 135029884505764759236,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.8977054241e+22,\n                        \"delegator-address\": \"one12fd5nqu3alcyaa0wzlcq6xaj6j0dtz0r0s4ygj\",\n                        \"reward\": 65960305099882769527,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vv5hh7pw534v9qsq9wrsqt5mfg48skgkky59cz\",\n                        \"reward\": 27556604860321114579,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kk6khwfefpd0sekd6h3aeaa6rvmnccjxa9zwrx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8e+22,\n                        \"delegator-address\": \"one1zvdmhs9s0k6atfdgmeqf4fugnsl2xsyu0jkmxk\",\n                        \"reward\": 872355596850909096780,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+22,\n                        \"delegator-address\": \"one1snrl5pznjfhjcr0yf8mufcs7jpfk9txy0ecdnm\",\n                        \"reward\": 838633651992879229672,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1uk7yrtqmqsa0kr9xyakxqh4y8vlhquxh8pd0m2\",\n                        \"reward\": 362323542332577813001,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.00219250493e+22,\n                        \"delegator-address\": \"one1ecqnh54clrlvx2zfapegrqft0lxuafv7hq8jjf\",\n                        \"reward\": 2.066608688317100509567e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.192e+22,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 229735653021802221256,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4001349e+22,\n                        \"delegator-address\": \"one1x6tmm3v5mujgdcwg8q7s8rdcy7xjupj5dmtvn2\",\n                        \"reward\": 35622637831283004353,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1jln2hngr060rgtxx0wzfy6yn2qya5k37wn0vem\",\n                        \"reward\": 4.191591354398123548668e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5745796973e+23,\n                        \"delegator-address\": \"one1ernsyxndcw6nrx3gr0lndr6m4zh7yyzcq3y8yf\",\n                        \"reward\": 719066998533428225912,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.952e+21,\n                        \"delegator-address\": \"one184eapja6e9dar4uuae8du6vtz4tf46yw29n5rw\",\n                        \"reward\": 4101402540175587250,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ekqjas85d6d9axn9mapgr3dr9c5kc503qcsdkd\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 6.48e+21,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one12xk2yqnla9y5qn420dgjj73pc7jzmgptktlg82\",\n                        \"reward\": 22394208648836570570,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+22,\n                        \"delegator-address\": \"one10yxqaa643fy787vfmenyylcvccda6asant5wmc\",\n                        \"reward\": 62010101698573871071,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1qkygud0y600zrkp4n208uka62pe673s8tddxxr\",\n                        \"reward\": 2.11354222405354932915e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.366832e+24,\n                        \"delegator-address\": \"one1ul265qs7zvxj2e9kpfvlnju4tvky5g6dz7skjh\",\n                        \"reward\": 3.404496685908162581713e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.06737e+23,\n                        \"delegator-address\": \"one132ac9ttprd7t07u4mj0cldmul8xrm46u2struc\",\n                        \"reward\": 431773977692185639303,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7e+22,\n                        \"delegator-address\": \"one1tf7h2guslm5xw8lc0mje39j5gg9kgulvu0ldhu\",\n                        \"reward\": 654596165110476631759,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1v7f26htre4a5rumzsfr9kcfydxu684ufyggl75\",\n                        \"reward\": 1.102488040609057741143e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.409e+21,\n                        \"delegator-address\": \"one1xc7rc5dmvnmjrstq8vesre79hr89mu7h79v05z\",\n                        \"reward\": 28576458825246063108,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1dxrd7xugqts6jh2dwfmt95gaykug2d2x6qnaqg\",\n                        \"reward\": 1964897424284882647,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+21,\n                        \"delegator-address\": \"one10c2ldg24fsrxhq54pys63sh8mfr5gjw50fa7qp\",\n                        \"reward\": 41302496341671185221,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5316251531e+22,\n                        \"delegator-address\": \"one14vv9tx5g809zfgygzwccsr05a8shlpcn7j6whp\",\n                        \"reward\": 26085686229120586719,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.55e+22,\n                        \"delegator-address\": \"one1z5wq66xu2nr6zvydxj6mkztnfxasxfgy3yly9e\",\n                        \"reward\": 81939056431389274227,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1fzne3d2ndvxpx5vx0v2te7zzjprkgcryckeuuk\",\n                        \"reward\": 11592453300362593737,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.14e+22,\n                        \"delegator-address\": \"one1ln66zgvc2krv9v7hqauws45ktnal6jmws2c0fa\",\n                        \"reward\": 9225007048841522174,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f4mh6cwxhqm9kpzxmvrtu3wnvvc6hkq2mhhzef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2128e+22,\n                        \"delegator-address\": \"one19t8dvgu9uag8uyq3l8fznd6emjxaylfn8e7pgf\",\n                        \"reward\": 148569333594442782915,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6276e+22,\n                        \"delegator-address\": \"one1cs6j3660mwqxhslh38fync3tr8fzeuk203vgjh\",\n                        \"reward\": 776951586455626004377,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.41e+22,\n                        \"delegator-address\": \"one1c5st8sfyreqjae0v4ah8nwdtmx80atcdamxden\",\n                        \"reward\": 76411124940489706876,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+21,\n                        \"delegator-address\": \"one1c5hl3pzes0yn7r5v4dls65rppxc8kjfh7m2fkp\",\n                        \"reward\": 1551749222923394375,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xwpkmnn78j2ajs6e5kwt84cfmm0u5dpxe45pry\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vgkvn0xum6mdjjw8vm3h0xyd8795u6vv3upfgk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one169mgllpxsz6h5dt5nzgxpy7qtkswll5qade38y\",\n                        \"reward\": 290595339391903875519,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mgesvhk7yhyc65mr9yardtsmgkyafxn8myfy3l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8663e+22,\n                        \"delegator-address\": \"one12w5e84ulqjgz23vjufhmpsrhaamccsjw97zend\",\n                        \"reward\": 12674713464461563792,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kpez3259ezz0yg2e8l0y3q2wmp9lg8sd533yks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.157e+21,\n                        \"delegator-address\": \"one18wd8hfapg9yclnnmvn8tcw8tcfqf8899jkwz75\",\n                        \"reward\": 23675954024595926601,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n                        \"reward\": 256463399782381595017,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12v440thmnyjmfvmk483m3khwa9ffmp5fzt47fq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6309e+24,\n                        \"delegator-address\": \"one1sdcv5w7rvwdnf5cqxve48sdggcsrrgmcy2yydk\",\n                        \"reward\": 212483499791949777298,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cq4gv3clw83z39e2l8wh3eptlwkr47anw6ajfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.029617e+21,\n                        \"delegator-address\": \"one1rfp9dtfxxm3dw6fmamemuaq354vfk6ze6gu9kg\",\n                        \"reward\": 21069286737201729523,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1tlqct9r67j7n52adtl34yhyc2t0tvt7a575zv5\",\n                        \"reward\": 36823348199376443661,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.34608512852e+23,\n                        \"delegator-address\": \"one15scckneaesmkvynvv4fd36lzrj0fm72edjtpym\",\n                        \"reward\": 2.561540482983578933551e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.031031685e+21,\n                        \"delegator-address\": \"one1rn3ee68w0hzld6qa6n2urq08ptvksy7vjru96r\",\n                        \"reward\": 40259032776487475092,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gef0jlqktwlzyhkwmvswujgflq3y0uy8jazk4q\",\n                        \"reward\": 253815930041343553,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1e+22,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.0418e+22,\n                        \"delegator-address\": \"one1kpaa23yphk5zqttel6jpdkxnd9zys5crwh639p\",\n                        \"reward\": 48628274223140248176,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one13tayz72t0egpp5lyfr77wkapdfzdlemgv5uspe\",\n                        \"reward\": 17516282327678601978,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c4vn4an3s0p97yqy3lvqsnt5jge6hh4puy2vwv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.8375629744e+22,\n                        \"delegator-address\": \"one1ccccsdqayjjexxxwt5zh5k95rkq3088dtrflhw\",\n                        \"reward\": 384990299104505045910,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0045e+22,\n                        \"delegator-address\": \"one10yfpuu9h0jdxzl3mfltgrjwhcxtkgdur6nxav8\",\n                        \"reward\": 387086183941301353799,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one158p7lac9hay7ktsmw5mr5umf947krtnwglw2q9\",\n                        \"reward\": 37922558012818991472,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.522716292e+21,\n                        \"delegator-address\": \"one1fn8hktfm3xhknn9y9ptw0wj9evcn0xzmr5cuws\",\n                        \"reward\": 10359031718224627967,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14c3t6esxwnz44zr7ewyplsxu3ur8gl902wuuws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.52083995e+22,\n                        \"delegator-address\": \"one1lgsujrall97708zhpxdn5ursnyh3g6ue8gsj3l\",\n                        \"reward\": 196943149315376536550,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19reccwnh02m0mu4af8xzl882haegwc23sk22lt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8588e+22,\n                        \"delegator-address\": \"one1fgvg0u3239u2qa8dnhdkhfpy4ag05f9kx6k525\",\n                        \"reward\": 78867682532302885012,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k0yc43y33tqata3jpvydptdyxzmtlrxy66fnm0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13gv9shkzs847ayy6ggjxssv9g73jlvydlem2ra\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l6aeqm2aal8cpelqqf8tcg8p8lkhjr8a22vx2s\",\n                        \"reward\": 295012612615575880,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.85008897426e+23,\n                        \"delegator-address\": \"one17x7u2e5dxhvx0l4q2r8n8lzt6444hp72v32ttu\",\n                        \"reward\": 2.760773707688970947028e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5538467053666666e+22,\n                        \"delegator-address\": \"one1t96pv6cd0ua83y7nwzqle22lw444xz9vjfrn99\",\n                        \"reward\": 293588147899433014005,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0747494e+21,\n                        \"delegator-address\": \"one1zn7w8pj6540v0kmdf5l7adut8eup5xpwmx8jt6\",\n                        \"reward\": 10058519129906306569,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k2vu3yqd88phpvkdenzaxl4vcv4sp8224ns250\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fdw2f8wfkgl2xxn5t70pzaq0409f4lsuj6ytu8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1723e+23,\n                        \"delegator-address\": \"one1p2g6rv7hg7hg4agrlutdezcc9vaxjt2ceyz7jw\",\n                        \"reward\": 203762927009895147008,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0064752875e+22,\n                        \"delegator-address\": \"one163kgcjkd8k68d272lgprfhz83e24xncczw22xk\",\n                        \"reward\": 153787096919958382245,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9375607e+22,\n                        \"delegator-address\": \"one1dt4ddascgkfxs0yghxltdgpf37j33pde9m399s\",\n                        \"reward\": 83396321832020950,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x6mkrt7cacrg5xgccn92h9gz9hfaa2vfaalq3w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.08082e+23,\n                        \"delegator-address\": \"one12wkphqe9cysedrv654vkznjfde3f7hk50zk9d4\",\n                        \"reward\": 804426703246530623287,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0028e+22,\n                        \"delegator-address\": \"one1m8rlmxtsccgdj86x98jgwhdlsnxlcks96m0ldp\",\n                        \"reward\": 62110157896829509751,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6015386668e+22,\n                        \"delegator-address\": \"one1j64a0p85hwp7ktzqsl2h7jempnw88k0p304ldw\",\n                        \"reward\": 70125675213404401938,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.442e+21,\n                        \"delegator-address\": \"one1ge659dk07lxyhnsfe7us3lc2sdv66h5lwvgenu\",\n                        \"reward\": 42380886428724631143,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.072153052e+21,\n                        \"delegator-address\": \"one1sg3anuqxx8j6dhx089c7jg9rttw8k2ep3ztgjg\",\n                        \"reward\": 31471758940622156789,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2549e+23,\n                        \"delegator-address\": \"one1784amhxlknvgtnah6lzgghj5l0lj2ung038tsv\",\n                        \"reward\": 559937506024123775009,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.000009999999998e+21,\n                        \"delegator-address\": \"one14t2ucdt3key7z0d2hqlgkfrw0xrt6p95vfm42d\",\n                        \"reward\": 70302925285081,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x43shru04v9z7us4f0p954wrly4yv3230cc4ta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one19s3a5sfagn0gw64jj0hh9w8846ys98gk6yna3l\",\n                        \"reward\": 4172706482424936690,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.044e+22,\n                        \"delegator-address\": \"one1karm9v26gay9pt4awk45f749tqlrwx4zpzmfvq\",\n                        \"reward\": 121145343172470047996,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1ma3sc293nsnw986yxmf53hdxdpvsa3khekrpjl\",\n                        \"reward\": 740718420981577463,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1018e+22,\n                        \"delegator-address\": \"one19dlrqz9483ay5sepgx459c2ag3t5494ny7dttf\",\n                        \"reward\": 53064223138363635891,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14hsyh49s09mts7lvpxda4qt6356tch0r6pjxvf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1wnsq5ynpx7vzgekysscrrajz46e4vlek9m2tyd\",\n                        \"reward\": 38667358947156219411,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1xj6sfxtx2rvzcz25yrmvte9tdmw0xg0leq84k8\",\n                        \"reward\": 1.537213669091939229509e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.71225038048e+22,\n                        \"delegator-address\": \"one14st34urqt9ps3rtsq4cqqp7npepxglhe75cp2k\",\n                        \"reward\": 54531816010391689264,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one15g2sctt8e2a5j4l2c0vz8yy0a60ter288rj346\",\n                        \"reward\": 13402502502396570287,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1fz5zyszycq4seu0dqqzwkhqa8al39l0hswdaek\",\n                        \"reward\": 173355587178815680409,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h8n93uxvhr62t8k6w5jy9p07ttjmwxzwhzhr6p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.09515e+24,\n                        \"delegator-address\": \"one14z84r4a4rhl3n09u0kra222vev4sh03k9f52jl\",\n                        \"reward\": 6.4644520485329733346153e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k3zd2qsak2qd62vytfhuxz53pheuy84j7myhtw\",\n                        \"reward\": 2031348756146258653,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1978t7nzmgh9qwks529wqsye6tz2ll4jvd74g0t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vwfplktczvnlt8zht3n35v4za7wez35krwzekg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one1cztf67zxuamhr8mwflualfduhqecummtz3vmzn\",\n                        \"reward\": 36565507645623483527,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one197jknfym60e58nt6y6cfa2t67u94z7gvnlc97f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1yk6ntuxxpmxxauk42qkrglfar4e7eekv0t0tgr\",\n                        \"reward\": 8440076858004302467,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.3040714844e+22,\n                        \"delegator-address\": \"one10ayjz83f0lrawxtpcryc4xrpjhtr4a8p9aure0\",\n                        \"reward\": 975208264877983750151,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3e+22,\n                        \"delegator-address\": \"one1ezj0qu6xe084l4d0la726vsqqe9cclhv2xqy59\",\n                        \"reward\": 5447907614528719075,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6186716666666667e+21,\n                        \"delegator-address\": \"one1pzj6mqp82kyjaanep3c28km67mwvdks6jvldrj\",\n                        \"reward\": 6309666976101521415,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1dqee5vv2ntg0ugvu7vrc662knqgde3g6pn9uzy\",\n                        \"reward\": 15586156837346186578,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.14977e+23,\n                        \"delegator-address\": \"one1n4yjz50nw3n99lm6700jey73qxfs83eetps4dd\",\n                        \"reward\": 1.778636567626859930658e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3875e+22,\n                        \"delegator-address\": \"one1h04dvta2lqe94qjqtrgwd0m0599gj2q6mh5pf0\",\n                        \"reward\": 9504782057317843014,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t2uhl7z5ra3vfgavhjkuc0egcaweyylem0ndu0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9975004075e+22,\n                        \"delegator-address\": \"one1ppl7w28wynse46evkxp40dfg8ewmxjtty6d689\",\n                        \"reward\": 129108471852042860940,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6e+22,\n                        \"delegator-address\": \"one12day5jc36muy6etweyq4j4mkcn5eejr9kvp3jr\",\n                        \"reward\": 12323416645294495260,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.18e+21,\n                        \"delegator-address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n                        \"reward\": 11822821325294015628,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 51899531860680501,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y62khwgmutdavcs9ucp4wqhmdyg5msmltzv4uk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8496924223e+22,\n                        \"delegator-address\": \"one1j5tfzmlmazg5hhms6d7x8rsfd5wd7lm8h2zcvd\",\n                        \"reward\": 51357634456275267526,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12k3pwtaeaajk8y3zd80969vaksyqfcxhpp60tw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18mvmqccm7fzr76pm80el9m92mccnsrqyqes9r4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1288e+22,\n                        \"delegator-address\": \"one1cm7g89x5j0y7f0mges28qtsen92wqr0vqurl5l\",\n                        \"reward\": 8957153781133620605,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1r65rv2n79nx6m3en8aqzsd0m9xz3x4a4w465gw\",\n                        \"reward\": 227647289911934199862,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one19kcgd97z9adkeq7a4mpvt2ud6adtr3ynfmlmfa\",\n                        \"reward\": 5788073310782866668,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.82451468535e+23,\n                        \"delegator-address\": \"one1hwg37qjh06kwfvtk8yq6tv44twv0zex8yaynzk\",\n                        \"reward\": 2.488424017103350476572e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8415e+22,\n                        \"delegator-address\": \"one14xmum65qmpl5l3fp4pt626jyf672tafdk3hw39\",\n                        \"reward\": 244816505697480984611,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ywpz0ax0pghwmvppcqtzdaev3dgtlrjg2zcqwj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rpgy3s25vp5c6e7x4l2ux6nepgt9f3vdykuxnt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1lxx6e29fs99vdjct5fa3atx0w56zym35kkh9sa\",\n                        \"reward\": 181798895912549459257,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.6633e+22,\n                        \"delegator-address\": \"one166t266vdh4ugz92ggushu9c2ulxrylramc5vye\",\n                        \"reward\": 854837249510709536254,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.20988e+23,\n                        \"delegator-address\": \"one1luqxaz8zz2ec3cneqnjdlznfg880zhp2hzgqx7\",\n                        \"reward\": 1.1668445456260926396632e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.12049e+24,\n                        \"delegator-address\": \"one1f8qe0v9c3dj25u6p5eskcsv4uaj39enjxn564v\",\n                        \"reward\": 8.854290685871553117269e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1tn2cdy5nw7f9pe6q5tqk7zac6xmh98mdv6txtc\",\n                        \"reward\": 308285232367546434000,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.99e+22,\n                        \"delegator-address\": \"one1nlepur3tkhqejte73t34jgrkphyd7h46nr5sv5\",\n                        \"reward\": 239215885944931744561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1lp2qr8pu63t5yx4dxvwfle4ks7l8mqn5r4g3ls\",\n                        \"reward\": 187518548450557976105,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kmc8tch430wh39anme4eskwhwfkjlrcqmz5gel\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.667e+21,\n                        \"delegator-address\": \"one1q4md9dlrlg9g7u6vxxunajyqm6llajudckww86\",\n                        \"reward\": 19005387338451266375,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.50012001e+23,\n                        \"delegator-address\": \"one1vfvg9jnuqhh6ls74mz20qh6h6hsjwmxh4t89fa\",\n                        \"reward\": 963198478413697651802,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1000000000000000000,\n                                \"epoch\": 314\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13lxywjkz4ygqdg7ejy7rjvspexa5zg6tafkc68\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 8.95e+21,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1gnnjym5e30wl8n2gfmerypgs0zt3627zk57k25\",\n                        \"reward\": 11172766104808929261,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.787052332276e+24,\n                        \"delegator-address\": \"one1rffqrgdpzx5jyl793k572fmrxk4pzrunkultev\",\n                        \"reward\": 5.601246406974854253352e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1889hh7sdy4myne4gr7ys5v3ms4anz9az6nzew6\",\n                        \"reward\": 2.137400776579248575906e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1jxt8k4w70un5exuwe0prnu3wacvlve5dldrr6r\",\n                        \"reward\": 85121677936342430810,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g9daa84cdu4fg77fga7ppdr7xv9vpj5zu2gh37\",\n                        \"reward\": 511022567153717832860,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1ng0y074x26qfddx9w0p34l8apyw6g2pdj7t00q\",\n                        \"reward\": 160305058243443204605,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1720235906e+22,\n                        \"delegator-address\": \"one1fvk8tcpn8dxk7vcy86u6lsc745dcs2tel6k7fq\",\n                        \"reward\": 120985967464852029543,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1dehtnvz7yf6v8d9jj972ytdfd5xg3um9wm2rl9\",\n                        \"reward\": 1.498055440135401544993e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eg0fzsgsuew83kcmf9xs4ek6hddf4ex0xt7ht4\",\n                        \"reward\": 25339978268463372,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19cxraq8gkhlum6e9qgkduzyjzmd9fpy5vc7y8w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7058e+23,\n                        \"delegator-address\": \"one1422pxretfsjn688cx2cyw0nxhk3r2qtyam48uq\",\n                        \"reward\": 1.755399214793719933706e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x8p9ty6wmjqf2hq45njdczpkhv7wmc0447q3e4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19w8pthyxs3hvnpy2puu2muxansj6y8zj05t3x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.8767e+22,\n                        \"delegator-address\": \"one1pjwapd6llr64jx437a0ncqqxdayd33u4kqut8w\",\n                        \"reward\": 207248141367346318262,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16hnkcxuwhn4lna6k6x8c9yacekqsugn7aua2xp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+22,\n                        \"delegator-address\": \"one1dvlpcwzjfp73m50ntzm5tzfs5xk8zlpej0draq\",\n                        \"reward\": 870084567441894934061,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.001e+21,\n                        \"delegator-address\": \"one1ag7qa7tpd0gy2ksjzdrmkrnxtw39a6uv0aemjf\",\n                        \"reward\": 28942042105175816,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7crel57ykdw0jsdqt3qrlquaus9k322ee98qm\",\n                        \"reward\": 5245654448574760355,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.447e+21,\n                                \"epoch\": 314\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one16kld4j2r6atw7lues7tj36qdd9rd2cumhp4tkq\",\n                        \"reward\": 1614417813050665593,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1ex9a46773wtsj455lsjykdmn8al6uqalgnlhmz\",\n                        \"reward\": 4.469403577129078946214e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tf6um60tpngwrvvdtwa4x88mynre36amjxm2yy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.017245199e+21,\n                        \"delegator-address\": \"one120cldy7u38gpztxrqpv99qrddkmatdvmc9s39w\",\n                        \"reward\": 1668509916025343990,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uxgptktqjl7eppyfjdydfpcuztextqeggu4rnd\",\n                        \"reward\": 905579455372311498,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2773928e+22,\n                        \"delegator-address\": \"one12z0rnxpk42cyun4lhxy37p5v725860s8f5npzh\",\n                        \"reward\": 39838334187146054615,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.60366755695848e+24,\n                        \"delegator-address\": \"one1apuealayrtv3xa002m3yr7hwwca8cuny2jg6wy\",\n                        \"reward\": 229783319995536450385,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.855e+21,\n                        \"delegator-address\": \"one10y20dp27qqpnvdkqjhwa22c6704ydp7pjjefrq\",\n                        \"reward\": 149886191292395003,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+24,\n                        \"delegator-address\": \"one1tvxurnzczfwq97jethcn5vjqye7ckpvv83cmnl\",\n                        \"reward\": 5.769350306136096490076e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ldx7y2fmr6q3rmt2krp77nx0gwyjak4hydq3gj\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.282e+23,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one12cwc8q4r2c6wl6a797ksxgc0njs8j4yshavkky\",\n                        \"reward\": 2.569242191030071134726e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1ka4shjasftw2hm6et2m46zeppce2gw5z9dxkg9\",\n                        \"reward\": 410128649436501957990,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6797e+22,\n                        \"delegator-address\": \"one14xl659xzvhwn7yj0s9pfjulm8l226zvdzcq8hm\",\n                        \"reward\": 137778618491699191660,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 666660000000,\n                        \"delegator-address\": \"one15fy3rp6rnfx5em94jsy7se9jmhl6xrczpdtpyd\",\n                        \"reward\": 1360820352,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.55988666666e+23,\n                                \"epoch\": 314\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u0pezjgzxxemesagrztml62dkmr5vkfy3edhd7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.86994075488e+23,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 1.443283758329975040141e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rytfds72z4xn927h0h5kqq3qhlw460sy2e0twf\",\n                        \"reward\": 121284659640319628549,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.89e+22,\n                                \"epoch\": 316\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 679688332253049317,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.994e+21,\n                        \"delegator-address\": \"one1840y49t5ug5qzstx0r9ev0pwfjacck9hped0rm\",\n                        \"reward\": 11071027325897884483,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.970940079557e+23,\n                        \"delegator-address\": \"one14zmfx50m5ecjugrqnqd2362kygmwxgu3r6my40\",\n                        \"reward\": 115455014322955686484,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1u97te20xm0j4tj554gawe7yzpa5yhlh3086vsj\",\n                        \"reward\": 134042222494967570,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1j8mzv4nu9rd32fyx6wt2qujcql384xn52u33tt\",\n                        \"reward\": 230881327016720326735,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.4886545358e+21,\n                        \"delegator-address\": \"one10fd3e0v2wpfpvgk3umhx2lmhv745cq7xzlrgq6\",\n                        \"reward\": 56328929761286436675,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one139ujmnlqdradgs9rmzwtpnk0n5yyxe86quj7pe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+21,\n                        \"delegator-address\": \"one102rjnjv9wv4upjgt9dkfypfp8r7mzcnlnjmfsr\",\n                        \"reward\": 39614220733564454918,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 10000000000000000,\n                        \"delegator-address\": \"one1zzc9avvfvwtexj9rgrfeshjvujysu6ngrqrkav\",\n                        \"reward\": 36933517926994,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.33334e+23,\n                        \"delegator-address\": \"one1nycq26mln9yh47zq7t6kmynnkes92met2kumk8\",\n                        \"reward\": 734130083213510623689,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.99587e+23,\n                        \"delegator-address\": \"one12v7lp2qa3y4u7cszumk9p0v4q8zwdclyjv9n3p\",\n                        \"reward\": 102193890823688500348,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.174e+22,\n                        \"delegator-address\": \"one1wmd7a8pv0mjs2cha0wystj3a94depnqjdtf94m\",\n                        \"reward\": 9994175644533086317,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0830608184e+22,\n                        \"delegator-address\": \"one17wdddq5yhruk5wvths70m0sfey2c0tn8mv23dd\",\n                        \"reward\": 104746451949451605386,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1juu226kkyy8pddyl9xaz9526kmp7kd63h04fgz\",\n                        \"reward\": 546049425452941247311,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.06237e+23,\n                        \"delegator-address\": \"one1vklxs3pmyteyswtp5d79w7yg2wjtl69jy9ya4f\",\n                        \"reward\": 277400169488049830025,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.376e+23,\n                        \"delegator-address\": \"one1ahxlcwawlalnk35weehcg0rfvv0tgt33ga6058\",\n                        \"reward\": 909295649635008615741,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.04516862909e+23,\n                        \"delegator-address\": \"one1twzqd42taqua2r7auwsxzwcrucfwp9uu58tq35\",\n                        \"reward\": 690673900847763618984,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+21,\n                        \"delegator-address\": \"one1xtp6sq0n5szl7xuqsp2ge6d6gh02cpv5zekeul\",\n                        \"reward\": 2096486405764540699,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one17zygwwlpv5pklsw9uh63mk3u9hv0dl894yguvr\",\n                        \"reward\": 60051004925129730264,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one16j3cs5ql335ck93287jsnv6cjmwpl39qltvp8m\",\n                        \"reward\": 57046027809567281188,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+21,\n                        \"delegator-address\": \"one1h2xk4srqlg3amnpvqr0tz09c3c00yasmwkx7sk\",\n                        \"reward\": 25670712514305403935,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.54e+22,\n                        \"delegator-address\": \"one1t8372ngc5trnexc8zmflgt57hqgf399plf344e\",\n                        \"reward\": 137312301842376050595,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eay8y2cweu6yyjjzrm22xz5le496tkg73s98dz\",\n                        \"reward\": 2341896895586420183,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.550546119e+24,\n                        \"delegator-address\": \"one1cg5u4k8s0g7zur5xlzcmjctyr2dk0gu6drmgtl\",\n                        \"reward\": 1.30203955403805096094e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 142857000000,\n                        \"delegator-address\": \"one1nmh2hevu7k6st8slncyt3wjvw4smxaan7ja4pc\",\n                        \"reward\": 319077898,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one13vz7ynl56jn2haqml3ayfjcfg65apdwkercqs4\",\n                        \"reward\": 30752945877023516162,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.127e+21,\n                        \"delegator-address\": \"one1rqvvf5rmpy2cqycfhhm8q9zggy594cp2lrhlca\",\n                        \"reward\": 6891054669940173168,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+22,\n                        \"delegator-address\": \"one1zq0nv6y07pe3aaterlpyegwjvlk07s9nayxxcf\",\n                        \"reward\": 27001666598703136472,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.510302e+22,\n                        \"delegator-address\": \"one15wny76wru0pqcjuk2a0d5042t3324n0904hk3l\",\n                        \"reward\": 22138616124273914533,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+23,\n                        \"delegator-address\": \"one19j3yh3kz9s5crk3k40hqn4e5few9dx378fjgrd\",\n                        \"reward\": 81488314556409654927,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6638e+22,\n                        \"delegator-address\": \"one1tj7snelqf8y3mp8mjlw88tchs9c8flwr362ks5\",\n                        \"reward\": 22676733459887222876,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one15sx9mxa75jpzlmxqm7edujlna3n9eg5xc0fn6d\",\n                        \"reward\": 34051705773537413236,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.73248819e+21,\n                        \"delegator-address\": \"one1jzzz2qrwn62vd8p2v4ylkteyey6k9d9mnm3jpt\",\n                        \"reward\": 3177439741227090933,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2249e+23,\n                        \"delegator-address\": \"one1z3jrsauv66yhng68kj2d0yca6mzm88a6vjw4k5\",\n                        \"reward\": 68044551410039960889,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one193rjfmhvf9yyynu44e82txjzwthz0jfemnszd9\",\n                        \"reward\": 55551107363899214110,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1zxqpmswjduv3m3lzu33mhgxwr7cyv59ezfppjc\",\n                        \"reward\": 13887776840974694733,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0000001e+23,\n                        \"delegator-address\": \"one1w4ya9t7qv5k4ez559afr4gpuvajumqcwcyszc4\",\n                        \"reward\": 71334277813875262485,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one185vrxu40r46nankzhtkgvhdwjewhfkpqlnkfzj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4306e+22,\n                        \"delegator-address\": \"one179msjf4nprp6wg75assrtd5rafmf0rq3hhervz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Chainode Tech is your partner for staking & validating on cutting edge blockchain protocols. Our Validator is run by a team of early contributors that joined the network as Foundational Nodes since the 1st public testnet. Current P-OPS member. Stake with us for best experience!\",\n                \"identity\": \"Chainode Tech\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.490000000000000000\",\n                \"max-total-delegation\": 5e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Chainode Tech - We know Tech! - Active Backup & Mngmt., Low Fee, HSM based Security\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"https://t.me/ChainodeTech\",\n                \"update-height\": 5234867,\n                \"website\": \"https://www.chainode.tech/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1a0au0p33zrns49h3qw7prn02s4wphu0ggcqrhm\",\n                \"bls-public-keys\": [\n                    \"084f12db443894715c3b18870fda1e2eeb2f13e6a212a834fa162c7eb401808ef9a40e9ceea19022c0b443aa88e4950d\"\n                ],\n                \"creation-height\": 3359297,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0au0p33zrns49h3qw7prn02s4wphu0ggcqrhm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"KeepNode2\",\n                \"identity\": \"KeepNode2\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"KeepNode2\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3359297,\n                \"website\": \"keepnode.xyz\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1zdxjy50aa9kk33pxrjy8yerpgz49hx0nhc2r6k\",\n                \"bls-public-keys\": [\n                    \"d1b8cee9df1626f64f233661d6e531396245d8dccc34715936c5f1c00c62b22352f0f6bbeb71e03eaf5a4cf4fe384a14\"\n                ],\n                \"creation-height\": 3359353,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zdxjy50aa9kk33pxrjy8yerpgz49hx0nhc2r6k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"KeepNode3\",\n                \"identity\": \"KeepNode3\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"KeepNode3\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3359353,\n                \"website\": \"keepnode.xyz\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 87202,\n                    \"current-epoch-signing-percentage\": \"0.999770700052738988\",\n                    \"current-epoch-to-sign\": 87222\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"35718665072759509126800000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.115951547777028245\",\n                \"blocks\": {\n                    \"signed\": 9778368,\n                    \"to-sign\": 9799780\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.120854284578023308\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123940508960133341\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125152672084780007\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123575206501259368\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121830296467403423\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121772205475388244\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121113176652122316\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122717134840594712\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119355975265017019\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116904101983444051\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117434849846750830\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116602018812571628\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119191784439062988\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119763383614971611\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120573875930265615\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117280393746725706\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118601760235018727\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120285951372578172\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118358096586817127\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118679825446469835\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.116491518428951012\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.117570262222578784\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116395868803277841\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.115968927583330157\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116499217173239924\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116692050947769802\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116507317274002265\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114579514416541003\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115907771876561931\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115450600971779714\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115951547777028245\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 98830,\n                            \"to-sign\": 98850\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98494,\n                            \"to-sign\": 98508\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98565,\n                            \"to-sign\": 98574\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 100430,\n                            \"to-sign\": 100488\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98514,\n                            \"to-sign\": 98640\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98437,\n                            \"to-sign\": 98496\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 101927,\n                            \"to-sign\": 102000\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98536,\n                            \"to-sign\": 98598\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98433,\n                            \"to-sign\": 98496\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98690,\n                            \"to-sign\": 98730\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98427,\n                            \"to-sign\": 98652\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 99647,\n                            \"to-sign\": 99708\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 99168,\n                            \"to-sign\": 99168\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 100467,\n                            \"to-sign\": 100476\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 104933,\n                            \"to-sign\": 105114\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 110861,\n                            \"to-sign\": 111036\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 100117,\n                            \"to-sign\": 100218\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 99106,\n                            \"to-sign\": 99162\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 99323,\n                            \"to-sign\": 99384\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 106851,\n                            \"to-sign\": 106926\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98837,\n                            \"to-sign\": 98886\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 99015,\n                            \"to-sign\": 99030\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 99147,\n                            \"to-sign\": 99168\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 102967,\n                            \"to-sign\": 102978\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 105929,\n                            \"to-sign\": 105948\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 101857,\n                            \"to-sign\": 101874\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 106401,\n                            \"to-sign\": 106476\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 106960,\n                            \"to-sign\": 107022\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 107305,\n                            \"to-sign\": 107346\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 115817,\n                            \"to-sign\": 115906\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.424562739129440673874989e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.592431210754355859045e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"48427664b04ca99d1ecff349d0a6eab684ce682559f5cb1398716e5bf5288b9d77eaf3d5d9969b1d17bca70a9f633e95\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592653556134404861464e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"77310a150e5df07db4ceed3daf98967b70b8156beb7c39a046d505bce3620ec048a24903d9a9432724b6327808e66499\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592877774859447295561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"997e1cdb546c1050f44d642ab9a137349b66054e588a38e6700cc440eb7106e62951108f55e357e75af7ccb45d56b795\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.59254843377464478027e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d3895a8bab3769a8d9bb524b6f824a0a99796ed2bf7ca6487cc524f8ea63ffb0b1f0bd29a194c250a88c5568be459519\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592657922121697877555e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"cfda73a32b8d612aeb5b9a4c963086da8daf44ffde42ec73107ab2dff56f1568d2a9d453fb0c6040995317a3a268b78d\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592546061429410569026e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"97fe22f0ecb1db616d51d741cbf9afe27ed45ded467f45227b0d837e142d59b49bc84400b513ec2e939624aa4957e181\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 3.57215630727595091268e+25,\n            \"validator\": {\n                \"address\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                \"bls-public-keys\": [\n                    \"cfda73a32b8d612aeb5b9a4c963086da8daf44ffde42ec73107ab2dff56f1568d2a9d453fb0c6040995317a3a268b78d\",\n                    \"77310a150e5df07db4ceed3daf98967b70b8156beb7c39a046d505bce3620ec048a24903d9a9432724b6327808e66499\",\n                    \"48427664b04ca99d1ecff349d0a6eab684ce682559f5cb1398716e5bf5288b9d77eaf3d5d9969b1d17bca70a9f633e95\",\n                    \"d3895a8bab3769a8d9bb524b6f824a0a99796ed2bf7ca6487cc524f8ea63ffb0b1f0bd29a194c250a88c5568be459519\",\n                    \"97fe22f0ecb1db616d51d741cbf9afe27ed45ded467f45227b0d837e142d59b49bc84400b513ec2e939624aa4957e181\",\n                    \"997e1cdb546c1050f44d642ab9a137349b66054e588a38e6700cc440eb7106e62951108f55e357e75af7ccb45d56b795\"\n                ],\n                \"creation-height\": 3359368,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.7842119e+23,\n                        \"delegator-address\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                        \"reward\": 18428190873818707262,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.65284e+23,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 13514780725165009339,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1xpezw8k5e76t0jntvlgtug0t9wdzletvnl7r9f\",\n                        \"reward\": 665848170639052824450,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.199e+22,\n                        \"delegator-address\": \"one1zvdmhs9s0k6atfdgmeqf4fugnsl2xsyu0jkmxk\",\n                        \"reward\": 969185282491275922646,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ftj28mq86gywa2uu8cz33fltx2mqgq49677zf0\",\n                        \"reward\": 33401392112333916438,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2197560493921e+25,\n                        \"delegator-address\": \"one1mrgas6psdpafce9f8rdvzj4wlncjd8g6wehh2x\",\n                        \"reward\": 9.8339597417351562067424e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.03235994064e+22,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 37916359753906365099,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 554422203428899798,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dsvacurqg54u3q4k7p9t7k2k44rldzsjk39aup\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1azvl4jf93ndfx8886xrumqmvmta9cv453xak2f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1g4u3hy78vux7mtqerfqechx7q7seyg6avtnq4h\",\n                        \"reward\": 397113515975161277733,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.09e+21,\n                        \"delegator-address\": \"one1kj7s0p7mg200j6sjtljj9yv52tem9jja3qt80k\",\n                        \"reward\": 315812098952340223569,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n                        \"reward\": 89200189824477123037,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.012e+23,\n                        \"delegator-address\": \"one15tjsjcff0mcxc76qjrspmc8ml53yg9px3d2qgp\",\n                        \"reward\": 57467813480314585673,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.868e+23,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 802151743139519219263,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 108042165283731628826,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1dqm6nv6vfa8ks7mnprnchzsk6zggk9zcs44al7\",\n                        \"reward\": 30633941541731200942,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1e+23,\n                                \"epoch\": 320\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 5183608390352141554,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qtx776yews0t80k9ppe6d2qd76clnpp2tjs8wt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1nrd84ldj3ldtdwz5ktrcqvvekuavpeypwz3lpe\",\n                        \"reward\": 109269685859610580201,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5033e+22,\n                        \"delegator-address\": \"one19day69t6zzqrk3yr5086v9892c9ajvkw84fegv\",\n                        \"reward\": 5651722907348640122,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.308876e+24,\n                        \"delegator-address\": \"one1w03wuvm77ujywjes3rejmay8j93udal9kfnv66\",\n                        \"reward\": 3.520481161281003460505e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 2.0261933829000929109226e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.04236863954e+25,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 8.814758438496049802564e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.155290594068e+24,\n                        \"delegator-address\": \"one10j2mrd7hcf27t4fj0jmp93rfk35lujt8wrmxsc\",\n                        \"reward\": 2.0821691922105877669264e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2222222222222223e+21,\n                        \"delegator-address\": \"one167hy5watz30yev6pdw4wn672puf9pwxadm080p\",\n                        \"reward\": 48410467804119350431,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q2v8nqnk8gflhscwl7mz2pfmwljk440dd7wjan\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+21,\n                        \"delegator-address\": \"one1jkpam6q00rgw2rs9hzch665tvjkrs5849p3axe\",\n                        \"reward\": 22953431503564541488,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.555e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 3871702955259694298,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nffxvsrhxn94xpft9eyek7uxrympjgx0szm8ru\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c0aau6shrtxqgenpf5ymtrspxpvw0sxj0c7hrq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1940xav3v8j2z7fp9rj4xz009y2lpjgrglse2gf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.23216325480125e+23,\n                        \"delegator-address\": \"one13zdsyuqnmqh8005mr0xrp2hmdwq48hd5a02940\",\n                        \"reward\": 738420515251494152301,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g4k8j5a0d032duwk4ns9qcv0lgrtr8370t2s7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.132e+21,\n                        \"delegator-address\": \"one1fsqyatysv7y3dg7lg0h39kmq2qygxwx3lmm83m\",\n                        \"reward\": 2436989954538111813,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333000000,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 115940400,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hrxguavlwkmrjl6xdeh3hjkk85fsej8kg8nm6l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.935e+23,\n                        \"delegator-address\": \"one1gtzu5yvtmxttds0t8hw2q4a9pk68w6gscjgzpr\",\n                        \"reward\": 1.031524866470794696972e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vzlt9yygwvc62vx9n35t2l3k57adctyhzxn7ar\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 200236065258633750,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grpk6706ct68pwcqr3vjw60xcuwjkerau7d9ww\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.249999527e+21,\n                        \"delegator-address\": \"one1r9m98elzdeljz7exlnc60adftzkk2ug2w8yqgw\",\n                        \"reward\": 33850179343696160102,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.31285e+23,\n                        \"delegator-address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                        \"reward\": 1.868451920116242541812e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuw02s26lxyy8w9k3y9crfsxkq50hfs045s9yk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v7enx2hqelf0wqqt99avqqx5f4wljs443y5az5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zn5axvgpx23t606xs0t59qf8xfc4fmavkh4ffc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17yk3vcj47jdm04p3uq2yqpm4sp57vjv9utlh8t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 428571500000,\n                        \"delegator-address\": \"one1ykqgnpeqln4kzhgsseu6qg790655x562064wmc\",\n                        \"reward\": 6814038412,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8836e+22,\n                        \"delegator-address\": \"one1xwzad7aha0h77hulz0uc7uzmsqrjl858xj9h45\",\n                        \"reward\": 86208918654711980317,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one136txyyuafyz80wws5gl68kr4t9p05lak5vwcjl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one105nyzvqzrxlfa3h67najs8yr3q0vjmrpwh7d0c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10d3qqqxegdexjyzvyewa5krhgkcgl57xs6y9gm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.79e+23,\n                        \"delegator-address\": \"one16s2t56ptfar5cmd3c69a8jhzl04feplyslyszu\",\n                        \"reward\": 4.220188462850510459806e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.1692e+22,\n                        \"delegator-address\": \"one13as5pptp4wvsu432ennnvwu77dpl8sc440slgm\",\n                        \"reward\": 1.120495312657982692611e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.087656e+24,\n                        \"delegator-address\": \"one1ul265qs7zvxj2e9kpfvlnju4tvky5g6dz7skjh\",\n                        \"reward\": 2.741439167338165301534e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vk4jk8x607gw7f4a76jc98vcgvkv8jz554a57k\",\n                        \"reward\": 144470779175261992379,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1qkygud0y600zrkp4n208uka62pe673s8tddxxr\",\n                        \"reward\": 719373963223566430339,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+21,\n                        \"delegator-address\": \"one10c2ldg24fsrxhq54pys63sh8mfr5gjw50fa7qp\",\n                        \"reward\": 40479360111140948848,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ln66zgvc2krv9v7hqauws45ktnal6jmws2c0fa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.66620481057e+23,\n                        \"delegator-address\": \"one1fkt9vcr8sulcrpv7ppy5q9rrqqmddaz52a52h3\",\n                        \"reward\": 9.941314993652694878466e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+21,\n                        \"delegator-address\": \"one1axv7pm9duu4qygc0krwr0z4p4dzedlh5qlpqrs\",\n                        \"reward\": 2199755404591494697,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2128e+22,\n                        \"delegator-address\": \"one19t8dvgu9uag8uyq3l8fznd6emjxaylfn8e7pgf\",\n                        \"reward\": 147447217951310812336,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pl9ljk7x8man9kg00uzwwcnaxnuj0ud6vwpxfy\",\n                        \"reward\": 442584660765013414,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6335539024e+22,\n                        \"delegator-address\": \"one1uxwadjf75mx6eymv3ss2x6v8ukk9v8aqmtqpx5\",\n                        \"reward\": 4644170896808643551,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4064e+22,\n                        \"delegator-address\": \"one1784amhxlknvgtnah6lzgghj5l0lj2ung038tsv\",\n                        \"reward\": 244247409708812900503,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10t4lxpdrc6pn87a5rsjcsk3e6uw6kkqlen2yfy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.001175e+24,\n                        \"delegator-address\": \"one1hze8fs56sdvh64xmekntwqqquj9r88vz77drus\",\n                        \"reward\": 252750086341656692218,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.66000004923e+23,\n                        \"delegator-address\": \"one1sqa43egut2tg2ms300fxg32h3sxh97m5wf7dqv\",\n                        \"reward\": 541538167265432716614,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1mj2k29vddq0mqmzk7egnqfqje2wck83tt2d7t9\",\n                        \"reward\": 16495657078656582091,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.350399735e+21,\n                        \"delegator-address\": \"one1j5tfzmlmazg5hhms6d7x8rsfd5wd7lm8h2zcvd\",\n                        \"reward\": 17850627917620785254,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.093499592e+21,\n                        \"delegator-address\": \"one1y7c57dp05de53v6l2h3kcx48dmlcmj8slfgdwx\",\n                        \"reward\": 89318138794752271322,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.099e+22,\n                        \"delegator-address\": \"one14k69l8cv4l5vkng8s2wa8z8w6a87z20v94k22f\",\n                        \"reward\": 154490884856088032468,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1062809507e+22,\n                        \"delegator-address\": \"one1zhjlkrvdue92gwqsk8k9g58axp3wqtkmarsqy0\",\n                        \"reward\": 122894807821305811582,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4051e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 109562709420217480502,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one105spvm3n2zwytjqt7fa7d0zr8jcjc042054mkp\",\n                        \"reward\": 8346762478266271715,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.242874e+22,\n                        \"delegator-address\": \"one1t9mklzkte2j6qmjav7zx4lq5vnwwcya46mh42s\",\n                        \"reward\": 102024810924652622321,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 16256872795778048022,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.72713652072e+23,\n                        \"delegator-address\": \"one1qsjfu3gw56znzr0fu3gre64uqyramum554xjag\",\n                        \"reward\": 2.650528987087378938383e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.701e+22,\n                        \"delegator-address\": \"one1axmdcvv3gm3qlm50eugw5fgnz53j9jc2ksupec\",\n                        \"reward\": 260457648685738121778,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1qu26mfgaccdcuszw6p5sqqctgdp2n86xuplp8q\",\n                        \"reward\": 14510249321292895079,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1p2hzggpswh8yap9pyqjef9l7vplshfyes78t5h\",\n                        \"reward\": 1358846357826525172,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.85889e+21,\n                        \"delegator-address\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n                        \"reward\": 1126462759749384924,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1gn6xy4h6kr7q7afgc8xdhuqpmxgm3y8qwjqm9n\",\n                        \"reward\": 3578117421893043795,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.226e+21,\n                        \"delegator-address\": \"one10y20dp27qqpnvdkqjhwa22c6704ydp7pjjefrq\",\n                        \"reward\": 103299257392202628,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.780252975e+21,\n                        \"delegator-address\": \"one1d5835yuxetzyz6qjxsgg6a9a0fpldykl8239d0\",\n                        \"reward\": 17195228240527390753,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one13guglgwq58rcpajjwv9nr3gkw2jk08w6k9ajjk\",\n                        \"reward\": 2673434480191034487,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1sdt5ggjsddp9n7v6qs6j9ctjx8hldjvme2s8m6\",\n                        \"reward\": 17630081815813703366,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.50674983849e+23,\n                        \"delegator-address\": \"one1s8zfchzxlpu9rakkx8l5s73g6walhs4kgkyxl6\",\n                        \"reward\": 1.147145320076104804296e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.39e+22,\n                        \"delegator-address\": \"one14pgwdvujxhr5j405mr0lacxd6n0n27p2vh0kaf\",\n                        \"reward\": 733031194905779467,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Located in South-East Asia, running on our VPS and DC colocation. Delegate with Us for decentralization\",\n                \"identity\": \"d31de168-0f4e-4aa5-ab90-03f2b4547fc1\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 4e+25,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Moto Trust - 1% Fee\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \" \",\n                \"update-height\": 3359368,\n                \"website\": \"https://mototrust.one/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 246820,\n                    \"current-epoch-signing-percentage\": \"0.999878468705691716\",\n                    \"current-epoch-to-sign\": 246850\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"91177771711181145079247879.999999999999999997\",\n            \"lifetime\": {\n                \"apr\": \"0.119281241275659066\",\n                \"blocks\": {\n                    \"signed\": 33769524,\n                    \"to-sign\": 33876485\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121908942978790078\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121212159236460254\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.122575680076819015\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.132288647527399225\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.135615916375567323\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.138499793726974353\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122974042476027302\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117394901134922151\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121744256441613584\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118804592670798081\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125939948449009359\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114632726763401664\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121086467653972963\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121423744585604414\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.113508298221297102\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.089240280752171766\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119422846810782537\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120748767211597381\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121582557511387231\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120910833653237917\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121838376288106580\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120846894359014941\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.120962469412600862\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.120480838366833510\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118633803536876720\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120778568443218438\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120337856646150585\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.119058112846354844\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120556817814816382\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119501166610098293\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119281241275659066\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 279265,\n                            \"to-sign\": 279279\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278744,\n                            \"to-sign\": 278784\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278810,\n                            \"to-sign\": 278849\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 281051,\n                            \"to-sign\": 281085\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278921,\n                            \"to-sign\": 278952\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278727,\n                            \"to-sign\": 278748\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 282771,\n                            \"to-sign\": 282819\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295238,\n                            \"to-sign\": 295270\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278715,\n                            \"to-sign\": 278752\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 279211,\n                            \"to-sign\": 279230\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 279116,\n                            \"to-sign\": 279156\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 297151,\n                            \"to-sign\": 297246\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 296120,\n                            \"to-sign\": 296188\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 280739,\n                            \"to-sign\": 281054\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 303861,\n                            \"to-sign\": 304102\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245791,\n                            \"to-sign\": 314102\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278484,\n                            \"to-sign\": 297831\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295894,\n                            \"to-sign\": 296186\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 294770,\n                            \"to-sign\": 294910\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278395,\n                            \"to-sign\": 278528\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278323,\n                            \"to-sign\": 278528\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278469,\n                            \"to-sign\": 278528\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278416,\n                            \"to-sign\": 278528\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278368,\n                            \"to-sign\": 278530\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 294791,\n                            \"to-sign\": 294912\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 294882,\n                            \"to-sign\": 294916\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 327399,\n                            \"to-sign\": 327680\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 327674,\n                            \"to-sign\": 327756\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 306613,\n                            \"to-sign\": 306960\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 318147,\n                            \"to-sign\": 318512\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 4.575651382877593282561371e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.465182351202914751463e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4c65f90e6354e10d190f213a8665c77d97f52b3d5223047f5ce1d8e8dd783c32d3d2e70a307661ba32241cae513d6994\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465182351202914751463e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3122d1a0c32421c267cfa8c3994357608c9868a3460a5d325c70d5f7c5b2e87626be14c50262d6fe56cf80ed735fde8c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465307587278114090465e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2ca7cb0362db342d82d51fed78ba24c88fd061ddccc929923cb7443ff99ddfaf5136e14adf2068cc3d1e1653d11f5b88\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465182351202914751463e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5366ee770e6bf00cbf65d683bc0aa00ce600adcd644ac6ba078f0f825fce10283bcf19fa6c08ebddeaa23a8e2f63a108\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465182351202914751463e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4b4c85ced3f516d101022dee1c728823f900356d50dddbc2b47e4d8c3d7f91c501748ecb9c494178703b262f76fba790\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465090575264424201967e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8d14f8242ee01fc3ba63bce5f6d789bb5dde518930406e1d8c21d2ef5acc3659482aaec12eb32ab21292a11796a6028c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465182351202914751463e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4f50f328160160d3773f434b7f769c7eaca25e08daa717bc4062be94237da4d0fe973087b68c3e13dfe198682266c218\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465072325142755261355e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"57320cc0aaeb7090f8fcfd4d4670264c086e541591378a7b2efc58c1ceb43e7f22630401b3ae53d15e96561f50d2b68c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465307587278114090465e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"087472b5eb52a05589341d95d009e9bcd0c22f314842d824b496e321d642a7f7cd71983bb8a4a81f3d9006e8155f4494\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.43507851270170172982e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4d668e1c2ac9bfb632ceb654042eee79ff927de2b290440b0c55d8b323130b911caa2599772f69d2c0d823ac2d6d2a11\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005601666454111838\",\n                            \"overall-percent\": \"0.001792533265315788\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434861953570835162748e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"00b3f69f0e90d2373555dd6827794945d7465b067fe4b1e8a9bc695508f9071af2ffba3b330fb42617534f23ece5c409\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005601666454111838\",\n                            \"overall-percent\": \"0.001792533265315788\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.435191509449093679237e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7a3ce87d76839d870f2c27bd00fbe3731323a24c3142ee32470783e792a03adb6e7487d09d85aa118fb4c44c73b70009\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005601666454111838\",\n                            \"overall-percent\": \"0.001792533265315788\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434873412421097032335e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0b12ee68ad020e4a72cd302c1ba112b51b631221917a0862485bf9520af2ec60bc2c9ee387964811c5e009bbd258b191\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005601666454111838\",\n                            \"overall-percent\": \"0.001792533265315788\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.47676883202571626253e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"04cf6b75d961be22599741dafb25394a1fed85e0232744e645a8720acbb9b8f2f7a46909b1d70935e500e4ad0f940d8f\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005785625145575305\",\n                            \"overall-percent\": \"0.001851400046584098\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.476789236632506458883e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"08aca306ce6f5b79f0f58c8fd9e91f4a0864ea7354646a5c0d38f8266f93902ac43691ee73d0578d707fc364d6655987\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005785625145575305\",\n                            \"overall-percent\": \"0.001851400046584098\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.47677578806894366881e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0fbce1adfb35da5d812f795f5acbfff10651309727271cf68cf6f8a21b36521dbac758ac874f7d5e3a01b7dcd41efb17\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005785625145575305\",\n                            \"overall-percent\": \"0.001851400046584098\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.47620627164017140331e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3cc36b809ac60b2aacf1c8a4e989c6f8d3a389d5d0a6940e36275ab7a359572baa8fae0d03e50a37d7ed27c4318ac10b\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005785625145575305\",\n                            \"overall-percent\": \"0.001851400046584098\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 9.119278371118114507924788e+25,\n            \"validator\": {\n                \"address\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                \"bls-public-keys\": [\n                    \"2ca7cb0362db342d82d51fed78ba24c88fd061ddccc929923cb7443ff99ddfaf5136e14adf2068cc3d1e1653d11f5b88\",\n                    \"4b4c85ced3f516d101022dee1c728823f900356d50dddbc2b47e4d8c3d7f91c501748ecb9c494178703b262f76fba790\",\n                    \"4c65f90e6354e10d190f213a8665c77d97f52b3d5223047f5ce1d8e8dd783c32d3d2e70a307661ba32241cae513d6994\",\n                    \"4f50f328160160d3773f434b7f769c7eaca25e08daa717bc4062be94237da4d0fe973087b68c3e13dfe198682266c218\",\n                    \"8d14f8242ee01fc3ba63bce5f6d789bb5dde518930406e1d8c21d2ef5acc3659482aaec12eb32ab21292a11796a6028c\",\n                    \"3122d1a0c32421c267cfa8c3994357608c9868a3460a5d325c70d5f7c5b2e87626be14c50262d6fe56cf80ed735fde8c\",\n                    \"5366ee770e6bf00cbf65d683bc0aa00ce600adcd644ac6ba078f0f825fce10283bcf19fa6c08ebddeaa23a8e2f63a108\",\n                    \"00b3f69f0e90d2373555dd6827794945d7465b067fe4b1e8a9bc695508f9071af2ffba3b330fb42617534f23ece5c409\",\n                    \"0b12ee68ad020e4a72cd302c1ba112b51b631221917a0862485bf9520af2ec60bc2c9ee387964811c5e009bbd258b191\",\n                    \"0fbce1adfb35da5d812f795f5acbfff10651309727271cf68cf6f8a21b36521dbac758ac874f7d5e3a01b7dcd41efb17\",\n                    \"3cc36b809ac60b2aacf1c8a4e989c6f8d3a389d5d0a6940e36275ab7a359572baa8fae0d03e50a37d7ed27c4318ac10b\",\n                    \"57320cc0aaeb7090f8fcfd4d4670264c086e541591378a7b2efc58c1ceb43e7f22630401b3ae53d15e96561f50d2b68c\",\n                    \"087472b5eb52a05589341d95d009e9bcd0c22f314842d824b496e321d642a7f7cd71983bb8a4a81f3d9006e8155f4494\",\n                    \"04cf6b75d961be22599741dafb25394a1fed85e0232744e645a8720acbb9b8f2f7a46909b1d70935e500e4ad0f940d8f\",\n                    \"4d668e1c2ac9bfb632ceb654042eee79ff927de2b290440b0c55d8b323130b911caa2599772f69d2c0d823ac2d6d2a11\",\n                    \"7a3ce87d76839d870f2c27bd00fbe3731323a24c3142ee32470783e792a03adb6e7487d09d85aa118fb4c44c73b70009\",\n                    \"08aca306ce6f5b79f0f58c8fd9e91f4a0864ea7354646a5c0d38f8266f93902ac43691ee73d0578d707fc364d6655987\"\n                ],\n                \"creation-height\": 3359375,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.38609043711821895924788e+24,\n                        \"delegator-address\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                        \"reward\": 1.684345697270119444124e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1c6c3lwl82v749gcdqr09j9n25rwvas04mhc9rd\",\n                        \"reward\": 27465849991256829403,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 1091127099488386680,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0241e+22,\n                        \"delegator-address\": \"one1jxwwk5z3596gynrz382stsanzug2v52u0d97ql\",\n                        \"reward\": 53572621109077691225,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 2748626053194714132,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 9867116356342694853,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 6.10124193270854782116176e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 43604784980494320274,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 80671252665775114207,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dnh7wjg8mkvru3fantlqcazsrw3ma6ucdkqvps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aw2hx2ydu4l8xkqcvksru7xeg6prt3rsr7372c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 109903898975939955531,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 6364940514557791043,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 450697226636431911239,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6xz73724nja8cn2c2d2gun2n5nenyr7da8r64\",\n                        \"reward\": 857126846555183514,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one1ps4gky30d2y60q59ydu72l7dtch6zvvtmu6x0z\",\n                        \"reward\": 18412841050316179337,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 5080944005302316478,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jm9erjgeudx44jxvpyr09u2wevfrjykuvch5kf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.53792e+23,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 580949026286636232027,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14m8mtlzu6gk9557ya4nv004lew0ve2tf3kxhzp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16cje0z4pswgck88eprtrd6v04jdy7n6vpcue3x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 513328521051350291373,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l6v5djd7ss7axpfxgr9rq2v2chp3trnvhzl7aq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+23,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 8.426169437922678004032e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.34343e+23,\n                        \"delegator-address\": \"one1mv7g0rj2dqfnw9jgqqxa8aqea9g8dw4kay77gc\",\n                        \"reward\": 497919689790107256431,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z62wq6ucttx2ksj5v3s0vk0hup7xg0yez8qkyw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 6986927452390272082,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 3e+22,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.3e+22,\n                        \"delegator-address\": \"one12kkwq0tg6u67p8kp9hgsx5yqlatzmm3vwlfvvs\",\n                        \"reward\": 821970932285477436342,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ydlj0qtzepwxkg4z5kcnyu7fycswlal84ztw47\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tlqxc0t908dxhmc7cqnpsn70g2dlglsxhuh2rq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1n55puv7gmz74wjnskgvqeqc7tswjh04sjdyjxl\",\n                        \"reward\": 1.036081973638356139886e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.020959769e+21,\n                        \"delegator-address\": \"one18yr4x62lnecw7avdk89lk4l02dwuzv6p7qpr7a\",\n                        \"reward\": 13853630964971386287,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 666600000000,\n                        \"delegator-address\": \"one1muspgclumz379tgmyyzzuzlwujft68wrz8jlad\",\n                        \"reward\": 17722307387,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qn9jwx2mrj7jx3tzls7ejhtc2n8k9r408u53gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n2yfzq0py7wkar3sudx2tjnjwl2yl0k8gekt52\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1td7y4ltg6qkecmdxawltcl4fps84wl56dwvrlj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.538221988e+21,\n                        \"delegator-address\": \"one1txgkp53hshqg5vsez2f5qrggw9c0qt3ymvj7wk\",\n                        \"reward\": 3615969185528144696,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 133333000000,\n                        \"delegator-address\": \"one1jx7wusrrnj2djdf4dus5cq07yw3fe2077j2l67\",\n                        \"reward\": 1065111655,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ut0r2v94czzncsgaw9zzlplyx33ztew4tyv5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 553148060958070308,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 108701108110487494899,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one108acxe4v8jacnvzpvy5laufmhw0a5rd8d7zsjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.93152350987125e+23,\n                        \"delegator-address\": \"one13zdsyuqnmqh8005mr0xrp2hmdwq48hd5a02940\",\n                        \"reward\": 698471734783201658577,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 123863403903319994856,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.025e+21,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 7380050098172816404,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one13eh8wsk8wa8ag96qjrdrgh2g8ecx8vpwc6q73t\",\n                        \"reward\": 499074273641953106502,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+21,\n                        \"delegator-address\": \"one1r8p9p4hnt3kx9ymvznxgfcm308md5fxwezy55d\",\n                        \"reward\": 7460717212088420913,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n9ugplqsgrlyv9rcfzr8wcxshdt0rha78zj80z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.2047645028e+22,\n                        \"delegator-address\": \"one1ehvjy83pv7gqq4jedyhtkv5cwjksl06vw4lsxq\",\n                        \"reward\": 190818319587014730971,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v4qm509zq4jmcr53anjz2k7vp6xw6geqkl76tf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5uwlvjmygnfrh75nnmemgm7syd5xh0hww3ty6\",\n                        \"reward\": 57067770999055951,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ahxlcwawlalnk35weehcg0rfvv0tgt33ga6058\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 625000000000,\n                        \"delegator-address\": \"one1v3tzxmw4fsfx5k5ejxygyt9wlk2dqztvwsk7mc\",\n                        \"reward\": 637924968576106516,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kzhs0vfhv6q52xh5pq6z25qnaeaztrkmh50zfa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5937e+22,\n                        \"delegator-address\": \"one18pqt2455nl3n0qs8v5l2zfl7ez5dygwy3q8tm8\",\n                        \"reward\": 210382648109554156690,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4186e+22,\n                        \"delegator-address\": \"one1khau8lyy2hqesvve6wp33ful5d3yysuemy97w6\",\n                        \"reward\": 115204927822713516144,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v7enx2hqelf0wqqt99avqqx5f4wljs443y5az5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ed2eg7hnzws2wy2xhwt5yrps6gtfn64y9uw4t5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.000400023e+21,\n                        \"delegator-address\": \"one1ttust92fp0rpkwf7snulq6jnnalrlrceqwasdt\",\n                        \"reward\": 100776841616699283820,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00006294439e+22,\n                        \"delegator-address\": \"one1zxa9dduhl89erh4zwe3n2upuu69y2qz3jcq2ga\",\n                        \"reward\": 246143220140479517064,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1xj8sfc4mf28uuae0k4nep5w7jja6573p42rpu8\",\n                        \"reward\": 6257241558864877040,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1ej3c24rs9p2cedv8mm0fpd6evrcv22s5p2yk4p\",\n                        \"reward\": 614979093415351355288,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.23352519999e+24,\n                        \"delegator-address\": \"one1nkvxkx9sten30aq6ak3ky8ae6ual9y2uuxkmn6\",\n                        \"reward\": 1.10284629194266027285e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.722e+22,\n                        \"delegator-address\": \"one1ruvdpen8z83l3dg5lh8ady904zksvgemwn4sr3\",\n                        \"reward\": 40305751758110833039,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z63t53093vs0jt8xhvhqqt3qnycykq4qqydmvx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.53682e+23,\n                        \"delegator-address\": \"one15p3yud86q3tnqcaax73cw06e552jukhjfus0gg\",\n                        \"reward\": 152391975243495453561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hyhgtt0pnu2luquwqupj2s7rnq43hrcxvvkez5\",\n                        \"reward\": 14711635610326191133,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.094040625e+23,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 235362585719609006885,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3e+21,\n                        \"delegator-address\": \"one12xk2yqnla9y5qn420dgjj73pc7jzmgptktlg82\",\n                        \"reward\": 24023347335771730743,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rzy0de0ka2t75qgrctp4nw4uza4fg4nyhacgdf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.6938e+22,\n                        \"delegator-address\": \"one1sdcv5w7rvwdnf5cqxve48sdggcsrrgmcy2yydk\",\n                        \"reward\": 8876913606772034897,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n                        \"reward\": 253112527731083158571,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.8779e+21,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 5949406182049704110,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one158p7lac9hay7ktsmw5mr5umf947krtnwglw2q9\",\n                        \"reward\": 36843640268064485434,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2857142857142857e+22,\n                        \"delegator-address\": \"one18yv5m65wa7wrknfmh2jsh3pcst2z0h3698vu3k\",\n                        \"reward\": 167375559852490106898,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zmwukndjhajndq9w3amat73cu47pj9ydv6cc04\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 952553997795617103,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.894e+22,\n                        \"delegator-address\": \"one17fk6vrse3qw5hnst66xdwfgsy6rj7qfgxuf74u\",\n                        \"reward\": 1.124944208852462426131e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.255e+21,\n                        \"delegator-address\": \"one1wlqur58tvnjf4ppnyywqv6mg97jcfjquzj8y6c\",\n                        \"reward\": 2832790132839474233,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.6e+21,\n                        \"delegator-address\": \"one1kauufug5hfdt9pjgg83ddvpfuvryp3jftml94y\",\n                        \"reward\": 37958116087836294716,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j3frzp0l0ex0zhp4ft7w6kp9n8rmnj5962gasr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.40659e+23,\n                        \"delegator-address\": \"one1luqxaz8zz2ec3cneqnjdlznfg880zhp2hzgqx7\",\n                        \"reward\": 4.246202852873811984517e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.999e+21,\n                        \"delegator-address\": \"one1rqvvf5rmpy2cqycfhhm8q9zggy594cp2lrhlca\",\n                        \"reward\": 7115112995023724348,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.18e+21,\n                        \"delegator-address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n                        \"reward\": 11980141538573935691,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.98105761475e+23,\n                        \"delegator-address\": \"one16hnkcxuwhn4lna6k6x8c9yacekqsugn7aua2xp\",\n                        \"reward\": 971852214614901345972,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333330000000,\n                        \"delegator-address\": \"one15fy3rp6rnfx5em94jsy7se9jmhl6xrczpdtpyd\",\n                        \"reward\": 1394573682,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1u97te20xm0j4tj554gawe7yzpa5yhlh3086vsj\",\n                        \"reward\": 81789933292311831,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one17zygwwlpv5pklsw9uh63mk3u9hv0dl894yguvr\",\n                        \"reward\": 59774008253994245801,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.53e+22,\n                        \"delegator-address\": \"one14c3t6esxwnz44zr7ewyplsxu3ur8gl902wuuws\",\n                        \"reward\": 14350958860212792398,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one126htqnm3feg65ds2y0vnakahc6yqzj9ufuw690\",\n                        \"reward\": 28361492528203726363,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.003029e+24,\n                        \"delegator-address\": \"one1rpgy3s25vp5c6e7x4l2ux6nepgt9f3vdykuxnt\",\n                        \"reward\": 151590034255646732508,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.42847e+23,\n                        \"delegator-address\": \"one1s4604lg40q9tvzaaf3wp9rtr3txzl2796p6dgf\",\n                        \"reward\": 1.233196307136130051489e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.639e+22,\n                        \"delegator-address\": \"one1gpfj4009gm9c3z9f5d4n58kuyrc7f897t4vpfl\",\n                        \"reward\": 209111657120653194919,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+22,\n                        \"delegator-address\": \"one1v4v4grnxa4m0l9wl4pnhg2dyaarmcwj47s49cz\",\n                        \"reward\": 213964848556759803748,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one18sj48wr5nayzwue4plwvj25c4qlrfgnr2rkcd3\",\n                        \"reward\": 11784853932315404036,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1zefkjl7rh92ppn7ds67cap0yjrduz8923szdmy\",\n                        \"reward\": 423004808697077325,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1zxqpmswjduv3m3lzu33mhgxwr7cyv59ezfppjc\",\n                        \"reward\": 14098559299743196867,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Foundational Node Validator - Actively managed hardware-secured nodes with geo-separate active-active backups. BLS keys will be added/removed as needed per epoch to optimize rewards as best as possible. Follow on Twitter for announcements: @junglecitytech\",\n                \"identity\": \"jc-harmonyOS-N1\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 5e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"JungleCity\",\n                \"rate\": \"0.040000000000000000\",\n                \"security-contact\": \"info@junglecity.tech\",\n                \"update-height\": 4357749,\n                \"website\": \"junglecity.tech\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 43565,\n                    \"current-epoch-signing-percentage\": \"0.998327146065355882\",\n                    \"current-epoch-to-sign\": 43638\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"18806157105396333333000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.116336774757096322\",\n                \"blocks\": {\n                    \"signed\": 5480266,\n                    \"to-sign\": 5509208\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.120324191253117622\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.121122221177564072\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.121477451897282280\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125598249064113636\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.118557787429251849\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124514197612216964\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123216987772452949\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119227359954801973\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116153140078645774\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117367581522872980\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.113794475970519187\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115883781844926719\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118345291922995464\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.117635801682403152\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120100357990093209\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118559609849653265\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120087336617889629\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119834334555881579\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121064268305491976\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120765231096610738\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120947751422143744\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.123457381351213063\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116341470728674989\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117835500647410864\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116287139016755265\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117256635193483681\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117160706661973273\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117096081563097115\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117832954910476481\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117046188070527594\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.116336774757096322\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 49250,\n                            \"to-sign\": 49443\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49066,\n                            \"to-sign\": 49278\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49283,\n                            \"to-sign\": 49287\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50250,\n                            \"to-sign\": 50250\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49320,\n                            \"to-sign\": 49320\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49281,\n                            \"to-sign\": 49281\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51006,\n                            \"to-sign\": 51006\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49308,\n                            \"to-sign\": 49308\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49251,\n                            \"to-sign\": 49251\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49281,\n                            \"to-sign\": 49362\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49466,\n                            \"to-sign\": 49467\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49851,\n                            \"to-sign\": 49851\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49581,\n                            \"to-sign\": 49581\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50235,\n                            \"to-sign\": 50235\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52401,\n                            \"to-sign\": 52620\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 55530,\n                            \"to-sign\": 55575\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50157,\n                            \"to-sign\": 50157\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49602,\n                            \"to-sign\": 49602\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49668,\n                            \"to-sign\": 49668\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53478,\n                            \"to-sign\": 53478\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49440,\n                            \"to-sign\": 49440\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49521,\n                            \"to-sign\": 49521\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49566,\n                            \"to-sign\": 49566\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51474,\n                            \"to-sign\": 51474\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52980,\n                            \"to-sign\": 52980\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50934,\n                            \"to-sign\": 50934\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53238,\n                            \"to-sign\": 53238\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53541,\n                            \"to-sign\": 53541\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53670,\n                            \"to-sign\": 53670\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 57950,\n                            \"to-sign\": 57981\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 7.2678532179202514987634e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.666764104448422985597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8cbd3349056be05795b3c7b9f45d4d985761693379f0d34847da4545d0b9c5bfcb586ef8ecd86ef5e04bc77e78eda90a\",\n                            \"earning-account\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                            \"effective-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"group-percent\": \"0.006526901436315508\",\n                            \"overall-percent\": \"0.002088608459620963\",\n                            \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.66552189591523692157e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"97e4ac35faf0cac6fe497058f6393ee20f4c5cbb9ce11b425150f36a720b98ae0fd718c6a7db246b1774bb78fa4f5a02\",\n                            \"earning-account\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                            \"effective-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"group-percent\": \"0.006526901436315508\",\n                            \"overall-percent\": \"0.002088608459620963\",\n                            \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.665674864842430968608e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8f797e45b12648c3b9c8e8bb7eaabe7eaac7836d901eb798470cccfb6414e2e54516cbb2de1aeaf7a5d381651cdc5f0a\",\n                            \"earning-account\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                            \"effective-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"group-percent\": \"0.006526901436315508\",\n                            \"overall-percent\": \"0.002088608459620963\",\n                            \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.8806157105396333333e+25,\n            \"validator\": {\n                \"address\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                \"bls-public-keys\": [\n                    \"8f797e45b12648c3b9c8e8bb7eaabe7eaac7836d901eb798470cccfb6414e2e54516cbb2de1aeaf7a5d381651cdc5f0a\",\n                    \"97e4ac35faf0cac6fe497058f6393ee20f4c5cbb9ce11b425150f36a720b98ae0fd718c6a7db246b1774bb78fa4f5a02\",\n                    \"8cbd3349056be05795b3c7b9f45d4d985761693379f0d34847da4545d0b9c5bfcb586ef8ecd86ef5e04bc77e78eda90a\"\n                ],\n                \"creation-height\": 3359442,\n                \"delegations\": [\n                    {\n                        \"amount\": 9.9159e+23,\n                        \"delegator-address\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                        \"reward\": 2.884167972546307307117e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1e+24,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 3.057744504216078532536e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 47214685386609456791,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3931e+22,\n                        \"delegator-address\": \"one1rzrwq4cmav25mewzlz77ehen27pxhktvqqphas\",\n                        \"reward\": 750452008866215985105,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0133e+23,\n                        \"delegator-address\": \"one17uudye02ffxhlpqnvvm8fkc3wyqsgn320gg86k\",\n                        \"reward\": 521811091983244077497,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7659e+22,\n                        \"delegator-address\": \"one1cnuwda5cm4ghmz3qhxhjd7je3jg7uz9p5tuwff\",\n                        \"reward\": 105801714530167683242,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zr9pqt6nhls5q4qesnl2v609umrqrh9hs2kdqh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 5039398479345013365,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 1.15748366724877145148731e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333000000,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 110839531,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one1kmxstf0ch08ulzfdjv0uwgu52xgw902fes943s\",\n                        \"reward\": 31952729681600821452,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one17efjyng3k8yvm6ssmaxlv36l9r8ua28y0cuxp6\",\n                        \"reward\": 28340532818886199512,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2985e+22,\n                        \"delegator-address\": \"one1l52c528hg45z73sujku3kusy3dz87r5l20jxex\",\n                        \"reward\": 348948801734556152635,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7ycs6yexeatycs5686lajr43v9ezc0tgpw7fz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one18eeeg8ryyt3vnul8edzssvqw2jtjaa4sahzdt9\",\n                        \"reward\": 1507680715420261355,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16s2t56ptfar5cmd3c69a8jhzl04feplyslyszu\",\n                        \"reward\": 42705134767000266521,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00662105396e+23,\n                        \"delegator-address\": \"one1jqqv5sesk6upxyant3xe9q8047hln8eyqyl9j6\",\n                        \"reward\": 232095720947642647539,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Foundational node\",\n                \"identity\": \"LG\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1.44e+26,\n                \"min-self-delegation\": 2e+23,\n                \"name\": \"Gordo\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"telegram: https://t.me/luisgogo\",\n                \"update-height\": 3505432,\n                \"website\": \"https://gordo.pt\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 230617,\n                    \"current-epoch-signing-percentage\": \"0.990742013644252745\",\n                    \"current-epoch-to-sign\": 232772\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"89700955425561000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.113352066571918069\",\n                \"blocks\": {\n                    \"signed\": 34498188,\n                    \"to-sign\": 34940514\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121827084930395753\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.118622549926660766\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123682244006128762\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.124782308999482633\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.116744163920817213\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124159966725586889\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121081142134125403\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119172594606465530\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117307150171224169\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116666760113550822\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115196299098185058\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116826777509908888\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119290401223885324\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.118869170777497223\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.117771703371855880\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118326309460638987\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120093860109732959\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120429189284739086\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120871748052227341\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120297602962632606\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119651081697532640\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121124433035229062\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117425926522039730\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.116488871849009008\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.113461634695859485\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.110805650547378963\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117091849230220899\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.115232059930430953\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118154513086180738\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.114548418298889965\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.113352066571918069\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 252696,\n                            \"to-sign\": 263680\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 254766,\n                            \"to-sign\": 262768\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 261995,\n                            \"to-sign\": 262880\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 263936,\n                            \"to-sign\": 268000\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 259392,\n                            \"to-sign\": 263104\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245112,\n                            \"to-sign\": 262692\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 260048,\n                            \"to-sign\": 271896\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 258017,\n                            \"to-sign\": 262868\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 260971,\n                            \"to-sign\": 262620\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 262401,\n                            \"to-sign\": 263284\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 262158,\n                            \"to-sign\": 263564\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 264614,\n                            \"to-sign\": 265884\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 262929,\n                            \"to-sign\": 264428\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 264866,\n                            \"to-sign\": 267884\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 278363,\n                            \"to-sign\": 280588\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 294687,\n                            \"to-sign\": 296356\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 263315,\n                            \"to-sign\": 267408\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 262022,\n                            \"to-sign\": 264524\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 262464,\n                            \"to-sign\": 265000\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 283207,\n                            \"to-sign\": 285252\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 261933,\n                            \"to-sign\": 263644\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 262081,\n                            \"to-sign\": 264032\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 263025,\n                            \"to-sign\": 264312\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 272220,\n                            \"to-sign\": 274532\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 276274,\n                            \"to-sign\": 282472\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 270042,\n                            \"to-sign\": 271548\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 274794,\n                            \"to-sign\": 283920\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 283098,\n                            \"to-sign\": 285504\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 283955,\n                            \"to-sign\": 286252\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 299243,\n                            \"to-sign\": 309124\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 5.475106165755282842921618e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.498861099694974191018e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7335f5c266cc3d4223004af9cf13ad41bb69a7748359ea115e58ace47ccfae64a2e9d2e9e6e9e06a2f5c78465f8a2489\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005855369131602700\",\n                            \"overall-percent\": \"0.001873718122112864\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.498898837804187949381e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"858b2be4b3118e3cf0b6167a4f7b9283a5b0079006fbead0074b1444759ac5c281822c86265aadf4e4a9452765bf3009\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005855369131602700\",\n                            \"overall-percent\": \"0.001873718122112864\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.49825998239217205448e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fad66c30983f8a7e5bccd3ccd237e8443c36fb07f50abfd988793ada2270c1db717a33730a8865ba0da5132f6c15750d\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005855369131602700\",\n                            \"overall-percent\": \"0.001873718122112864\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.499439775796111946301e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"743fdce65c15a85da507535ceeeb2ddea98931dd6afa2d748e742622710d95094bb4c6157eb65dfc9c1c1d550d360911\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005855369131602700\",\n                            \"overall-percent\": \"0.001873718122112864\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.455099267931433113981e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d0c5083510829c72bd84b46cf35c1daf98bb11af492ded14503e10f857e29e0589d45c2f05d678f73d95d115b865a816\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005837210237099390\",\n                            \"overall-percent\": \"0.001867907275871805\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.454677048839072922208e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e2c5dd827855c9cf75c9ae81f6d98f4227bc2069f9d8a047852df975fad9ca36956540557b18b537d37d5b9e50729306\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005837210237099390\",\n                            \"overall-percent\": \"0.001867907275871805\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.458268639235754709733e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"21a94c1f5d0913e0e0471e5b4d4e2b476a1070411e9d98944821ddf1c933bf63f9f4c876213fc33a07fefb93ff401316\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005837210237099390\",\n                            \"overall-percent\": \"0.001867907275871805\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.45913754404239251221e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bff7b508f8c1ff32b633cb4585e7fe6fb468acca9b141a87e081fd1a1e6c4b55d1faecc726beb4c6a4b36d0daacb9c8e\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005837210237099390\",\n                            \"overall-percent\": \"0.001867907275871805\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.532846384780163254326e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"87cb22352223067db94c29e67917b4a0824e551c06b7baf9f15cf96a71ca58cae64c771b43cc222ba6d1a60a178cce93\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.534337464102605947196e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a80cdcf67bb376bace4d031d86d80c99c5eaa280438c3af70cbb0d3bbb7dc7bf3438a9ecf028bdc6692b7f7ba89ec503\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.533129356683705877361e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b03e54fd1267d5b94ef63d755cd928517d3cf4719837014c37d120a7de2c5fbd6d87f9387e591810a35960e4963d7a83\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.535406517875756208252e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0f0bd671199fb1b2ad42647cab032cb6edfd77c65a042fb8165aa2a31336373a514e8846b521b2ccf4ac3b9802341e0f\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.531668174991528419551e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c1e5df086ad98ada37ca3075125f91aac090ef13487551442d3692c326c6d85351d86f9953171bebe8d562142c5f6f17\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.532677513087634206726e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f772638b2125262f47fe20bd658508c1739c9c6d2be3dae9eb30670b6a04b09679bbdfabf88f1e134e1736538885a313\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.53217103537972619144e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b9d80fa33835f8795b43046f393aa956f3eb010c908d5c23e5f42317bef40070f6deb9956f3f3717683b4116a797f603\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.533443983698891183328e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c47283b4bbb2cbf18c6ef0575f487c330841801cd756634c6b1444d4e9254d3e63c08cfc22d6d992ee1f82bb46a58087\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.9700955425561e+25,\n            \"validator\": {\n                \"address\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                \"bls-public-keys\": [\n                    \"858b2be4b3118e3cf0b6167a4f7b9283a5b0079006fbead0074b1444759ac5c281822c86265aadf4e4a9452765bf3009\",\n                    \"7335f5c266cc3d4223004af9cf13ad41bb69a7748359ea115e58ace47ccfae64a2e9d2e9e6e9e06a2f5c78465f8a2489\",\n                    \"fad66c30983f8a7e5bccd3ccd237e8443c36fb07f50abfd988793ada2270c1db717a33730a8865ba0da5132f6c15750d\",\n                    \"743fdce65c15a85da507535ceeeb2ddea98931dd6afa2d748e742622710d95094bb4c6157eb65dfc9c1c1d550d360911\",\n                    \"bff7b508f8c1ff32b633cb4585e7fe6fb468acca9b141a87e081fd1a1e6c4b55d1faecc726beb4c6a4b36d0daacb9c8e\",\n                    \"d0c5083510829c72bd84b46cf35c1daf98bb11af492ded14503e10f857e29e0589d45c2f05d678f73d95d115b865a816\",\n                    \"21a94c1f5d0913e0e0471e5b4d4e2b476a1070411e9d98944821ddf1c933bf63f9f4c876213fc33a07fefb93ff401316\",\n                    \"e2c5dd827855c9cf75c9ae81f6d98f4227bc2069f9d8a047852df975fad9ca36956540557b18b537d37d5b9e50729306\",\n                    \"0f0bd671199fb1b2ad42647cab032cb6edfd77c65a042fb8165aa2a31336373a514e8846b521b2ccf4ac3b9802341e0f\",\n                    \"a80cdcf67bb376bace4d031d86d80c99c5eaa280438c3af70cbb0d3bbb7dc7bf3438a9ecf028bdc6692b7f7ba89ec503\",\n                    \"b03e54fd1267d5b94ef63d755cd928517d3cf4719837014c37d120a7de2c5fbd6d87f9387e591810a35960e4963d7a83\",\n                    \"f772638b2125262f47fe20bd658508c1739c9c6d2be3dae9eb30670b6a04b09679bbdfabf88f1e134e1736538885a313\",\n                    \"c1e5df086ad98ada37ca3075125f91aac090ef13487551442d3692c326c6d85351d86f9953171bebe8d562142c5f6f17\",\n                    \"c47283b4bbb2cbf18c6ef0575f487c330841801cd756634c6b1444d4e9254d3e63c08cfc22d6d992ee1f82bb46a58087\",\n                    \"87cb22352223067db94c29e67917b4a0824e551c06b7baf9f15cf96a71ca58cae64c771b43cc222ba6d1a60a178cce93\",\n                    \"b9d80fa33835f8795b43046f393aa956f3eb010c908d5c23e5f42317bef40070f6deb9956f3f3717683b4116a797f603\"\n                ],\n                \"creation-height\": 3359540,\n                \"delegations\": [\n                    {\n                        \"amount\": 9.1911765e+24,\n                        \"delegator-address\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                        \"reward\": 1.23963322108701803201069e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u2r0ee3t4gp255axsjlnv3swepaqu2rjkswftc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8881863061e+22,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 45631954812625191005,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 3366170040244482996,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.24e+23,\n                        \"delegator-address\": \"one1fp2nnpwyjzy0j68j38p6x9vcp8e7zzem3nt9e9\",\n                        \"reward\": 748118946516344644558,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.282e+21,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 78549048328995415130,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.95e+21,\n                        \"delegator-address\": \"one1ghv5s6qqwdxafunjd6syxj2qx5naje5neh722e\",\n                        \"reward\": 31226183539044327669,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.04137e+25,\n                        \"delegator-address\": \"one14hr9evj6dk7q39ukgquawqvcjcz92zq6ehlwpd\",\n                        \"reward\": 4.7780853750259602464817e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19mqs8kpuu3vzytsq5gmxauxv8g6yf4j93mll7j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 599983005031624225604,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 73763918000747882,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.53988290740574108855142e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.45475e+25,\n                        \"delegator-address\": \"one1zfeegaapgy7lhkq2g4u5sgfntavn45emvju3kc\",\n                        \"reward\": 2.21705519253675817473144e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1a869ad50qkw0446x3q3mhzx7fm0azx5fvcu7wk\",\n                        \"reward\": 161668432343172624831,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1940xav3v8j2z7fp9rj4xz009y2lpjgrglse2gf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.16660625e+22,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 61214859277149489435,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5e+21,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 8327952506954982294,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.299e+21,\n                        \"delegator-address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n                        \"reward\": 11078899435005988887,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"SNZPool is a professional & reliable POS validator for a dozen of projects.\",\n                \"identity\": \"SNZPool\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SNZPool\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"hi@snzholding.com\",\n                \"update-height\": 3359540,\n                \"website\": \"https://snzholding.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 14470,\n                    \"current-epoch-signing-percentage\": \"0.994775195930152619\",\n                    \"current-epoch-to-sign\": 14546\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"6654613648187800475155500.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.041636907400789182\",\n                \"blocks\": {\n                    \"signed\": 1957793,\n                    \"to-sign\": 1970327\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.042575628683252172\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.042673563089160759\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.042807397331993231\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.041944146311398158\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.041737007991593629\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.041738442600846678\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.041345049063764053\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.041985440108084729\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.041217209129241104\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.041703163584554991\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.040406397923772895\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.041399379795560476\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.041672906789842336\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.041163926105772878\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.041749513909554387\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.041908327154680209\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.041430459382384319\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.041357935853095324\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.041673084019959782\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.041589660084420974\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.041718790532655960\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.042700198066519395\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.041062323334917884\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.041529551924475323\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.041253101855797611\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.041468733443634193\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.040484662239941258\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.040948080161685241\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.040621149720086980\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.041120818163284174\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.041636907400789182\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 16406,\n                            \"to-sign\": 16481\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16289,\n                            \"to-sign\": 16426\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16331,\n                            \"to-sign\": 16429\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16730,\n                            \"to-sign\": 16750\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16413,\n                            \"to-sign\": 16440\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16412,\n                            \"to-sign\": 16427\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16972,\n                            \"to-sign\": 17002\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16341,\n                            \"to-sign\": 16436\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16356,\n                            \"to-sign\": 16417\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16439,\n                            \"to-sign\": 16454\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16458,\n                            \"to-sign\": 16489\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16560,\n                            \"to-sign\": 16617\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16462,\n                            \"to-sign\": 16527\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16722,\n                            \"to-sign\": 16745\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17434,\n                            \"to-sign\": 17540\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18473,\n                            \"to-sign\": 18525\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16595,\n                            \"to-sign\": 16719\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16413,\n                            \"to-sign\": 16534\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16526,\n                            \"to-sign\": 16556\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17799,\n                            \"to-sign\": 17826\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16457,\n                            \"to-sign\": 16480\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16481,\n                            \"to-sign\": 16507\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16478,\n                            \"to-sign\": 16522\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17120,\n                            \"to-sign\": 17158\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17626,\n                            \"to-sign\": 17660\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16935,\n                            \"to-sign\": 16978\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17712,\n                            \"to-sign\": 17746\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17831,\n                            \"to-sign\": 17847\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17877,\n                            \"to-sign\": 17890\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 19294,\n                            \"to-sign\": 19334\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 3.12502956839856463736327e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.762118659562600558314e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"edb61007e99af30191098f2cd6f787e2f53fb595bf63fcb4d31a386e7070f7a4fdcefd3e896080a665dc19fecbafc306\",\n                            \"earning-account\": \"one1tqa46jj9ut8zu20jm3kqv3f5fwkeq964t496mx\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"18654500000000133333000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.8654500000000133333e+25,\n            \"validator\": {\n                \"address\": \"one1tqa46jj9ut8zu20jm3kqv3f5fwkeq964t496mx\",\n                \"bls-public-keys\": [\n                    \"edb61007e99af30191098f2cd6f787e2f53fb595bf63fcb4d31a386e7070f7a4fdcefd3e896080a665dc19fecbafc306\"\n                ],\n                \"creation-height\": 3359554,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1tqa46jj9ut8zu20jm3kqv3f5fwkeq964t496mx\",\n                        \"reward\": 3.1508565647002566313027e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2385e+24,\n                        \"delegator-address\": \"one174vhgptamqr522l6fj6sn2fn7uuhm4muvtznuh\",\n                        \"reward\": 3.3607113491907700855005e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hrkv9lgr33x928ccmvrf6j2arusquuvegmp247\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nffxvsrhxn94xpft9eyek7uxrympjgx0szm8ru\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w6eu2vs4tdcj6358jjz7x7rs6zvx2vuqmpxdkx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1572l5gau2d7gcestc7qaxdvcsa7hj2467tpf57\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1726az373v5t8rh5ym6cvvpp9xyh0dztwre204a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one120cldy7u38gpztxrqpv99qrddkmatdvmc9s39w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one177tp9ns2ss2qd9k96zm57ft7fe3hq8u0xe5k4p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one135lhy9rv4ulw2tfvv6l3h95mn5r420n2rdsvt5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c0aau6shrtxqgenpf5ymtrspxpvw0sxj0c7hrq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sd69jq8flfklpfvr2pwdd59tcangfqy5zky0nn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 133333000000,\n                        \"delegator-address\": \"one1jx7wusrrnj2djdf4dus5cq07yw3fe2077j2l67\",\n                        \"reward\": 347878164,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cvn9mn9zhww75ynp6a9ul8wrcg8lt6lty6wfvk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.8418187890622688044758e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one133rvnuneyvq5upwu2azeh6h8xx8n3ph2ztktx9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1ztuftx554sf84a5gvpzap7dcaa72srjy4wzws0\",\n                        \"reward\": 1180614542814523,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1cuk5l8rmjq72dt8ah23twtfywwsqt0t8cepxq8\",\n                        \"reward\": 1156302564482828574,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Secure node infrastructure and investment capital for elite cryptonetworks\",\n                \"identity\": \"validation-capital\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Validation Capital\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"andy_blockchain\",\n                \"update-height\": 3359554,\n                \"website\": \"validation.capital\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 199546,\n                    \"current-epoch-signing-percentage\": \"0.980338789867746183\",\n                    \"current-epoch-to-sign\": 203548\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"89051699261644000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.117461607994713449\",\n                \"blocks\": {\n                    \"signed\": 28226854,\n                    \"to-sign\": 28483730\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122037359762899514\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122030958250133787\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124096002274920167\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.122789696139771189\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121202515569397366\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.127004303569936595\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123101420246216136\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119693317601298610\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118314921698882386\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117315973586907208\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.116875256578118335\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115661490869964757\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.117319275656071064\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119914462212333214\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119515968231410208\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.112081549753742576\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120100119302210080\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121050152392199691\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121161931119094154\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120592924098725343\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120144597696428929\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121245414532304476\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118295909311167658\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118702086396736566\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118040540829077548\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118649831683982279\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118563389721002038\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117240150875447227\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118559478660868138\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118076310701127909\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117461607994713449\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 229251,\n                            \"to-sign\": 230520\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229667,\n                            \"to-sign\": 229840\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229760,\n                            \"to-sign\": 229924\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 233659,\n                            \"to-sign\": 233764\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229940,\n                            \"to-sign\": 230080\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229394,\n                            \"to-sign\": 229800\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 236415,\n                            \"to-sign\": 236720\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229767,\n                            \"to-sign\": 229940\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229568,\n                            \"to-sign\": 229744\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 230194,\n                            \"to-sign\": 230228\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229853,\n                            \"to-sign\": 230412\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 231901,\n                            \"to-sign\": 232180\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 230873,\n                            \"to-sign\": 231092\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 233536,\n                            \"to-sign\": 233692\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 242665,\n                            \"to-sign\": 243180\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 242153,\n                            \"to-sign\": 255008\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 231320,\n                            \"to-sign\": 233316\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 230897,\n                            \"to-sign\": 231152\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 226204,\n                            \"to-sign\": 231508\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244157,\n                            \"to-sign\": 246688\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229646,\n                            \"to-sign\": 230512\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 230198,\n                            \"to-sign\": 230810\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 246729,\n                            \"to-sign\": 247408\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 254696,\n                            \"to-sign\": 255060\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 260675,\n                            \"to-sign\": 261024\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 252579,\n                            \"to-sign\": 252840\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 261675,\n                            \"to-sign\": 262094\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 246571,\n                            \"to-sign\": 246888\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 247213,\n                            \"to-sign\": 247456\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 263813,\n                            \"to-sign\": 264636\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 4.693502813848292559653999e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.737206194971222473615e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"818fa92a1fb6d63134d96f73231bd39330c5fecc5d8f5c124f508a4d2a9d7c99ba69c6601218b6647fbcd06e95b84500\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.007002745882545238\",\n                            \"overall-percent\": \"0.002240878682414476\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.737342227256633662635e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bbc239e80ce221bd886af2aa739df9ae09c929ae805a21c3f3aa85d32a4ddec38ab6816cb90d4ca22de35ee10ccebf04\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.007002745882545238\",\n                            \"overall-percent\": \"0.002240878682414476\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.701168600790762357623e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1958891e8ab1ec4e2c528f5a89310cec5d52282c313765d256954b20568683660deb834b291ad603cc564fd1cd6af099\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006643414774278012\",\n                            \"overall-percent\": \"0.002125892727768964\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.701030677738398932081e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1d6f1f85f26322febbf7a4e247fc5eb596c6dbc423b189882764aed458ff331f9039f83faa336c0e8d62cb48b1fad905\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006643414774278012\",\n                            \"overall-percent\": \"0.002125892727768964\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.701030677738398932081e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"61c835bed899c970e375f6ce1e1b29783294a386b262efacbb46c69306f345815a6046507b20f301c1438402e5929701\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006643414774278012\",\n                            \"overall-percent\": \"0.002125892727768964\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.700785128154155699652e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"85f2366637f19043d5ce7f95a5b29c3a80661d07fa6896e183e6c715d567d546729691839bf7285f2b01089266fac40d\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006643414774278012\",\n                            \"overall-percent\": \"0.002125892727768964\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.574400936782760544847e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d9700e0c3187201017599418f5fd330547265cd23adf6ffab61246e0e764479f649065f0ca09cbdd37c70988c8e8fb8a\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006622811962513893\",\n                            \"overall-percent\": \"0.002119299828004446\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.575793299224473108702e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bcbf5434cf3885d07076474141a23b666c9ebe56480bec8f4d384f0174d935ce613a2edbbc8a33be5c023392d0656c02\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006622811962513893\",\n                            \"overall-percent\": \"0.002119299828004446\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.575022600610684557945e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"18caa96991cdfda9ad7f6b95cfe2d77ad3102956e6865a211ae7d751937092f98888938655ce3d0cd238860114a82702\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006622811962513893\",\n                            \"overall-percent\": \"0.002119299828004446\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.575533197742508987296e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3f91a010a3037020469ad89cf9dabff813ac2a75ebb1f27fcb7ccd912bd74fa979d3cb8426abddaa6855abb7fde6370a\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006622811962513893\",\n                            \"overall-percent\": \"0.002119299828004446\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.751150912981340743393e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dfbe83358f924eb424afc0b25c5f44d35a45ceb353446cf976ef9988e9a4147f634df1c8afd8b3661e68de2fcfdffc17\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006861584474087284\",\n                            \"overall-percent\": \"0.002195707031707931\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.751282382520400187993e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0c8a858c17af55b4631b9f6b98300281b34d510d84b9ee72110780ccfce0d540ae1401521a13825bd427439e43c68317\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006861584474087284\",\n                            \"overall-percent\": \"0.002195707031707931\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.75142316206265319333e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a6081239b7110e4e325cfbd868e0228a3346c2dad0324d243bfe4c5fc1a9b0c584f9ca272f758e3a845ca50ab973c107\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006861584474087284\",\n                            \"overall-percent\": \"0.002195707031707931\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.751159857301874145388e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a9c5cbb9ee93e31d42dde922a5bac46844c08d98cec14eb352c61dd7716b73d9f79bcee6da30b73747ffd00df8cae583\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006861584474087284\",\n                            \"overall-percent\": \"0.002195707031707931\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.9052699261644e+25,\n            \"validator\": {\n                \"address\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                \"bls-public-keys\": [\n                    \"d9700e0c3187201017599418f5fd330547265cd23adf6ffab61246e0e764479f649065f0ca09cbdd37c70988c8e8fb8a\",\n                    \"bcbf5434cf3885d07076474141a23b666c9ebe56480bec8f4d384f0174d935ce613a2edbbc8a33be5c023392d0656c02\",\n                    \"3f91a010a3037020469ad89cf9dabff813ac2a75ebb1f27fcb7ccd912bd74fa979d3cb8426abddaa6855abb7fde6370a\",\n                    \"18caa96991cdfda9ad7f6b95cfe2d77ad3102956e6865a211ae7d751937092f98888938655ce3d0cd238860114a82702\",\n                    \"1d6f1f85f26322febbf7a4e247fc5eb596c6dbc423b189882764aed458ff331f9039f83faa336c0e8d62cb48b1fad905\",\n                    \"1958891e8ab1ec4e2c528f5a89310cec5d52282c313765d256954b20568683660deb834b291ad603cc564fd1cd6af099\",\n                    \"61c835bed899c970e375f6ce1e1b29783294a386b262efacbb46c69306f345815a6046507b20f301c1438402e5929701\",\n                    \"85f2366637f19043d5ce7f95a5b29c3a80661d07fa6896e183e6c715d567d546729691839bf7285f2b01089266fac40d\",\n                    \"a6081239b7110e4e325cfbd868e0228a3346c2dad0324d243bfe4c5fc1a9b0c584f9ca272f758e3a845ca50ab973c107\",\n                    \"a9c5cbb9ee93e31d42dde922a5bac46844c08d98cec14eb352c61dd7716b73d9f79bcee6da30b73747ffd00df8cae583\",\n                    \"0c8a858c17af55b4631b9f6b98300281b34d510d84b9ee72110780ccfce0d540ae1401521a13825bd427439e43c68317\",\n                    \"dfbe83358f924eb424afc0b25c5f44d35a45ceb353446cf976ef9988e9a4147f634df1c8afd8b3661e68de2fcfdffc17\",\n                    \"818fa92a1fb6d63134d96f73231bd39330c5fecc5d8f5c124f508a4d2a9d7c99ba69c6601218b6647fbcd06e95b84500\",\n                    \"bbc239e80ce221bd886af2aa739df9ae09c929ae805a21c3f3aa85d32a4ddec38ab6816cb90d4ca22de35ee10ccebf04\"\n                ],\n                \"creation-height\": 3359608,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                        \"reward\": 2.35237235394065518313416e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e2whthzfvwq86cyevg3xzgj6ztps58c5vx6hna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.528e+24,\n                        \"delegator-address\": \"one1dtrl3pvd9cfr6vgn6k5sdc7fwvk9p9hqn0gg0q\",\n                        \"reward\": 1.792484863291267396333e+21,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.9e+22,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zdy6xmss3du3g6t8kpj5j4kvmpyp62n83gh4fw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aurkwpe7p3zz9k2z70xg758m26p7q5wvem5prx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7e39h6z0c0jqx9vu2epx3v5d3d44nx7sqmjsg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d235ehhlcdec9vsg6vua3j6gq2csz3u9hvju0e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yms3yzl9d8jcgqdk0fx8hasn4k4zuaaw0rshu5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1azvl4jf93ndfx8886xrumqmvmta9cv453xak2f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.17723e+23,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 285613186309421955032,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 6.02771266974873905100303e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1nwjl5832rhrxecpw06v0k56twmqg588lxh27lt\",\n                        \"reward\": 131240802071473292103,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1d5dly885talw7gwptz92lr2eynzrxtjczns0ea\",\n                        \"reward\": 656177395103177937795,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1c0stsfewuu9cpna830xhcc482v28gyepfr900u\",\n                        \"reward\": 74831867792862571807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one105nyzvqzrxlfa3h67najs8yr3q0vjmrpwh7d0c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1q622dgcsyc6tt969vempfusxyc2keydc53alan\",\n                        \"reward\": 2.512530738883777774938e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 59468400879656751,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.23e+21,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 1690622136640609110,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 37157013206675918836,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9hnyw8demj8n5r8xv5d05j2wlfpzxj52vm4nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1staxun5na2ltqw0x0s98tgkjlv0ye7cwj64987\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hc0a9ljk82mqmfqny4282p0a6dps54qqsz5xw\",\n                        \"reward\": 49844087100223594479,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a5t82ss6qejv0tep5x2vzjae8g7h3elnwchtux\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16ef43jr7s8hcw89yr84l9sxl3xsta5xh4qq2cg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z63t53093vs0jt8xhvhqqt3qnycykq4qqydmvx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1ml8qedmlsltjzjk2uszzjjqh670jtae7k370l3\",\n                        \"reward\": 14521418380265602331,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.16660625e+22,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 66223568915928467997,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14c3t6esxwnz44zr7ewyplsxu3ur8gl902wuuws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.14e+22,\n                        \"delegator-address\": \"one1ln66zgvc2krv9v7hqauws45ktnal6jmws2c0fa\",\n                        \"reward\": 8982698988326295272,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1574ah72anu3pa65pm3fxyt68c5sy2wf75qpkn7\",\n                        \"reward\": 973132389293271783,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 1339810089765685531,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tf6um60tpngwrvvdtwa4x88mynre36amjxm2yy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.680199144e+21,\n                        \"delegator-address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n                        \"reward\": 9427442998307651679,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yufjhmg62e54lvl849h969acv2we8dsf0aqu2c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one13guglgwq58rcpajjwv9nr3gkw2jk08w6k9ajjk\",\n                        \"reward\": 2607937901079111831,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one18sj48wr5nayzwue4plwvj25c4qlrfgnr2rkcd3\",\n                        \"reward\": 10878619784854536117,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Best Harmony ONE Staking Platform\",\n                \"identity\": \"HM\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 4e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Honest Mining\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"support@honestmining.com\",\n                \"update-height\": 3359608,\n                \"website\": \"https://honestmining.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 43596,\n                    \"current-epoch-signing-percentage\": \"0.998419787014771556\",\n                    \"current-epoch-to-sign\": 43665\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"16016428976816466666000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.120398654994126799\",\n                \"blocks\": {\n                    \"signed\": 4991875,\n                    \"to-sign\": 5065786\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.128555103324032363\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.123277855752342455\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122077841444860799\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.126723661261220514\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120651497612810352\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.126144152545485734\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.125196955440314599\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119103687933660838\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117786682335840843\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117744629087677915\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115996920123103447\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.118795769452863575\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.117900230333138662\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120747318743895103\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.118493851518709864\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119751969000876648\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.122040371121052158\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.122984890115306105\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122848732739500884\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121756810433313560\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121096575548178444\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.122221397941348211\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.119782431586116110\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.120264817206693780\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.120837178872593595\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120893114533781411\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120470287741180104\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.118139882851388865\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120184110926036710\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119969304263550651\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120398654994126799\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 49372,\n                            \"to-sign\": 49446\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49237,\n                            \"to-sign\": 49272\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49259,\n                            \"to-sign\": 49293\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50205,\n                            \"to-sign\": 50253\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49228,\n                            \"to-sign\": 49344\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49163,\n                            \"to-sign\": 49245\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50790,\n                            \"to-sign\": 50958\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49157,\n                            \"to-sign\": 49272\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49139,\n                            \"to-sign\": 49233\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49273,\n                            \"to-sign\": 49368\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49164,\n                            \"to-sign\": 49440\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49731,\n                            \"to-sign\": 49854\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49329,\n                            \"to-sign\": 49578\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49944,\n                            \"to-sign\": 50220\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52424,\n                            \"to-sign\": 52632\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 55461,\n                            \"to-sign\": 55587\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49936,\n                            \"to-sign\": 50145\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49340,\n                            \"to-sign\": 49605\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 47961,\n                            \"to-sign\": 49695\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53339,\n                            \"to-sign\": 53499\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49278,\n                            \"to-sign\": 49425\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49371,\n                            \"to-sign\": 49494\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49427,\n                            \"to-sign\": 49542\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51307,\n                            \"to-sign\": 51468\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52750,\n                            \"to-sign\": 52950\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50702,\n                            \"to-sign\": 50895\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52975,\n                            \"to-sign\": 53232\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53342,\n                            \"to-sign\": 53499\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 24,\n                            \"to-sign\": 27\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 57711,\n                            \"to-sign\": 57942\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 6.10176226813095676418568e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.467781458485874937841e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1f3ac5111ed5768a2dd10ab5e600d414ff8f27f6305280f959f0eff06727b3436a416223eb4676ce5ed4710d7539900b\",\n                            \"earning-account\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                            \"effective-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"group-percent\": \"0.005759100755792562\",\n                            \"overall-percent\": \"0.001842912241853620\",\n                            \"raw-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.468036401302252282023e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b300c9649d2ac7c7669543fe9bfa9b52afd0853d32928cbee765647a94db5a11b68a6d8c71bd4ba0e476fcae968d3e13\",\n                            \"earning-account\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                            \"effective-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"group-percent\": \"0.005759100755792562\",\n                            \"overall-percent\": \"0.001842912241853620\",\n                            \"raw-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.466977110835269828516e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"149b64db1423d6ff7ff8e192ae39cc836ae06bb8b8fc45c1aba84dd87329756ea0041bfb62535d082312a6fcca988b87\",\n                            \"earning-account\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                            \"effective-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"group-percent\": \"0.005759100755792562\",\n                            \"overall-percent\": \"0.001842912241853620\",\n                            \"raw-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.6516428976816466666e+25,\n            \"validator\": {\n                \"address\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                \"bls-public-keys\": [\n                    \"149b64db1423d6ff7ff8e192ae39cc836ae06bb8b8fc45c1aba84dd87329756ea0041bfb62535d082312a6fcca988b87\",\n                    \"1f3ac5111ed5768a2dd10ab5e600d414ff8f27f6305280f959f0eff06727b3436a416223eb4676ce5ed4710d7539900b\",\n                    \"b300c9649d2ac7c7669543fe9bfa9b52afd0853d32928cbee765647a94db5a11b68a6d8c71bd4ba0e476fcae968d3e13\"\n                ],\n                \"creation-height\": 3359679,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                        \"reward\": 857981575215232708770,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 1.611233355946662591147e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 133333000000,\n                        \"delegator-address\": \"one1jx7wusrrnj2djdf4dus5cq07yw3fe2077j2l67\",\n                        \"reward\": 1010819342,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 1.11413886716507678602342e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhsvtu2hppmhxemycxr0kujwlgefwn7lu09vwp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f7kjcy579yc7r8zhzn44nj92l88r3jaa9dm3x9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2409569232e+22,\n                        \"delegator-address\": \"one1txgkp53hshqg5vsez2f5qrggw9c0qt3ymvj7wk\",\n                        \"reward\": 19129681146491743125,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 113084691442215255323,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uf2mck76qeug6qy9kejq2rjvtqlzw0uz5qx4dh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0000847428e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 6473987379338205559,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vh2pxsm52m73k9vedcppmx9jgrdawevkfge9er\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1staxun5na2ltqw0x0s98tgkjlv0ye7cwj64987\",\n                        \"reward\": 3418225241821349574,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vzlt9yygwvc62vx9n35t2l3k57adctyhzxn7ar\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1uu6pdunu60chctm7nwjwzsl5r59gfjcqnke9ge\",\n                        \"reward\": 365649946949499676737,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vmwkdltw68zh6g3el0v2xpr6c2kudfd9c4c746\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 3317259572483150441,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18886pfha5x9ds0ucssklqjzmvlwpzsptfy8cwq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1wec2k54hfe5s4aksjwd3tpdvxuj72wtpsnre40\",\n                        \"reward\": 31009248860182243306,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hrxguavlwkmrjl6xdeh3hjkk85fsej8kg8nm6l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0840566809e+22,\n                        \"delegator-address\": \"one186xg2tu7p8jt8mp074s32wys4snxzmt5e2mxy3\",\n                        \"reward\": 346764263472974890042,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wrqptxzxkg4h4q898jlclnk866z0n7d9232vgn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.017e+21,\n                        \"delegator-address\": \"one1nj0sa5q08qyjz2jwnkw460k2s9lttntqdk5x58\",\n                        \"reward\": 2035913996751958303,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7844e+23,\n                        \"delegator-address\": \"one12cwc8q4r2c6wl6a797ksxgc0njs8j4yshavkky\",\n                        \"reward\": 2.332708891952820633643e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1335zj6hdqdmd35py9mcwwhpmxcrs27kvs9dufq\",\n                        \"reward\": 21446177919302689602,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1efg6c7xt9n2e9tmak9qmusee6xlxle6yc76ef2\",\n                        \"reward\": 11354087453946236233,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gef3psx7xz8d8rargcrj9m4uw46n2uqk22tgtj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.392e+22,\n                        \"delegator-address\": \"one1j8dr0au6kedv92nk327m7r5xjgg8cjg8u8l87a\",\n                        \"reward\": 1.775334314651081940768e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3200555e+22,\n                        \"delegator-address\": \"one1v6c7ewjxz5u0kzqv42ryfc9nc95pcs8zf0ezjl\",\n                        \"reward\": 279258797234734331086,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.400286177e+21,\n                        \"delegator-address\": \"one1pkgr37n4wg97c93qzmqkpufy8jyvsu9khsal5l\",\n                        \"reward\": 3906187753282178024,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.198218760333333e+21,\n                        \"delegator-address\": \"one1qfcg2fhvkpvs2l425hlxhdat6el3wayu0zar3j\",\n                        \"reward\": 159495769005162129651,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lgsujrall97708zhpxdn5ursnyh3g6ue8gsj3l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.00193341e+21,\n                        \"delegator-address\": \"one1a05xxp5eq5e83xu6teuvczcx62cutrt970wq5t\",\n                        \"reward\": 61964086848657096367,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18k2rt7as2vjf9968tn0hdsn35yrajad25vvr90\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1apuealayrtv3xa002m3yr7hwwca8cuny2jg6wy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1l72m3c54jyr75vvakxau3zthghx76zrwaxa0me\",\n                        \"reward\": 1463761738856853285,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1a5j09n5v2l87u8j0l0c9vuj26zaqvsg5spxjdx\",\n                        \"reward\": 3351691650350791583,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one15tjsjcff0mcxc76qjrspmc8ml53yg9px3d2qgp\",\n                        \"reward\": 1066912560679504715,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Ript.io is a Harmony blockchain dApp warehouse, building all the latest, cutting-edge decentralized applications. DeFi, games, betting, and more! running exclusively on the Harmony blockchain.\",\n                \"identity\": \"🤑 Ript.io - Harmony Token Creator, Games, Gambling, Tools and More!\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"🤑 Ript.io - Harmony Token Creator, Games, Gambling, Tools and More!\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"admin@ript.io\",\n                \"update-height\": 3865723,\n                \"website\": \"https://ript.io\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 57237,\n                    \"current-epoch-signing-percentage\": \"0.983724047848205692\",\n                    \"current-epoch-to-sign\": 58184\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"26618454592751201900622000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.094812680108670469\",\n                \"blocks\": {\n                    \"signed\": 8038825,\n                    \"to-sign\": 8136828\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.101708179904274222\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.087726939996814330\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.102582220399649174\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.100510458555325453\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.100097391730721709\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.100200809179596721\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.099191339094976942\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.100747696797214159\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.098948389205497444\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.100006167372308088\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.096879997896133691\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.099272960622877592\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.099986714350394554\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.099316019117595655\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.100730694972863135\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.100517977369321766\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.099420483619599037\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.098006729032664473\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.088481971796270117\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.099904867966978200\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.100105074559978924\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.100080265693318810\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.092184638317966093\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.090903001630877514\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.078799515806510657\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.079082774100143759\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.093995556113187123\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.095022840086755116\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.094361583350036784\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.093365891242270252\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.094812680108670469\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 64519,\n                            \"to-sign\": 65924\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 63891,\n                            \"to-sign\": 65704\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65465,\n                            \"to-sign\": 65716\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66996,\n                            \"to-sign\": 67000\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65758,\n                            \"to-sign\": 65760\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 54280,\n                            \"to-sign\": 65708\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 56213,\n                            \"to-sign\": 68008\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 61853,\n                            \"to-sign\": 65744\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 63423,\n                            \"to-sign\": 65668\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 64407,\n                            \"to-sign\": 65816\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65953,\n                            \"to-sign\": 65956\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66435,\n                            \"to-sign\": 66468\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 58545,\n                            \"to-sign\": 66108\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66226,\n                            \"to-sign\": 66980\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 69886,\n                            \"to-sign\": 70160\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 74018,\n                            \"to-sign\": 74100\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66864,\n                            \"to-sign\": 66876\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66132,\n                            \"to-sign\": 66136\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66223,\n                            \"to-sign\": 66224\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 71304,\n                            \"to-sign\": 71304\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65920,\n                            \"to-sign\": 65920\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66027,\n                            \"to-sign\": 66028\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66088,\n                            \"to-sign\": 66088\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 68632,\n                            \"to-sign\": 68632\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 70633,\n                            \"to-sign\": 70640\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 67907,\n                            \"to-sign\": 67912\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 70955,\n                            \"to-sign\": 70984\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 71374,\n                            \"to-sign\": 71388\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 71560,\n                            \"to-sign\": 71560\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66480,\n                            \"to-sign\": 77336\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.361389156008237667606921e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.74276166630534308141e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"817c6a12af36c867b094fbb51aed5ec7f959ba375c77609f230094a0b7d53f68fe27b7f78e29c73b333c1cd8ac84328a\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.738627338502065124811e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ed59468d36e33f0e2cd21951c55e41420a6736d23ef013eb3a39f6b4a9290c6353c0a3ea996bc5ae65bd4a5776f76c96\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.742034871981007909934e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"aa70ed1b13435ae2dcb18c94441aaae8bb6875f82e3b8ac79e0b150aa19bd80eff0e645bb7f9c11357f3eec08cbb8b86\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.744322116739048200823e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1da48ca1279c4945c620c2e5358355d2dff218ea4b36c8a90e06baedbad673a749854593618000de20936205060d1106\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 3.22354495822102222223e+25,\n            \"validator\": {\n                \"address\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                \"bls-public-keys\": [\n                    \"ed59468d36e33f0e2cd21951c55e41420a6736d23ef013eb3a39f6b4a9290c6353c0a3ea996bc5ae65bd4a5776f76c96\",\n                    \"aa70ed1b13435ae2dcb18c94441aaae8bb6875f82e3b8ac79e0b150aa19bd80eff0e645bb7f9c11357f3eec08cbb8b86\",\n                    \"1da48ca1279c4945c620c2e5358355d2dff218ea4b36c8a90e06baedbad673a749854593618000de20936205060d1106\",\n                    \"817c6a12af36c867b094fbb51aed5ec7f959ba375c77609f230094a0b7d53f68fe27b7f78e29c73b333c1cd8ac84328a\"\n                ],\n                \"creation-height\": 3359734,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.5153585e+25,\n                        \"delegator-address\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                        \"reward\": 3.62065706030344905900259e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2321e+23,\n                        \"delegator-address\": \"one1m7r9dpnf2t60yutm5v68akjc3y2490ywfeaxax\",\n                        \"reward\": 1.0152527063875391784148e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.171248e+24,\n                        \"delegator-address\": \"one135qsakzl3vt0txnstu5u9jj05c0a4s9wzp83jp\",\n                        \"reward\": 7.2602804611910975922702e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfuvmhz4zgvpeyap5k7qngj25xv84t65vnecye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2222222222222223e+21,\n                        \"delegator-address\": \"one167hy5watz30yev6pdw4wn672puf9pwxadm080p\",\n                        \"reward\": 42983076710210552755,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.279359988e+21,\n                        \"delegator-address\": \"one1cjzgsuv7jcz2wqq8mvnuvcx5rf32d3dhvus55a\",\n                        \"reward\": 12475438732443476014,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mgesvhk7yhyc65mr9yardtsmgkyafxn8myfy3l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1hu8dqr7glfengcnw2sv7vxzcc25h3art4crd9v\",\n                        \"reward\": 51691146619299186755,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 841126401800264352,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one12x8ax0s2jh6zxpvzgjnlexaffqx8gjvkygkav2\",\n                        \"reward\": 30927243568133339439,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.036648e+24,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 755514363232573674948,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2157e+22,\n                        \"delegator-address\": \"one1lfkva4pwfau4ynu6rvkzr82a2edlhg3kwa4lkw\",\n                        \"reward\": 8929570230218122641,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"a group of cryptographic infrastructure companies consisting of software development and cryptographic compute facilities\",\n                \"identity\": \"CypherMines\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"CypherMines\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"suppasit\",\n                \"update-height\": 3472725,\n                \"website\": \"www.cyphermines.io\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 87088,\n                    \"current-epoch-signing-percentage\": \"0.997228901866483454\",\n                    \"current-epoch-to-sign\": 87330\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"32538596337922133332999999.999999999999999998\",\n            \"lifetime\": {\n                \"apr\": \"0.120113646134942838\",\n                \"blocks\": {\n                    \"signed\": 7008048,\n                    \"to-sign\": 7027724\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.123339330435163266\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122332000428439095\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124500245109115375\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.126604606806472276\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120753853077224795\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.125206178456165700\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.124287483472996946\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119447051338345593\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118032554830791044\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117899564957804715\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.116312123854898005\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.119191676952653925\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.122243603844689492\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121348427165168439\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.118990784833282429\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.120054488455275871\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.122403087075728515\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.123718895789959865\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.123510534983962179\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121582603895907344\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120461688940578733\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121452595889008797\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.120022241760008748\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.120497253990798561\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.121265037463577932\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121106425343722935\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.119572303750895316\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.118170981351658137\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120021327826744731\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119748713915655595\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120113646134942838\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 98523,\n                            \"to-sign\": 98892\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98306,\n                            \"to-sign\": 98544\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98382,\n                            \"to-sign\": 98579\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83693,\n                            \"to-sign\": 83755\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82238,\n                            \"to-sign\": 82240\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82072,\n                            \"to-sign\": 82075\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 84928,\n                            \"to-sign\": 84930\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82075,\n                            \"to-sign\": 82120\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82050,\n                            \"to-sign\": 82055\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82272,\n                            \"to-sign\": 82280\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82157,\n                            \"to-sign\": 82400\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82774,\n                            \"to-sign\": 83090\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82630,\n                            \"to-sign\": 82630\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83700,\n                            \"to-sign\": 83700\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 87616,\n                            \"to-sign\": 87720\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 92644,\n                            \"to-sign\": 92645\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83552,\n                            \"to-sign\": 83575\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82616,\n                            \"to-sign\": 82675\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82824,\n                            \"to-sign\": 82825\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 89164,\n                            \"to-sign\": 89165\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82333,\n                            \"to-sign\": 82375\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82388,\n                            \"to-sign\": 82490\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82533,\n                            \"to-sign\": 82570\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 85739,\n                            \"to-sign\": 85780\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 87290,\n                            \"to-sign\": 88250\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83883,\n                            \"to-sign\": 84825\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 88353,\n                            \"to-sign\": 88720\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 88826,\n                            \"to-sign\": 89230\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 88291,\n                            \"to-sign\": 89455\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 96377,\n                            \"to-sign\": 96570\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 8.73826049900420356949725e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.487667130649264597566e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"cc5d617fc09fe51e17c662161d31775939f5d2c697281474470a4a93273083f702a384bcaa9cb2abe80b9a1921335a13\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"group-percent\": \"0.005850026089879492\",\n                            \"overall-percent\": \"0.001872008348761437\",\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.487315211543497192485e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a911bc83a580cf27c4db1e9e337571eb4a9a57e1a20683db4b2458d566a4486869085c7173e8d28b89743b4ab1ec9113\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"group-percent\": \"0.005850026089879492\",\n                            \"overall-percent\": \"0.001872008348761437\",\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.489770452666278402335e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"527d82b5fb83572c02c8f19565d6eb73da8bde325e2fb1ab2c9d961ef5f7d32dd4156064d882f40a762eccf93775d197\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"group-percent\": \"0.005850026089879492\",\n                            \"overall-percent\": \"0.001872008348761437\",\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.490840876229295128642e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0c625906b4a10a9772ad58099ab35cb0e959e5e7231a05a5bda30141b5448b4e8cbc4f623d4def4633f8845b48c09183\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"group-percent\": \"0.005850026089879492\",\n                            \"overall-percent\": \"0.001872008348761437\",\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.488653571826890265681e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"727560b71d3913af37761f21905eeaae5e789e4ba6eea5343b84727aa125e8730486ad4cda9d162d2595edff55593297\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"group-percent\": \"0.005850026089879492\",\n                            \"overall-percent\": \"0.001872008348761437\",\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.489130442329863701912e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"596f3d0e70be4958cf1279e59ff3630c425ef3a0ac9016a53f41bed463acbf4cd5e5f5f9d8dc8810239c8dd761f6b58f\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"group-percent\": \"0.005850026089879492\",\n                            \"overall-percent\": \"0.001872008348761437\",\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 3.2552897337922133333e+25,\n            \"validator\": {\n                \"address\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                \"bls-public-keys\": [\n                    \"a911bc83a580cf27c4db1e9e337571eb4a9a57e1a20683db4b2458d566a4486869085c7173e8d28b89743b4ab1ec9113\",\n                    \"cc5d617fc09fe51e17c662161d31775939f5d2c697281474470a4a93273083f702a384bcaa9cb2abe80b9a1921335a13\",\n                    \"727560b71d3913af37761f21905eeaae5e789e4ba6eea5343b84727aa125e8730486ad4cda9d162d2595edff55593297\",\n                    \"0c625906b4a10a9772ad58099ab35cb0e959e5e7231a05a5bda30141b5448b4e8cbc4f623d4def4633f8845b48c09183\",\n                    \"527d82b5fb83572c02c8f19565d6eb73da8bde325e2fb1ab2c9d961ef5f7d32dd4156064d882f40a762eccf93775d197\",\n                    \"596f3d0e70be4958cf1279e59ff3630c425ef3a0ac9016a53f41bed463acbf4cd5e5f5f9d8dc8810239c8dd761f6b58f\"\n                ],\n                \"creation-height\": 3359847,\n                \"delegations\": [\n                    {\n                        \"amount\": 4.6985e+24,\n                        \"delegator-address\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                        \"reward\": 1.19000926166358045736e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p3u89p0p4nxaj5sdcx0s20g5u9a3xjccjmfwuu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ljvq9tkvfp583zzl85mgjh3qjvjufnuwmn7krv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12c23ekslj469g0g0tu9jcvecfkla7rahmrhe37\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19l9equxmql4jkcah8g4f6qva732npajarffj6q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.158159e+24,\n                        \"delegator-address\": \"one1rhsvtu2hppmhxemycxr0kujwlgefwn7lu09vwp\",\n                        \"reward\": 1.433444879737015022204e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jnm0mmlw2rur0hjvq3nl4uw3v7r9fd3gjvzcna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.489393e+24,\n                        \"delegator-address\": \"one10c6ndnnvse0xrl88hr8hv52tdytnh3raflxmm6\",\n                        \"reward\": 964329612021590887490,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1td7y4ltg6qkecmdxawltcl4fps84wl56dwvrlj\",\n                        \"reward\": 96129478331559134,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1940xav3v8j2z7fp9rj4xz009y2lpjgrglse2gf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xxwm5efekrd6h4wk3vz2un6ap0tdvq5ctf33vq\",\n                        \"reward\": 7588367379850625708,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.01135398864e+23,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dtnwdj0umv7r0zn5styglj6npksmstsk8krm4x\",\n                        \"reward\": 58988129191506902552,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 600000000000000,\n                        \"delegator-address\": \"one10vey9cj3f6jrxkr4ffds5h5zcffftjz5l96kjf\",\n                        \"reward\": 17924284942919,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1588j47yhfdn89pm56g0r0scj487hu8ggvgv3da\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 121763878450542510234,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0667e+22,\n                        \"delegator-address\": \"one1qup2xu4zj2m7aeld7z7cjkcw8fpspfaprs4tc4\",\n                        \"reward\": 162917322318256323775,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g4k8j5a0d032duwk4ns9qcv0lgrtr8370t2s7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 274126725300305757086,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l90q8v4v3erqv9ptuzhpuu6ywye99v7cc0c3q5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.51e+22,\n                        \"delegator-address\": \"one1qd52q5gaef7rz2jqe3pxm9p23x2x77nhtlvvhs\",\n                        \"reward\": 93744060195813732986,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.797608049e+21,\n                        \"delegator-address\": \"one1q8y3kg3ag6mwedj5haqs9gv7jmpfjxrzca9h6m\",\n                        \"reward\": 12899949570981629394,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19uu2ce5a8nhsct4zvcu52zdfrnht2nsdk3pwvy\",\n                        \"reward\": 4021888990448955050,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1amv76s26wx8z26c9gez6le02jva5ea63rgpvqx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s5sqy8ufg5pegfzv6j4a5n879udsaasu2u5hdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.35e+22,\n                        \"delegator-address\": \"one1muus26kz85zfn8lavcgxlt2n9zcxeza3d9tl4m\",\n                        \"reward\": 2481039324912129784,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fzne3d2ndvxpx5vx0v2te7zzjprkgcryckeuuk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtttzprrpvgeuwjsvkcyz00lftpy63kjk4yd82\",\n                        \"reward\": 2.982630714675987477528e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one17efjyng3k8yvm6ssmaxlv36l9r8ua28y0cuxp6\",\n                        \"reward\": 28449308398508600992,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one139ah94e2sra36mgyz5q5d4v6g5f3zsj5yh92qa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xgul4a4keudecfvf3gq2l7w3x0xjs23hjcmgry\",\n                        \"reward\": 2186453619402988456,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vle69v9xswf9fttr3mn77k4pgsgt5pr3d9hm3c\",\n                        \"reward\": 19259927681936542569,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d4mq24w7ske9lrm3el7tf2mtkga2c69ueyddn4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16wacanj8kresz99jea9wp8qtutfp8g4hf9et28\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jxktghsf3yx05mrlya7mch7l0n3u24rf430v2n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.988266466e+21,\n                        \"delegator-address\": \"one148yv9zk8r3c05r4dnxrxnzhv7ch4v7pg2su0w6\",\n                        \"reward\": 283099546123552633227,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.65e+22,\n                        \"delegator-address\": \"one1zanz6rxvzm6j7sgewt54x6qant3grn74rt6lwd\",\n                        \"reward\": 61986283464407974892,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5932987475e+22,\n                        \"delegator-address\": \"one1g09p8nf063ghx6x7flzdjre4x6e24ymn46n33f\",\n                        \"reward\": 1.078821980059386258528e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fl3ua65mgtpy6l95f6wlghavm6548gucxffh22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12kvy5medu2rj4qt3ltmjj0lyndrhm87eq2lkcf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+23,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 475563901572227212309,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one183ecdj4g2lam3e0xyfexxyv9c2p6q30clpxl07\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.02668119e+22,\n                        \"delegator-address\": \"one1jf0qv0g07ahjg2q8duq3kgfx92htkwsajx4ufc\",\n                        \"reward\": 114925087649151292597,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3e+21,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 22354396050254957927,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.381e+21,\n                        \"delegator-address\": \"one14vv9tx5g809zfgygzwccsr05a8shlpcn7j6whp\",\n                        \"reward\": 7387811391459135827,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0145e+22,\n                        \"delegator-address\": \"one1xntq573g0866ph7lt8y85rwcjqcqc966xdckaa\",\n                        \"reward\": 207317883869663120558,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grpk6706ct68pwcqr3vjw60xcuwjkerau7d9ww\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r2cpsd22pgqpurdzy0gt5rvtv7wp7cg5t50lsq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.06435129153e+22,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 47394174608241029302,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d60pue8upt6fjezlllqk6jy8xwa2v8qpt7g73r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0520535446e+22,\n                        \"delegator-address\": \"one1qgnu3jrle48dveu2xhql7a6ck92wt3g36gc63z\",\n                        \"reward\": 283613831954158674331,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mdwfd9c0fnfatt2kxy9ayc35kr2gfgalp4mfzx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7ycs6yexeatycs5686lajr43v9ezc0tgpw7fz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4659e+22,\n                        \"delegator-address\": \"one1l5e86rg9zc3fwpd4zwjnentjfttvnr0547jlde\",\n                        \"reward\": 98172496674463890247,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kzhs0vfhv6q52xh5pq6z25qnaeaztrkmh50zfa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3e+21,\n                        \"delegator-address\": \"one120cldy7u38gpztxrqpv99qrddkmatdvmc9s39w\",\n                        \"reward\": 8608399795428826922,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1txvfdz5ku4qmahru9cm27futck8sh65wh9prjj\",\n                        \"reward\": 25941329402211502401,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ahxlcwawlalnk35weehcg0rfvv0tgt33ga6058\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1wec2k54hfe5s4aksjwd3tpdvxuj72wtpsnre40\",\n                        \"reward\": 64921947734457806654,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1snm00zd3vw927vsxavpnnd0fs4mmv00s9g6nms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16jahlu6ejrtjtc8lsqkjwstg56dw64k9a0ft4e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.841e+22,\n                        \"delegator-address\": \"one1qu26mfgaccdcuszw6p5sqqctgdp2n86xuplp8q\",\n                        \"reward\": 485037506846326807671,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f2ctrtwl3cwz50recdg52lalk7elnseaf8p2n5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l94nhxwupg537n0de7fspyz0rmw78zq6ady6rr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ed2eg7hnzws2wy2xhwt5yrps6gtfn64y9uw4t5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q4xth56kg9dcwp3vxhlc2a8x6kvpt77kwg6ylm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.89145795745e+22,\n                        \"delegator-address\": \"one186xg2tu7p8jt8mp074s32wys4snxzmt5e2mxy3\",\n                        \"reward\": 713378270045275636329,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yp3mjgnkynvkede4l03g0kgtflusag9kpv2m6t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.198218760333333e+21,\n                        \"delegator-address\": \"one1qfcg2fhvkpvs2l425hlxhdat6el3wayu0zar3j\",\n                        \"reward\": 170824644715714674718,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rpgy3s25vp5c6e7x4l2ux6nepgt9f3vdykuxnt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.0214e+22,\n                        \"delegator-address\": \"one166t266vdh4ugz92ggushu9c2ulxrylramc5vye\",\n                        \"reward\": 710790069546666143525,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g993gpytu3d0f0haqnj62pac6a9y7yu3wd0qrn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0000645e+25,\n                        \"delegator-address\": \"one1v5ruxczvv97ejnhtl7cph0e3l3843vxq3anwr7\",\n                        \"reward\": 1.992947272334253027013e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.557143371e+24,\n                        \"delegator-address\": \"one1dt4ddascgkfxs0yghxltdgpf37j33pde9m399s\",\n                        \"reward\": 2183642264673645438,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4552033e+21,\n                        \"delegator-address\": \"one1l5qlp9tmpgdfr86vdq9m5w4mf69qkca2s9qakf\",\n                        \"reward\": 2902085358937209564,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1gnnjym5e30wl8n2gfmerypgs0zt3627zk57k25\",\n                        \"reward\": 11118167410286934951,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.090018436e+21,\n                        \"delegator-address\": \"one1cwgkq4j4d935ukvp43hjz2u3s5p8xnyeesnst9\",\n                        \"reward\": 14394601309838943065,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 801000000000000000000,\n                        \"delegator-address\": \"one1eg0fzsgsuew83kcmf9xs4ek6hddf4ex0xt7ht4\",\n                        \"reward\": 5463096086067932537,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.1e+21,\n                        \"delegator-address\": \"one1xrdnxjcj3k6ddy2mvjlyzgvhc8wf5r97rpmtrm\",\n                        \"reward\": 18452958327322833841,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 488727461029248936450,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.074e+21,\n                        \"delegator-address\": \"one17zejt4e0y88hudn837myqsyhew2umsakcyglg4\",\n                        \"reward\": 37255902395046744111,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0783e+22,\n                        \"delegator-address\": \"one1h0fpgnhy04lrugs434efnrdknfpmv97vhsjxt9\",\n                        \"reward\": 79273218927958334735,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+22,\n                        \"delegator-address\": \"one1efaznjlslrt9grmu6h7qpl4ge735rmgsnl3mlm\",\n                        \"reward\": 4305387060737134975,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.66777224e+23,\n                        \"delegator-address\": \"one1wn6khdqyl6at8d6t76r8d06rjlq8wdztvrh970\",\n                        \"reward\": 58768113015221983900,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8538e+22,\n                        \"delegator-address\": \"one13t5t6ux85rlmchyqq9sw6ktvgxvwmmpzxfqf9v\",\n                        \"reward\": 46360752050120260610,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"积极管理的独立节点运行者，支持去中心化。\",\n                \"identity\": \"G.E.M.\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"0.150000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 3.5e+22,\n                \"name\": \"G.E.M. - ♓ 独立节点 ♓ - trustful validator with high self stake\",\n                \"rate\": \"0.060000000000000000\",\n                \"security-contact\": \"stakingwithgem@gmail.com\",\n                \"update-height\": 3469044,\n                \"website\": \"https://staking.harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1sgcpjc405ueglhp5udsskjxcn8crrc2lmuf35c\",\n                \"bls-public-keys\": [\n                    \"24490f5de1e89cf19c5f11298ea9fd9ba33f51f5397a0a2f4c04bd2600304a262d7c2eb4375786d35cb6cba9e0b0108c\"\n                ],\n                \"creation-height\": 3360090,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sgcpjc405ueglhp5udsskjxcn8crrc2lmuf35c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Shadowstake1\",\n                \"identity\": \"Shadowstake1\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Shadowstake1\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"Shadowstake1\",\n                \"update-height\": 3360090,\n                \"website\": \"Shadowstake1\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1teymhzlyuxv73hw78gy7vlfuyv3e4stvsmer5l\",\n                \"bls-public-keys\": [\n                    \"0731ccbf196190b1b8aa3b05aae26a22e16812438aa5cd0cca0e9661123ec6fdecfe1a9f7c5a68c227e4f81f534b1f19\"\n                ],\n                \"creation-height\": 3360122,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1teymhzlyuxv73hw78gy7vlfuyv3e4stvsmer5l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Shadowstake2\",\n                \"identity\": \"Shadowstake2\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Shadowstake2\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"Shadowstake2\",\n                \"update-height\": 3360122,\n                \"website\": \"Shadowstake2\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.038632506874187848\",\n                \"blocks\": {\n                    \"signed\": 6923947,\n                    \"to-sign\": 7241986\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.116915495717224157\",\n                        \"epoch\": 228\n                    },\n                    {\n                        \"apr\": \"0.115163940762547548\",\n                        \"epoch\": 229\n                    },\n                    {\n                        \"apr\": \"0.088083753975553673\",\n                        \"epoch\": 230\n                    },\n                    {\n                        \"apr\": \"0.093506404753694327\",\n                        \"epoch\": 231\n                    },\n                    {\n                        \"apr\": \"0.097123795136013775\",\n                        \"epoch\": 232\n                    },\n                    {\n                        \"apr\": \"0.093171473730417049\",\n                        \"epoch\": 233\n                    },\n                    {\n                        \"apr\": \"0.097581659273515017\",\n                        \"epoch\": 234\n                    },\n                    {\n                        \"apr\": \"0.094764059972637087\",\n                        \"epoch\": 235\n                    },\n                    {\n                        \"apr\": \"0.095307759531728871\",\n                        \"epoch\": 236\n                    },\n                    {\n                        \"apr\": \"0.095900792621137564\",\n                        \"epoch\": 237\n                    },\n                    {\n                        \"apr\": \"0.096965781468829093\",\n                        \"epoch\": 238\n                    },\n                    {\n                        \"apr\": \"0.097906794508918683\",\n                        \"epoch\": 239\n                    },\n                    {\n                        \"apr\": \"0.098989641381658417\",\n                        \"epoch\": 240\n                    },\n                    {\n                        \"apr\": \"0.096002531649165447\",\n                        \"epoch\": 241\n                    },\n                    {\n                        \"apr\": \"0.097334465766404685\",\n                        \"epoch\": 242\n                    },\n                    {\n                        \"apr\": \"0.098003428798527650\",\n                        \"epoch\": 243\n                    },\n                    {\n                        \"apr\": \"0.097336255852841272\",\n                        \"epoch\": 244\n                    },\n                    {\n                        \"apr\": \"0.097857339525888939\",\n                        \"epoch\": 245\n                    },\n                    {\n                        \"apr\": \"0.079267090576865270\",\n                        \"epoch\": 246\n                    },\n                    {\n                        \"apr\": \"0.079008993819205483\",\n                        \"epoch\": 247\n                    },\n                    {\n                        \"apr\": \"0.078085563236084435\",\n                        \"epoch\": 248\n                    },\n                    {\n                        \"apr\": \"0.077153501793515729\",\n                        \"epoch\": 249\n                    },\n                    {\n                        \"apr\": \"0.076918015198918101\",\n                        \"epoch\": 250\n                    },\n                    {\n                        \"apr\": \"0.076503719911233130\",\n                        \"epoch\": 251\n                    },\n                    {\n                        \"apr\": \"0.076165213911138385\",\n                        \"epoch\": 252\n                    },\n                    {\n                        \"apr\": \"0.075982384768770242\",\n                        \"epoch\": 253\n                    },\n                    {\n                        \"apr\": \"0.075994276890178624\",\n                        \"epoch\": 254\n                    },\n                    {\n                        \"apr\": \"0.076450899366876417\",\n                        \"epoch\": 255\n                    },\n                    {\n                        \"apr\": \"0.076378540767763277\",\n                        \"epoch\": 256\n                    },\n                    {\n                        \"apr\": \"0.075589954689444735\",\n                        \"epoch\": 257\n                    },\n                    {\n                        \"apr\": \"0.038632506874187848\",\n                        \"epoch\": 258\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.710869276429846690302461e+24\n            },\n            \"metrics\": null,\n            \"total-delegation\": 4.0429502e+25,\n            \"validator\": {\n                \"address\": \"one1u94mkkzdjcudwk7wzlm2sxjpsnmm6havuz45w7\",\n                \"bls-public-keys\": [\n                    \"188ea953e0eedecada1318916c0a581aa3fe06db0a1f4bc05cbab1c354f0e36c5e8ef668fc629beddaa7ba2975284f8e\",\n                    \"01b7fd906c43de9d22d16ccd5a4139c6d214f2586d08bf360eaec9b0bbc0696219a4aeab884fa8f7cb94dc17e6245493\",\n                    \"564ce8478ab2d63b05bcec1a80fd61e6036d805ef146742e7369c8b8d164899d2e8000c62bd2590011aa84e54a41620d\",\n                    \"5ecedd158925d1a991edd9dcec5e3053902392f8e78b5dd3f9b1e88d49d66dc48287ad1369ae978c6217ba759fa46911\",\n                    \"1a56e98ccb400503e8f13b00e52a209794006887376afd718e82c60c285f2be1ee4a8ba56a4f71381f50f6577d4c2e86\"\n                ],\n                \"creation-height\": 3360134,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.275e+23,\n                        \"delegator-address\": \"one1u94mkkzdjcudwk7wzlm2sxjpsnmm6havuz45w7\",\n                        \"reward\": 4.9955569338024900806156e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one13zqn0g4r3zs9ppjqqzyan6h9vzdznndw9t33zh\",\n                        \"reward\": 3.933935178604360018461e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.001e+21,\n                        \"delegator-address\": \"one1adyd3udxj05yutue6c2x4gk6m76hgn843as87r\",\n                        \"reward\": 1286163920854148982,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lj4fj7tz2ftp6ahcxsk07usqvaedu524den8kk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkr4mqpee3gqeykql0cchmul4e2k5x35h9kutm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s7s40ku4ms63066h34xwmm5j5k4jwk74gml5nx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 39339351786043617607,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1th6dqkvnsc9wc023mr306yykflcqlpssmxzqp6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xjq4xf4uhd9fyszvm2aw63j4hvhcddn0aq4hg7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tlqxc0t908dxhmc7cqnpsn70g2dlglsxhuh2rq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1000000000000000000,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one104fv5j5a935yz2vhxhdy62dlvcn3f3eepnhr5j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pcnt5c4t5r8v2rtp26tr8g4eykf64ld9qr0pgf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f7kjcy579yc7r8zhzn44nj92l88r3jaa9dm3x9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Figment Networks Inc.\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 258,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.250000000000000000\",\n                \"max-total-delegation\": 1e+30,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Figment Networks\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"security@figment.network\",\n                \"update-height\": 3475661,\n                \"website\": \"https://figment.network\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                \"bls-public-keys\": [\n                    \"f73b1ff6f5544c6a856efb2f56588fe3fed94f5f837d5b6507e2640090b937819707dbbf4e2a4a6f0a48eced5d4f090a\",\n                    \"86cdbf48388177fca81eb5ed04890bbe003f141f2215cbc44ddf1dd3ec5e7eb7b55adf386b4cdeff7300517085744516\",\n                    \"4315b11cf5452ea1729f5a251be64acb98c765bf02c3b1d0b3cac3fb681b8643924c2d629ae29cdc3c9fa9ba7616ea0e\",\n                    \"4cf21bef39d871ee24c8ed298d02b02e2b394fcb9849beee46a8f0663ebd42a54cd6f91347a995fa9d60c545fbdae412\"\n                ],\n                \"creation-height\": 3360285,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"“203OGS”\",\n                \"identity\": \"BCK NODE\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.500000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2.000001e+24,\n                \"min-self-delegation\": 1.75e+22,\n                \"name\": \"BigCryptoKing\",\n                \"rate\": \"1.000000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3360285,\n                \"website\": \"https://twitter.com/BigCryptoKing\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1vmkzy3a34ppemm2yhtc97hlfssy9g4qc3gglr7\",\n                \"bls-public-keys\": [\n                    \"2b48469cc67c03fde78b71987876b74199e9e8d94eb5ed1ba95ef1adabb86463a7b202d27df29739e33eba59fbf3518c\"\n                ],\n                \"creation-height\": 3360458,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vmkzy3a34ppemm2yhtc97hlfssy9g4qc3gglr7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jpxwmkc4ad7p0p66ya6vl3c379qwhuywqrq95v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wu6lcfdhh0llcv8pndv2qr2kfnaaj77lwcj787\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10cg3jrdvpx76n97v9gnrx2tsashl4fu96wlwgl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zm6h6y06cg3lmnlwnlq7l89ec07vq0hptl6ms8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Micabytes-Validator\",\n                \"identity\": \"Micabytes\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.050000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HarmonyPH-Micabytes\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"micabytes@gmail.com\",\n                \"update-height\": 3375015,\n                \"website\": \"micabytes.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du\",\n                \"bls-public-keys\": [\n                    \"e13041c650a66effe42014a5e7fc708092edb5691adbe288633d8657083b1ae17eb18f692602d91b0dea9f4362f02f19\"\n                ],\n                \"creation-height\": 3360461,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tskp6s7dx5n2wqp7282390qcpzvuy5fa3n6kgg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"ALWAYS ONE Staking - Hosted on Google Cloud Provider - With ALL GOOGLE Infrastructure and Security - Fees Always 1% - Telegram: @Allayom - SINCE THE  BEGINNING - Site under construction.\",\n                \"identity\": \"ALWAYS ONE\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.030000000000000000\",\n                \"max-rate\": \"0.030000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"ALWAYS-ONE\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"Telegram:@Allayom\",\n                \"update-height\": 3360461,\n                \"website\": \"Always.harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 43611,\n                    \"current-epoch-signing-percentage\": \"1.000000000000000000\",\n                    \"current-epoch-to-sign\": 43611\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"16272247986021999999999999.999999999999999999\",\n            \"lifetime\": {\n                \"apr\": \"0.115966029767856684\",\n                \"blocks\": {\n                    \"signed\": 4970525,\n                    \"to-sign\": 4996947\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121391602862233666\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123475443451912925\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125121152874416456\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123288288905296383\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121651066407914297\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121726138641604294\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121042897273287908\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122596676274460475\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119300760210212838\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116769743420600473\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117333021904919031\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116469719010173541\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118958538766360547\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119400550563459859\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119727121398076693\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116528351798441028\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118227673424731734\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120174736095506709\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.117934599352106006\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118404795999045899\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.115737775669337434\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.117499569374367012\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.115182626975470795\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.115838288955890607\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.115172468977415398\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116621447757384915\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116542936811110289\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114597643352296936\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115897639524755035\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115461190907488383\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115966029767856684\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 49421,\n                            \"to-sign\": 49425\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49251,\n                            \"to-sign\": 49254\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49279,\n                            \"to-sign\": 49287\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50221,\n                            \"to-sign\": 50244\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49260,\n                            \"to-sign\": 49320\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49188,\n                            \"to-sign\": 49248\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50400,\n                            \"to-sign\": 51000\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49215,\n                            \"to-sign\": 49299\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48709,\n                            \"to-sign\": 49248\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49317,\n                            \"to-sign\": 49365\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48916,\n                            \"to-sign\": 49326\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49712,\n                            \"to-sign\": 49854\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49415,\n                            \"to-sign\": 49584\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50189,\n                            \"to-sign\": 50238\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52308,\n                            \"to-sign\": 52557\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 55092,\n                            \"to-sign\": 55518\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49723,\n                            \"to-sign\": 50109\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49408,\n                            \"to-sign\": 49581\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49567,\n                            \"to-sign\": 49692\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53365,\n                            \"to-sign\": 53463\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49377,\n                            \"to-sign\": 49443\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49452,\n                            \"to-sign\": 49515\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49551,\n                            \"to-sign\": 49584\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51436,\n                            \"to-sign\": 51489\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52934,\n                            \"to-sign\": 52974\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50909,\n                            \"to-sign\": 50937\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53125,\n                            \"to-sign\": 53238\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53361,\n                            \"to-sign\": 53511\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53638,\n                            \"to-sign\": 53673\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 57714,\n                            \"to-sign\": 57957\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 5.73294939892615972613939e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.451429972640161142449e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7ec92621a6cf99e7cf236f9c218a6fc6120696d1dfe8687cfbf5b0d1a0b7785a9c6e7633b0829078d77ceb00b7d8d109\",\n                            \"earning-account\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                            \"effective-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"group-percent\": \"0.005665046671702027\",\n                            \"overall-percent\": \"0.001812814934944649\",\n                            \"raw-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451429972640161142449e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f1558e3fff2d89c37acec3d055bf0131c864fb222574bef27ca0af13dd3fd73173d8e818d842b117f5c6d5bcd545250d\",\n                            \"earning-account\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                            \"effective-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"group-percent\": \"0.005665046671702027\",\n                            \"overall-percent\": \"0.001812814934944649\",\n                            \"raw-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451429972640161142449e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ae5a7f0981b71b588df866bbb7457c42549824f8688743038c7c0c8a5a181be0747373d690989c09265d7b4802a6d30d\",\n                            \"earning-account\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                            \"effective-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"group-percent\": \"0.005665046671702027\",\n                            \"overall-percent\": \"0.001812814934944649\",\n                            \"raw-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.6292247986022e+25,\n            \"validator\": {\n                \"address\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                \"bls-public-keys\": [\n                    \"7ec92621a6cf99e7cf236f9c218a6fc6120696d1dfe8687cfbf5b0d1a0b7785a9c6e7633b0829078d77ceb00b7d8d109\",\n                    \"ae5a7f0981b71b588df866bbb7457c42549824f8688743038c7c0c8a5a181be0747373d690989c09265d7b4802a6d30d\",\n                    \"f1558e3fff2d89c37acec3d055bf0131c864fb222574bef27ca0af13dd3fd73173d8e818d842b117f5c6d5bcd545250d\"\n                ],\n                \"creation-height\": 3360476,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0000736579e+22,\n                        \"delegator-address\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                        \"reward\": 283602237759360177468,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.89161e+23,\n                        \"delegator-address\": \"one162nx454ej6rp0wjag2f8czcayruwrf33xuvhj0\",\n                        \"reward\": 123572031409342269555,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 1.08924496522941307266043e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h7dzamwjvfyt8zfjgnuxx247uuplj3fyns7gpg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4003249443e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 5511987759114553626,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12lwj5h27ne8ada20s7ya5qzmwvuwpsj423kcg7\",\n                        \"reward\": 2242417739851989081,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xdpqw72hseu8z99y9l6gjg962j3a9kw5zmkews\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18p6kz3lp0j79gpr9jmmzq6whfgw3eaksjplklk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+22,\n                        \"delegator-address\": \"one1mzpn7ag8nj3d4jxz00p7n4pqeweds0w2w9lcn9\",\n                        \"reward\": 135099906279578418172,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19rspxun4ry5ehgkdkhv9aly23e7rdcjnrhnh2n\",\n                        \"reward\": 84367086166652673960,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 864496988543131725,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7e+21,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 3839830391000326370,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05e+21,\n                        \"delegator-address\": \"one1cjz7s58r3fa00v08nssvkrztz9yfd3djl04dq5\",\n                        \"reward\": 6419942956590341522,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.833e+21,\n                        \"delegator-address\": \"one1w5qfpepheyt0lsfynd3cuarqa8ytra9mrplavw\",\n                        \"reward\": 873810697351552088,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1awkjv8vjfc8tnmxcya75dhrzw6mnt30ppsk8ln\",\n                        \"reward\": 361221655486788621,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1yh2rvwwecu2x9c9rlj3cp2kvpwvj4c8fndw7j3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Contribute to the digital transformation of companies through the use of Blockchain technology. HRC20 Token associated to Mintbes Node: EUSK 0x85a1DD919cd605aa2EAD4b01ff1190504BcAb609\",\n                \"identity\": \"65c291cc8c4b717e73e023d83103fb89c336c6f7\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"🌿 Mintbes\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"@JosebaSdB\",\n                \"update-height\": 4605947,\n                \"website\": \"https://block4coop.eu\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 261699,\n                    \"current-epoch-signing-percentage\": \"0.999404250443947986\",\n                    \"current-epoch-to-sign\": 261855\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"98142762070403742856999999.999999999999999986\",\n            \"lifetime\": {\n                \"apr\": \"0.118050325612354145\",\n                \"blocks\": {\n                    \"signed\": 32373219,\n                    \"to-sign\": 32575046\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122130281514460267\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122137780333754202\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124524049381164161\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.126293725219017790\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120289094183189652\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124426864788400738\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123470652906540522\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.120410235600508067\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117866014101228053\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117419045497266697\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115845004425277583\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117285608320447507\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120028775297138192\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119694460411388506\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119840528164162006\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118782423521342543\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120735226204377349\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121332827218752490\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121056035870461149\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120606285774586964\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119870756718800546\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121903515888412316\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117545521546468076\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118222525080066623\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117922503412152471\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.112095155509634516\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118331669527328213\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.116812476772062277\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118293236655474520\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118035575665371679\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118050325612354145\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 296532,\n                            \"to-sign\": 296641\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295532,\n                            \"to-sign\": 295622\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295568,\n                            \"to-sign\": 295722\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 267782,\n                            \"to-sign\": 268014\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295694,\n                            \"to-sign\": 295975\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295302,\n                            \"to-sign\": 295570\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 305719,\n                            \"to-sign\": 305932\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295481,\n                            \"to-sign\": 295764\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295342,\n                            \"to-sign\": 295466\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 296127,\n                            \"to-sign\": 296172\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 263322,\n                            \"to-sign\": 263535\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 265835,\n                            \"to-sign\": 265883\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 264274,\n                            \"to-sign\": 264431\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 267689,\n                            \"to-sign\": 267895\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 280447,\n                            \"to-sign\": 280559\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 296232,\n                            \"to-sign\": 296329\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 267306,\n                            \"to-sign\": 267400\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 264400,\n                            \"to-sign\": 264515\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 264853,\n                            \"to-sign\": 264990\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 285027,\n                            \"to-sign\": 285233\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 263495,\n                            \"to-sign\": 263655\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 263906,\n                            \"to-sign\": 264048\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 264285,\n                            \"to-sign\": 264334\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 274499,\n                            \"to-sign\": 274541\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 282428,\n                            \"to-sign\": 282490\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 271495,\n                            \"to-sign\": 271571\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 283504,\n                            \"to-sign\": 283916\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 285112,\n                            \"to-sign\": 285532\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 285917,\n                            \"to-sign\": 286251\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 308797,\n                            \"to-sign\": 309129\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 4.718203303078204389512491e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.4582730721020618521e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fe809303969f91a644580f1515e6d3029802c3a964a5eb6413ec2a72c1e17c70c795ae72d8647af9aa68538b368ac009\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005694596592679134\",\n                            \"overall-percent\": \"0.001822270909657323\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.457936301243073457518e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9756abbc889d65aa2739fecc1bc7188640395c003de39c4704525136764d5b607750fb86f8d6b93a784ff52456147b01\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005694596592679134\",\n                            \"overall-percent\": \"0.001822270909657323\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.457946279379556668428e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e3750661e4996422239dbdc369793e3cd248c6f4ad54f17145a5396347af67abc8fac82a5e51a45055b483874b9ac691\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005694596592679134\",\n                            \"overall-percent\": \"0.001822270909657323\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.457695379492226386484e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2a2091d221e02a0982a4c4501f94d88980ccff0a447b3d47d0f78aa1e77504daca95cc35698ceaa1c984b819af5a160d\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005694596592679134\",\n                            \"overall-percent\": \"0.001822270909657323\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451443370968554251399e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c1fdc6946494e5caf6590c04b8e38172b481cdd570b884628dec1a1e4c8a553b697cfa5c6ae678003b6b73e5903d638a\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451547997022756241331e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6d14b744ddc346f422d50d9df92e885732fa4963192cec2023390056f04afebe7accb5fdb8a17deeabba46b0d055a802\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451547997022756241331e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1781c77e68eb73118dc75cbaa5c3531f76434462463b2e6a07a91ed5c0a6cc85c14491f64a8bce7165feaf619519ef86\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451547997022756241331e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"417c2b9d293c24c03cce180d279968855abcd8407a56ad3d38ee41f7231da51adc90f9afb1f6f054c28cac4465cb9296\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451547997022756241331e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"907d2fcf1857be1d1880f86af693e0def624a2d886eb19ab6002e2aa0965a06b0bdcf065ef768da4ff7d0fa5f1977d0a\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451547997022756241331e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8a8baf28a1aa17c58a30a8472ddba616e9b5c37105f2d754530850927722144f4b5b263de9339aa13a07013654559586\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451547997022756241331e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7c5ca6fd99109e79b2ba94caabba3e8b0e40785fc15e9b62a6804ed7ec6ff04b3a954172290b1e2dd9e26edfefd8ab02\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.49951175218453514713e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"59cd2977ef1f46ade77b8dc56d26883acf9f1e8b05eea76f1a35f4ef636d241d4d63c35a7aa3873ce64bcca76018e213\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.499815466732725484015e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d2f6b1c9903d38fde61a77a293ec8c9107255ff7867bcfd8e9189b1fcb1ea220fc55a35c81bb0ad1a32cd39ee06f8683\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.499511569112422472511e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f2a4539f1251cc5b173d43d52ffc41f95da5999e782f8c3f82bdd76d2f85fc4ce35ebca5fd6130fb018efd3bb140b78b\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.50018155497067028118e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d57cd6de45014b79f81a7752deb0c385a324b0efaed86a8c06a1b5d4212430d21a7361f2f799f434967d5558aea85e8b\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.499593347339351189026e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"cb6a52fd791c3afb7a0243fa1b5388ce451707ecf94ef7262905929db69588d68ad027c8736d6a868195ab740a459c8f\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.499718581693435702739e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"38f4891a6abe036c75d1dadcdf8c19f8769d0ba01c421fe1b8fc2c5b681416251ccb77abc51c336228bd74bf345bc407\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.498499604526692755484e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"365ebf1f7867198e2c3291e515717e0caa0b8eb65dc181a178dfe5dde0cdffc354d3c40fd5cedff9e192cdb6ffdf350f\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 9.8952762070403742857e+25,\n            \"validator\": {\n                \"address\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                \"bls-public-keys\": [\n                    \"d57cd6de45014b79f81a7752deb0c385a324b0efaed86a8c06a1b5d4212430d21a7361f2f799f434967d5558aea85e8b\",\n                    \"6d14b744ddc346f422d50d9df92e885732fa4963192cec2023390056f04afebe7accb5fdb8a17deeabba46b0d055a802\",\n                    \"7c5ca6fd99109e79b2ba94caabba3e8b0e40785fc15e9b62a6804ed7ec6ff04b3a954172290b1e2dd9e26edfefd8ab02\",\n                    \"1781c77e68eb73118dc75cbaa5c3531f76434462463b2e6a07a91ed5c0a6cc85c14491f64a8bce7165feaf619519ef86\",\n                    \"f2a4539f1251cc5b173d43d52ffc41f95da5999e782f8c3f82bdd76d2f85fc4ce35ebca5fd6130fb018efd3bb140b78b\",\n                    \"cb6a52fd791c3afb7a0243fa1b5388ce451707ecf94ef7262905929db69588d68ad027c8736d6a868195ab740a459c8f\",\n                    \"59cd2977ef1f46ade77b8dc56d26883acf9f1e8b05eea76f1a35f4ef636d241d4d63c35a7aa3873ce64bcca76018e213\",\n                    \"c1fdc6946494e5caf6590c04b8e38172b481cdd570b884628dec1a1e4c8a553b697cfa5c6ae678003b6b73e5903d638a\",\n                    \"907d2fcf1857be1d1880f86af693e0def624a2d886eb19ab6002e2aa0965a06b0bdcf065ef768da4ff7d0fa5f1977d0a\",\n                    \"d2f6b1c9903d38fde61a77a293ec8c9107255ff7867bcfd8e9189b1fcb1ea220fc55a35c81bb0ad1a32cd39ee06f8683\",\n                    \"38f4891a6abe036c75d1dadcdf8c19f8769d0ba01c421fe1b8fc2c5b681416251ccb77abc51c336228bd74bf345bc407\",\n                    \"9756abbc889d65aa2739fecc1bc7188640395c003de39c4704525136764d5b607750fb86f8d6b93a784ff52456147b01\",\n                    \"e3750661e4996422239dbdc369793e3cd248c6f4ad54f17145a5396347af67abc8fac82a5e51a45055b483874b9ac691\",\n                    \"fe809303969f91a644580f1515e6d3029802c3a964a5eb6413ec2a72c1e17c70c795ae72d8647af9aa68538b368ac009\",\n                    \"2a2091d221e02a0982a4c4501f94d88980ccff0a447b3d47d0f78aa1e77504daca95cc35698ceaa1c984b819af5a160d\",\n                    \"417c2b9d293c24c03cce180d279968855abcd8407a56ad3d38ee41f7231da51adc90f9afb1f6f054c28cac4465cb9296\",\n                    \"8a8baf28a1aa17c58a30a8472ddba616e9b5c37105f2d754530850927722144f4b5b263de9339aa13a07013654559586\",\n                    \"365ebf1f7867198e2c3291e515717e0caa0b8eb65dc181a178dfe5dde0cdffc354d3c40fd5cedff9e192cdb6ffdf350f\"\n                ],\n                \"creation-height\": 3360566,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0001e+22,\n                        \"delegator-address\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                        \"reward\": 3.979509609467376206662e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kcmct2rrvxhy0xalrjzgglcmmytdw26phzxg6v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19day69t6zzqrk3yr5086v9892c9ajvkw84fegv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e2whthzfvwq86cyevg3xzgj6ztps58c5vx6hna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 72280622461100960832,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1atdwrxe98t8kx2cy9r42qjvuslps7dqtxtn6aj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kj6jtey9esdpwv4qpqsgldzqckpqe6padlp04k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 1.773674788083051000255e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.33033341e+24,\n                        \"delegator-address\": \"one1fa40ekglflnh0rl4ed2rhf2gxywrg9wgqwgu7l\",\n                        \"reward\": 317239016497437209590,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.33914e+24,\n                        \"delegator-address\": \"one1pc3yfnkrj0mey98nla8aswftyy23nat38hku2m\",\n                        \"reward\": 319481450310413393556,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.35e+22,\n                        \"delegator-address\": \"one1wf8dzkk2f53hpkgd2vc3t8k5ydw8e6qf7j6043\",\n                        \"reward\": 31208730556535935703,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.42132417e+23,\n                        \"delegator-address\": \"one1hyqgueh0fv7mwwtt82f74wq9guzmw8ytf74qhn\",\n                        \"reward\": 9.058922660917865703625e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                        \"reward\": 1061617712737692101,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zr9pqt6nhls5q4qesnl2v609umrqrh9hs2kdqh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 6.03988608660867968612195e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8880598187e+22,\n                        \"delegator-address\": \"one1wml3558gjdgfa739sjyrgx34ehdc5z28ujy7nh\",\n                        \"reward\": 3.215480077639460149914e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfuvmhz4zgvpeyap5k7qngj25xv84t65vnecye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qa4cn2u9axkz545ys6mlzk37erl365xqmn3nxd\",\n                        \"reward\": 15771047528577139186,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 21040784899509793773,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1e+21,\n                                \"epoch\": 320\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cnuwda5cm4ghmz3qhxhjd7je3jg7uz9p5tuwff\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.58327e+23,\n                        \"delegator-address\": \"one135f4zp70a6dsv759rx72f7t49ev8hmqn67e4ta\",\n                        \"reward\": 170963750910796218258,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t37kzu473luvuz99ec3mjafqpldxnvvp9nnfd6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3e+22,\n                        \"delegator-address\": \"one1t6ynwcj7wtd2t8lpcwdxsgzh2j36unngd3l4u2\",\n                        \"reward\": 21202471858082828900,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6cfkvgjyxw7l89urs25rqe57mkx304und53de\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 3189323636592512218,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.049e+21,\n                        \"delegator-address\": \"one1daf4g7ulu9hd6tr8wa78sz6pdj5ef59lv7vj72\",\n                        \"reward\": 42961223220856449542,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16qnqy34wvj3q2v75ul9ss3svvzhnxwhz2wq3sv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3225743921e+23,\n                        \"delegator-address\": \"one1fnrlvje767q02th6xgln763xvplw5pswwkj77m\",\n                        \"reward\": 1.433512154182165297339e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6xz73724nja8cn2c2d2gun2n5nenyr7da8r64\",\n                        \"reward\": 1161338123949164312,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12yctampe4hqeug668v48kd2tvm85j0u0lk9lh9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 10953146457551420556,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uevnvfzez0kk0vkc2p45208neatzsmuwn6n0zl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 5047864584475029521,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0741e+22,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 42315786111701776704,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 120775946184155351058,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 817499878051304104,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9wkftf7e0x0eee65wfucaet5akpcek48j0a78\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rztveplnzzx5q2za6aucxlckqsek65juvlq73w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1hlatxd4q8ld78djaerr4hhv0g6vcraxxluks97\",\n                        \"reward\": 15842572379339772203,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5227999387e+22,\n                        \"delegator-address\": \"one1gnsker2z6sdepd0a9xm644tlvc4m2x9kgdd2ns\",\n                        \"reward\": 94576313332294027047,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1q7frj9luhffqvg9hk0f4kv3xrux32gpcuyz84j\",\n                        \"reward\": 9873773674063719453,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lw65t2wvqvc7ahl0ac0xafjvpu47h8fpdlurua\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1051742719e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 1479607689868994472,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.754e+22,\n                        \"delegator-address\": \"one1677w9z7hfsszerhd0767d47rekpuzh46xsvaj5\",\n                        \"reward\": 853245922958915857179,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vzlt9yygwvc62vx9n35t2l3k57adctyhzxn7ar\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lu42dakk5wx6yn24wd9nzcpaygw0n833amwex4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9r2qh3fjy3tqtlcc9av3yxqq3rte3mfk45zj7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5511294146e+21,\n                        \"delegator-address\": \"one148yv9zk8r3c05r4dnxrxnzhv7ch4v7pg2su0w6\",\n                        \"reward\": 210121590603540975049,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one100dpukkd5fnhv0e8ppzt20k2dlk6dd6aehml0w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vaalvv3jvhyy4wxa2dzzf3vda78gr3glp7nr69\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfmxzl7v005dza0jtx9hmk35f4ly054y3fk5ac\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5uwlvjmygnfrh75nnmemgm7syd5xh0hww3ty6\",\n                        \"reward\": 46549835467657264,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z86lnjrgdzmp308u9ax8xmqt59m99t9r2srdf5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1umlspeywytnajf0yk90fqavumzeaayp88yza79\",\n                        \"reward\": 122615478027277546,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.62019e+23,\n                        \"delegator-address\": \"one1jn6k3r3apcgrqcuvauzuka6l70c6p026smavd2\",\n                        \"reward\": 143033189284881545455,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.75103e+23,\n                        \"delegator-address\": \"one1c2ylas6pe0t376gj8stg2532gpwkwn7zwtjpdp\",\n                        \"reward\": 107165843561519310107,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z63t53093vs0jt8xhvhqqt3qnycykq4qqydmvx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one1zxa9dduhl89erh4zwe3n2upuu69y2qz3jcq2ga\",\n                        \"reward\": 136014930983006364015,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.15e+21,\n                        \"delegator-address\": \"one15z98l6j44yyamwf2m5ua9kxd29na64uwuc5lst\",\n                        \"reward\": 207422769749085236766,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.35e+22,\n                        \"delegator-address\": \"one1xwzad7aha0h77hulz0uc7uzmsqrjl858xj9h45\",\n                        \"reward\": 60168199751768754749,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xfuukfk4a72e2a9hqh2vmv55duvguv80sxm5tg\",\n                        \"reward\": 1133006786110794883,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5565174773e+22,\n                        \"delegator-address\": \"one1npjcsmeuuxu0zp3mt00ja5puy60swjj40657va\",\n                        \"reward\": 5150818822586605428,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0767e+22,\n                        \"delegator-address\": \"one1uwdruqc5pu2q22rt8vwr48yuxuf632k6nl8rm5\",\n                        \"reward\": 32527618035926273668,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.24e+22,\n                        \"delegator-address\": \"one1ln66zgvc2krv9v7hqauws45ktnal6jmws2c0fa\",\n                        \"reward\": 9398480801159788278,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one138aa0q9pajq7mf78xu64xdkfda4v4ydhmlpnee\",\n                        \"reward\": 20241930642414760349,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one13eh8wsk8wa8ag96qjrdrgh2g8ecx8vpwc6q73t\",\n                        \"reward\": 477446917182267968672,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hsykz8wzc6dx2eykz9wdnqjtft7vmnpragmwnr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.07e+22,\n                        \"delegator-address\": \"one1dcqjuekcmvhr2yj9dxn8w7ndd90zg2qxumrkna\",\n                        \"reward\": 79769054235930352862,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ljqleg6q3jw7wt8jckx2uf5vfjgwrmuahalkhh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.062435376e+21,\n                        \"delegator-address\": \"one1zkt2jwxxqgsl74pt9rmldl6wdcggrys5rk2mzj\",\n                        \"reward\": 76535507759564140811,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one158p7lac9hay7ktsmw5mr5umf947krtnwglw2q9\",\n                        \"reward\": 35462588690510408620,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 10812510439906220237,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kwqrde6ufy3595307r3gu90tms5c75nlk9tl9a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0869540086e+22,\n                        \"delegator-address\": \"one1j64a0p85hwp7ktzqsl2h7jempnw88k0p304ldw\",\n                        \"reward\": 46906571353625336811,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2857142857142857e+22,\n                        \"delegator-address\": \"one18yv5m65wa7wrknfmh2jsh3pcst2z0h3698vu3k\",\n                        \"reward\": 163258255328906665501,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.68174e+23,\n                        \"delegator-address\": \"one1qmxfapnqt0p4ky28vy7e5eu90zzxstf88q4ae2\",\n                        \"reward\": 2.239160323340467745021e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1gd7uxgqnldqsjr79fv4su23vl8r5ymul2vd7nl\",\n                        \"reward\": 7341679423178011791,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.2621235424e+22,\n                        \"delegator-address\": \"one15mdeas4ays7ypumqkncpey3qy45uaplzsstsxc\",\n                        \"reward\": 187863658056335385750,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.24e+21,\n                        \"delegator-address\": \"one1rqvvf5rmpy2cqycfhhm8q9zggy594cp2lrhlca\",\n                        \"reward\": 4283368278832983850,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y372hk9jsftsgjt9kmqu7jhaadlh00fuezspew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.503622e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 105359084067108156804,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.5e+24,\n                                \"epoch\": 316\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tf6um60tpngwrvvdtwa4x88mynre36amjxm2yy\",\n                        \"reward\": 5060685866354668725,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.296532e+24,\n                        \"delegator-address\": \"one1uvwpphx79n0q5vvg4fkhzsppja74lk37s862pm\",\n                        \"reward\": 999172239211107667871,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0261577e+21,\n                        \"delegator-address\": \"one1ps75yrwelc8xzdkjm02t07lg9nen84xyj9772y\",\n                        \"reward\": 1029763185794636016,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1nqk7lr0s075tul5nrt04qq58zmx6d7xph760k6\",\n                        \"reward\": 2329099165782458171,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2499e+22,\n                        \"delegator-address\": \"one1y2fzfuemkafa67n0fsg2636pgxkcswtpadde0w\",\n                        \"reward\": 9670854618404871694,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.322057437e+22,\n                        \"delegator-address\": \"one16jrlm66mazdg0gsp69eadv6hdcspwxszam47lm\",\n                        \"reward\": 76430992496776569925,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.003485449e+23,\n                        \"delegator-address\": \"one1xff3gcrn84lszuxhaeu66gjr7dh5eamgkzdntv\",\n                        \"reward\": 26016500506318566069,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.85775215e+24,\n                        \"delegator-address\": \"one1lfuaaaptpgpk89zajufqc2f624kxxxhggj5dme\",\n                        \"reward\": 738009682861786912328,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1qse2dyhd9fs5hjfldvyxp9w0zheuygaq9sdhd6\",\n                        \"reward\": 113405147193329178884,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.00000379e+23,\n                        \"delegator-address\": \"one1w4ya9t7qv5k4ez559afr4gpuvajumqcwcyszc4\",\n                        \"reward\": 140934422256727258243,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.6e+23,\n                        \"delegator-address\": \"one1fta8pe7j5xntgff4msjlge3amkuh0jpqzq9whg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ghaqydlkyda0pfy02hfmugsle7tw28yw427wyh\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.38e+21,\n                                \"epoch\": 321\n                            }\n                        ]\n                    }\n                ],\n                \"details\": \"Co-operatively building the Harmony Ecosystem organically with information, and engagement. We have a 5% Fee.  50% of all ONE earned through fee will be put into a fund which will be used to market Harmony.  https://medium.com/@ogreabroad\",\n                \"identity\": \"Co-operatively building the Harmony Ecosystem organically with information, and engagement. https://medium.com/@ogreabroad\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+30,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Harmony Community Node\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"ogreabroad@gmail.com & apps.support@prarysoft.com\",\n                \"update-height\": 3555334,\n                \"website\": \"https://PrArySoft.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1ds5h88zazdwnc8tk8j2m0t0wk90x23jcj2dyks\",\n                \"bls-public-keys\": [\n                    \"4946b9626ccc478ca7bf7704fcdcbda0a33f6f89de0633f3cd195c40848aa640d61b3e117d21c5b2c1eb7f0d27941407\"\n                ],\n                \"creation-height\": 3360621,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ds5h88zazdwnc8tk8j2m0t0wk90x23jcj2dyks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yxfylrfm3r2vee07kynwjc605nq5nu2suff4me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Affordable validator for people\",\n                \"identity\": \"Validator For People\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Validator For People\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3360621,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25\",\n                \"bls-public-keys\": [\n                    \"aaf3bf3f56decfe5e5b261d1213859e1f20196ddf9f09087ef19fafb8fc6a4c5366c32a95ded3d3134934a88c7e7400a\"\n                ],\n                \"creation-height\": 3360672,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"KeepNode4\",\n                \"identity\": \"KeepNode4\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"KeepNode4\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3360672,\n                \"website\": \"keepnode.xyz\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 275599,\n                    \"current-epoch-signing-percentage\": \"0.997163356646392868\",\n                    \"current-epoch-to-sign\": 276383\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"104052112551116609523399999.999999999999999999\",\n            \"lifetime\": {\n                \"apr\": \"0.117656892144714234\",\n                \"blocks\": {\n                    \"signed\": 41201343,\n                    \"to-sign\": 41517539\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.120889850651017971\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.121610350940734414\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122467741277501378\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124084892150142553\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.131992120903099578\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.133256721006815478\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.122552374680020614\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.039860087681801852\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117648467395551967\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116854444833645294\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115479516841411683\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116949528072087990\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119521195617117805\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119100587809211510\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119262353933552814\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117999941511893902\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119760908055520677\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120617353893391368\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.119935050280697502\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.119658068530539288\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.118917342039345409\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120196605418600754\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117383080805281801\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117610483057231919\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117999691054012305\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118159682545617433\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117977308306530905\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.116273895341436692\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117583041645850356\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117378661354044376\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117656892144714234\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 312010,\n                            \"to-sign\": 313105\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 310865,\n                            \"to-sign\": 312022\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 310720,\n                            \"to-sign\": 312167\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 317189,\n                            \"to-sign\": 318244\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 311116,\n                            \"to-sign\": 312424\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 310604,\n                            \"to-sign\": 311940\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 321641,\n                            \"to-sign\": 322896\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 310391,\n                            \"to-sign\": 312167\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 310488,\n                            \"to-sign\": 311875\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 327636,\n                            \"to-sign\": 329104\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 327513,\n                            \"to-sign\": 329332\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 330220,\n                            \"to-sign\": 332356\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 327938,\n                            \"to-sign\": 330540\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 332458,\n                            \"to-sign\": 334868\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 348202,\n                            \"to-sign\": 350664\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 368214,\n                            \"to-sign\": 370380\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 332509,\n                            \"to-sign\": 334220\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 328169,\n                            \"to-sign\": 330625\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 312711,\n                            \"to-sign\": 314692\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 337026,\n                            \"to-sign\": 338715\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 311122,\n                            \"to-sign\": 313087\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 311945,\n                            \"to-sign\": 313554\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 328899,\n                            \"to-sign\": 330327\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 119412,\n                            \"to-sign\": 120288\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 368432,\n                            \"to-sign\": 370512\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295,\n                            \"to-sign\": 304\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 422107,\n                            \"to-sign\": 425888\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 426183,\n                            \"to-sign\": 428204\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 373958,\n                            \"to-sign\": 375706\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 404593,\n                            \"to-sign\": 405734\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 5.946887779366576448747413e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.465436852699620732427e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c7f6d67cd32103215bdeb574bac7576f553a9dd3028afd138dd8627d200b8c3b09c34e0b2178d3bb85d1ff13bcf30919\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.464153360737470341465e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8047e6aae13b6c4cba7707529d32ffd66e935fe0a624a0b9b744898dcf5e8ea84877f1809cad5d7d9e5dd5eba2ef6189\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.464156110928814685509e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4c20bb0b2837e06c60e7a377798987a66f216c6d6c466b31d024d174a120267a65cf91d25308c6d9206bba1a37073b91\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462980531042423357911e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e5ea8826643e9962b21abcbf9ee087137ec336a8828600726fd1acce369417a40798b0c52f0cd18d21200768e793aa09\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465436852699620732427e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"575fa22442d33042bee0760b72b2cdc4c9d8f81164a19a190d9923bcfffa750c8e7d10c1efd34553444020e76105e585\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.46372356300734963355e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d7f3aedc704744bbe78a2e85068c2307e6c3c7a3b8bc6495a1a39dd4f2dc503170b3d0e4cb40943d41fa8e795a363e85\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465436852699620732427e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3af3cc91916bebbc240a5ca9c7aa478a0ffb54ca6d1e6c09089271d48a62072bf769676de303403c3465c45c7ec24e15\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.453085913242851329326e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3a483fca6153214c083b944b69a65eab16aa58b94679ff80151dcd6447541390ae1d0fa176179fc9973c20568abaf88e\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005701978170923529\",\n                            \"overall-percent\": \"0.001824633014695529\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.45344573546666877232e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9b33b36c5d82e80d45fd49f136d76da580b77a21eb68692b0b44accaf8cea8647ad75086f3f872385bc8d25236fe8312\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005701978170923529\",\n                            \"overall-percent\": \"0.001824633014695529\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.454156692340031501964e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8c0f977fc49b0b5741c4c4d25c8db148f401c7e14d9bb4b829931418b47349e6079aff8bda5e1e5976fa0c0bf4162802\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005701978170923529\",\n                            \"overall-percent\": \"0.001824633014695529\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.452144663546254821233e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"433bd1eb567b540d1cf324abc83b3fc33d4a96d7daf9644901cb339bc393b0f300cae82c800f04590cc74bc5f35c6d02\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005701978170923529\",\n                            \"overall-percent\": \"0.001824633014695529\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.504191394293190165312e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fdf618fbaab9588f74ac1b681018f474459afb047afec0dc9df9da8381cebe85a08790bf49f121cba75c2939da9cb68b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.494280862309575694181e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b7c1e4947c0133e786360d605eb8bfb15ef5c39022de9f89546a9fa3792f333e1e50e03436e831571fc9e9fde3d04197\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.49577515840503961074e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2220759df1bd1d68d40fcf746c894283e80088df83bde4618458dc6adb9f180dc0ae361e0d554a5a0f61d3d86d57ba97\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.505085230448353246578e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f9e741cb120862af08828345fb967e66eb3fc5e25b7a6688074b80cdd2acbb898af484110eacdb7ba300da9d39ed2b8b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.492476203609892625108e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dafd8989fd7dcc29ccbd5e38f90f27c990488b7875c3a83bc51268d60f1651ade03bf4c990278351ee4835dcf9234007\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.507134558663035781863e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"66ab282fbb88b2dddb564dee12064f61cb11041aa18ed553338867b0ab8a3f4ea7f48a96ef98a81fbb10bb853188a78f\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.499829303143105295739e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"19a42db0ada7e82134f72dd17e20d2d3ba2e36a33dc8a93c5fc4e40d472403538af282b1a427abfa61371c4814818e13\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.505934532948799640119e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a472acf4f4f3faecb283217b4bf0b99eb019c55dc079afacea88695b63a1b7f3371074981db77929e3859fb2929e490b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.040531125511166095234e+26,\n            \"validator\": {\n                \"address\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                \"bls-public-keys\": [\n                    \"19a42db0ada7e82134f72dd17e20d2d3ba2e36a33dc8a93c5fc4e40d472403538af282b1a427abfa61371c4814818e13\",\n                    \"2220759df1bd1d68d40fcf746c894283e80088df83bde4618458dc6adb9f180dc0ae361e0d554a5a0f61d3d86d57ba97\",\n                    \"8047e6aae13b6c4cba7707529d32ffd66e935fe0a624a0b9b744898dcf5e8ea84877f1809cad5d7d9e5dd5eba2ef6189\",\n                    \"e5ea8826643e9962b21abcbf9ee087137ec336a8828600726fd1acce369417a40798b0c52f0cd18d21200768e793aa09\",\n                    \"3a483fca6153214c083b944b69a65eab16aa58b94679ff80151dcd6447541390ae1d0fa176179fc9973c20568abaf88e\",\n                    \"8c0f977fc49b0b5741c4c4d25c8db148f401c7e14d9bb4b829931418b47349e6079aff8bda5e1e5976fa0c0bf4162802\",\n                    \"9b33b36c5d82e80d45fd49f136d76da580b77a21eb68692b0b44accaf8cea8647ad75086f3f872385bc8d25236fe8312\",\n                    \"dafd8989fd7dcc29ccbd5e38f90f27c990488b7875c3a83bc51268d60f1651ade03bf4c990278351ee4835dcf9234007\",\n                    \"4c20bb0b2837e06c60e7a377798987a66f216c6d6c466b31d024d174a120267a65cf91d25308c6d9206bba1a37073b91\",\n                    \"b7c1e4947c0133e786360d605eb8bfb15ef5c39022de9f89546a9fa3792f333e1e50e03436e831571fc9e9fde3d04197\",\n                    \"433bd1eb567b540d1cf324abc83b3fc33d4a96d7daf9644901cb339bc393b0f300cae82c800f04590cc74bc5f35c6d02\",\n                    \"d7f3aedc704744bbe78a2e85068c2307e6c3c7a3b8bc6495a1a39dd4f2dc503170b3d0e4cb40943d41fa8e795a363e85\",\n                    \"a472acf4f4f3faecb283217b4bf0b99eb019c55dc079afacea88695b63a1b7f3371074981db77929e3859fb2929e490b\",\n                    \"f9e741cb120862af08828345fb967e66eb3fc5e25b7a6688074b80cdd2acbb898af484110eacdb7ba300da9d39ed2b8b\",\n                    \"66ab282fbb88b2dddb564dee12064f61cb11041aa18ed553338867b0ab8a3f4ea7f48a96ef98a81fbb10bb853188a78f\",\n                    \"3af3cc91916bebbc240a5ca9c7aa478a0ffb54ca6d1e6c09089271d48a62072bf769676de303403c3465c45c7ec24e15\",\n                    \"575fa22442d33042bee0760b72b2cdc4c9d8f81164a19a190d9923bcfffa750c8e7d10c1efd34553444020e76105e585\",\n                    \"c7f6d67cd32103215bdeb574bac7576f553a9dd3028afd138dd8627d200b8c3b09c34e0b2178d3bb85d1ff13bcf30919\",\n                    \"fdf618fbaab9588f74ac1b681018f474459afb047afec0dc9df9da8381cebe85a08790bf49f121cba75c2939da9cb68b\"\n                ],\n                \"creation-height\": 3360746,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.535e+22,\n                        \"delegator-address\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                        \"reward\": 1.6489120210960866707683e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.74340314025e+23,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 396483033851815213888,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.981494e+24,\n                        \"delegator-address\": \"one1n38alfvq8g5pf3v9ll2z7unxy9thwkafm8hgl3\",\n                        \"reward\": 4.7693415382129070401523e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.00005e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 42322420644698324409,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wlukdnvl5lsvhkfxefnpzqjuc2xjxj2rgwmtaa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tpcvm7gc6ux6zs3gap9hdusdsf5f7w48sjserz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1ld7ysl9f2rz4pj4kse5alnkrzhftkmj2vma5ct\",\n                        \"reward\": 2.989695919454522756778e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 88120542301620638444,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 75377110954311712156,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.00000365e+23,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 719331960674478956036,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 296630681452772594400,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcd73jcajz7wsaquzxvcjv94fere2xtqyyjz2q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s7s40ku4ms63066h34xwmm5j5k4jwk74gml5nx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 67870534555689349362,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 26915539502110863,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2e+21,\n                                \"epoch\": 319\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.969e+22,\n                        \"delegator-address\": \"one18w3jggmav7fva93d7h224j50pkj87lf4krp04v\",\n                        \"reward\": 65936600810513647732,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.575e+23,\n                        \"delegator-address\": \"one1jxwwk5z3596gynrz382stsanzug2v52u0d97ql\",\n                        \"reward\": 822147114105728006149,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.85e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 21563616951968234923,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 1.771475574665767003293e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.0308e+22,\n                        \"delegator-address\": \"one1ar5vx0ehu9lnlmyar5fdduy2t8tc4danjtfv36\",\n                        \"reward\": 1.842244820367153959592e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2137489253e+22,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 103549842427125776536,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.03947809762e+23,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 348193116542969607367,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8dt4hz56jzksjaw7vayf8d4n5k5tj5heagnpw\",\n                        \"reward\": 25429436084116696154,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x8kgyyqgslzrm7jrlj4m7rpg285etdywjk7gez\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.999e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 7202928680258562697,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 77331719777563804703,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.9e+23,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wsy0f9p245mugshnsud7se805htq3sram33ek0\",\n                        \"reward\": 20395707633454542787,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25987391471e+23,\n                        \"delegator-address\": \"one17mquutrtzjecd0sgaqf3q5ncemxvwg3snve06k\",\n                        \"reward\": 77575115838781993060,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19mqs8kpuu3vzytsq5gmxauxv8g6yf4j93mll7j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d6vmmq6elrx0z52zv5v7su2sykua8smaxy330d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 77191767078379679250,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1qpczdf6s376y2qay80ustlr5k3lvtml6y4j5az\",\n                        \"reward\": 4.381260693349360324795e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wmz9574u0w86hza0ftxvqtuas6j7jsvgjdgjat\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.108e+22,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 60567416722516592159,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.40712e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 122708057309030783627,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+22,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 12708855815717298629,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.498e+21,\n                        \"delegator-address\": \"one1mdapsxyja33033q4zgdd4zxl9cq7mhmds8dhha\",\n                        \"reward\": 31959476075006813496,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9e+22,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 86301364134879513398,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 22737910557912496,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 5036063341028608559,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1z22h2hedqev9yptfwj2vtwv0wxnuw97u6t8dfz\",\n                        \"reward\": 18189559201673586577,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19x784ltvty9yyau22y4xlc5yuq3lqdu0flew7a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 1.293655709606663454745e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.420923545e+21,\n                        \"delegator-address\": \"one1rv6eyu3am6rtl8xq4tgw38g2cpd7j33l2vac7j\",\n                        \"reward\": 92134106581532119251,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 1806978072110454188,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 808532045554162060349,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.228865e+24,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 1.045857326655539193104e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 5.85719642075269274792501e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eexqspq9vlu73pp4gse0q599xzhz7eln8lu6mk\",\n                        \"reward\": 43384250846713328,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17zh0n602sshq3akqfrxsfpkyj7udmkx4glwy2u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1d9vl22yqm43ut87wh2c2lja5yt55jwk62q74a6\",\n                        \"reward\": 238576009840707787935,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qa4cn2u9axkz545ys6mlzk37erl365xqmn3nxd\",\n                        \"reward\": 14971863336276663252,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.10754e+23,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 285285059223202894763,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.78e+22,\n                        \"delegator-address\": \"one1r0tp6l9g2s4m5np99ec0ugu0kvqc58nhq2mega\",\n                        \"reward\": 980929102282756059415,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.594e+21,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 48773976889765680442,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1atdwrxe98t8kx2cy9r42qjvuslps7dqtxtn6aj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xven3mqyznvta70g4nvum0pk3pmrnyzghf72vz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tysvkwnp78hwxkhzh8a4amyea54n580q80v44m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kjncp7r9er5cuvnxxwuw9xquwsgr4q6uqggr97\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n                        \"reward\": 4.640473261739180646268e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 75064560891500183057,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zf9gchjhtjnk95h6z7cf0duu76wllfmn44mr8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.24575e+21,\n                        \"delegator-address\": \"one1dztpmj96q2f7rmu8gl8hne8k2z84s8tjmmcj4q\",\n                        \"reward\": 100366640875059175810,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.00005e+23,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 1.944517292391183099239e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333400000,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 1174061279,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 46027495897170314347,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5214436215e+22,\n                        \"delegator-address\": \"one1l9jy4x6f6dcr7hzge72099f5269gqupx9hnzzg\",\n                        \"reward\": 323540038392827371310,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 62951359074881708779,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l8lkqr69rmw0lw95l75sln6e2y7l0cjj8ufysc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8e+22,\n                        \"delegator-address\": \"one1c0stsfewuu9cpna830xhcc482v28gyepfr900u\",\n                        \"reward\": 89396841969875812592,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rr5n6qvjxlyhrhnkzxtjslzffrp4trl3wtsuh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3000996902e+22,\n                        \"delegator-address\": \"one1elgrh05nuesu9chyjlev8rlfexfsq4a87xtp2r\",\n                        \"reward\": 47680281053986016453,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s5sqy8ufg5pegfzv6j4a5n879udsaasu2u5hdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fj9k0j3ext5a63l6msqr0rnq5nlgnrl2hwj2sd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.2e+23,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 862740906942257798293,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one10zsqhjwjwq0wuda38f4y3d7wdymfkcrfkmezqz\",\n                        \"reward\": 10208209729489209123,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.6410814013e+22,\n                        \"delegator-address\": \"one1wvaxshh8c7kxda02c5pszvme564274x3uaywek\",\n                        \"reward\": 18429917993792406369,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1a869ad50qkw0446x3q3mhzx7fm0azx5fvcu7wk\",\n                        \"reward\": 162465935465303015804,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15ad34lhszdnz7n8uvnmuzd3w0ay3vy8fdt3343\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nl0xvlleputa5zzr7rz6ah3x4h99hcp6ke3dzz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dnd69723taqllad0efjte0sy3xm5ukk7fjshl5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+21,\n                        \"delegator-address\": \"one1jkpam6q00rgw2rs9hzch665tvjkrs5849p3axe\",\n                        \"reward\": 23610027918170023091,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ntlrp4zqpvxeg64da0jmr5aqp9879kxfj5tca6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mgesvhk7yhyc65mr9yardtsmgkyafxn8myfy3l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n2yfzq0py7wkar3sudx2tjnjwl2yl0k8gekt52\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ujzps78fdgks72vlqyxndhxj984qcdr56hu92\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 133333000000,\n                        \"delegator-address\": \"one1jx7wusrrnj2djdf4dus5cq07yw3fe2077j2l67\",\n                        \"reward\": 1005011153,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gwdl55he6nh0n06xuhvkuupnlp28260ccsnn6n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 979000000000000000000,\n                        \"delegator-address\": \"one158vkvhfez254rrl4drdv68d2chj952l7wsm8w2\",\n                        \"reward\": 19683427542367253389,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1nhfnjxfwrkk8653jfz97wtdxvw295nws2vft48\",\n                        \"reward\": 5594150452841229023,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18886pfha5x9ds0ucssklqjzmvlwpzsptfy8cwq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one13eh8wsk8wa8ag96qjrdrgh2g8ecx8vpwc6q73t\",\n                        \"reward\": 1.574771080634799482955e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.794e+22,\n                        \"delegator-address\": \"one1jnkspmvu2r4tlun50kvne2saw6qs3zaf6dnmzh\",\n                        \"reward\": 1.478573950411042606137e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8e+21,\n                        \"delegator-address\": \"one1pe9q4myhu7ydcwx55xzhc3ttfrrg69dyty90nh\",\n                        \"reward\": 27472286254472247692,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1myzrwc5mfxvvxx9pnz0j25pv9rlpkstnvmaw3c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.02076219999e+24,\n                        \"delegator-address\": \"one1nkvxkx9sten30aq6ak3ky8ae6ual9y2uuxkmn6\",\n                        \"reward\": 886885895431741378781,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.001e+21,\n                        \"delegator-address\": \"one1nwrwlp2djpqmeucz4u6cv4l54s9xjhxl54z7re\",\n                        \"reward\": 22777535344466694546,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6131e+22,\n                        \"delegator-address\": \"one176emlwplg8lfuhjxqwnqn0svpajwh5nddsju0f\",\n                        \"reward\": 362488192568125520293,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f3lldsahvllls785vejr8saun87fcnv20vczlh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1xwzad7aha0h77hulz0uc7uzmsqrjl858xj9h45\",\n                        \"reward\": 22246867715104092413,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.803256094e+22,\n                        \"delegator-address\": \"one1ecqnh54clrlvx2zfapegrqft0lxuafv7hq8jjf\",\n                        \"reward\": 1.020794235987023394249e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1jln2hngr060rgtxx0wzfy6yn2qya5k37wn0vem\",\n                        \"reward\": 4.123820906157056016172e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one138aa0q9pajq7mf78xu64xdkfda4v4ydhmlpnee\",\n                        \"reward\": 20105646110691295417,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1zyjus2fa9etvpwfswdykjxpg2lzjecx59wj56u\",\n                        \"reward\": 19822237979009945820,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hwg37qjh06kwfvtk8yq6tv44twv0zex8yaynzk\",\n                        \"reward\": 978759967888531618657,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2e+21,\n                        \"delegator-address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n                        \"reward\": 11691058086800630032,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 991000000000000000000,\n                        \"delegator-address\": \"one1h0uwtccq4vcladmn73yr7w5k4uw4v0rkczgyzr\",\n                        \"reward\": 9157490319798488428,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1g5vj8zvhkyy6270y9sk70naxda6tk0dkw7mw72\",\n                        \"reward\": 8248500147919647633,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.872e+22,\n                        \"delegator-address\": \"one14h7m0k3hsmtvxgwdjvrcgsd54h34qp5s6fm46k\",\n                        \"reward\": 401866927206657225312,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1we498tld7qwaxz8asjz6nnj4chdtyc0gvwyw4l\",\n                        \"reward\": 6239250803582612460,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 142857000000,\n                        \"delegator-address\": \"one1nmh2hevu7k6st8slncyt3wjvw4smxaan7ja4pc\",\n                        \"reward\": 314091426,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one122ymvdm6nsn23hxfk43u7a9cq6x3myg9zc4hmr\",\n                        \"reward\": 1129548311204783933,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Validator for Proof of Stake blockchains. Delegate to us for a easy staking experience\",\n                \"identity\": \"S4A01\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 2e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Staking4All\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Shez\",\n                \"update-height\": 3360746,\n                \"website\": \"https://staking4all.org\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 100700,\n                    \"current-epoch-signing-percentage\": \"0.992255089371933075\",\n                    \"current-epoch-to-sign\": 101486\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"40991192666470333333299999.999999999999999995\",\n            \"lifetime\": {\n                \"apr\": \"0.119061887010519618\",\n                \"blocks\": {\n                    \"signed\": 14503499,\n                    \"to-sign\": 14919526\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.127405783752386548\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.122282696907733501\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.000006366088024934\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.128096996144216773\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.124494560124985496\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.138234078676880559\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122204195151299820\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.116343685093847390\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.120904052007841583\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117742498837418014\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125215215379228816\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.113327481795604922\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120103307921565242\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121422191061913285\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.123411797456807942\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.112955031440594797\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.113393652008200902\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.118922301886331427\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122048541974587429\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121001378073843815\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.122946815540233067\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.119744077339482539\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122026802493248250\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.121462349253885434\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117703677545720859\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120931912637684886\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120316210817781667\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.120035481570849478\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.121655031239951322\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119893688887394825\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119061887010519618\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 113710,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113703,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113946,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113763,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113839,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113876,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113364,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113605,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113784,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113265,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113673,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113779,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113751,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113456,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 109865,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113393,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113778,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113690,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113796,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113410,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114004,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113733,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113940,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113719,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113985,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114501,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114465,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114532,\n                            \"to-sign\": 114674\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 14\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 7,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 2.49964892197648764156151e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.594014528944215389867e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"943dc0be8753c7721dd718b749eef9d84ddfaa1e894e3d56ba78a5b496acaa40edc6c3cad7819e5f06ced9ed554c7200\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.576661906287377451901e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"18e9f2ad7b95c78f97ad32ea4d5b84128453b364e44a5d1c5f346e246efc27f8f955a64d4ed51576c07da47ac7b89e04\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.593554350245706201539e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8bfdb9ad1b77ee64a0ac063ccef3db745be87dcf6339ef7c4743ba61c3e98eaaf4955c14198f16b3499c05d2053aaf14\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.576782046701167701569e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"395c6b530de2aa32bd0e826dab68ae37a774d9f6d28334d3ac322d61d2a471aadf2a50c81adbdb8a110d0e6850621910\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.593554350245706201539e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"092b8f3238fe33bf9a2bca8cd3badae60e138fefdf87ac5061479be2730ee3fc7970e0ab25eba38e693004972fd9cc0c\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.593554350245706201539e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"18254f06c00b071310ce55ba3a340485bbb61ea7b4765441e43d0c13eb617954417fef98c8c03937fad8dd9c33ef9108\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.590197406662438324327e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7dec5e3f6909666b5e280e71eb6bfc7ace6ee39378e6752447ac2fd9a93cabc79c1309dcce0e670ebd78dda60ca9a388\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 4.09911926664703333333e+25,\n            \"validator\": {\n                \"address\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                \"bls-public-keys\": [\n                    \"395c6b530de2aa32bd0e826dab68ae37a774d9f6d28334d3ac322d61d2a471aadf2a50c81adbdb8a110d0e6850621910\",\n                    \"18e9f2ad7b95c78f97ad32ea4d5b84128453b364e44a5d1c5f346e246efc27f8f955a64d4ed51576c07da47ac7b89e04\",\n                    \"7dec5e3f6909666b5e280e71eb6bfc7ace6ee39378e6752447ac2fd9a93cabc79c1309dcce0e670ebd78dda60ca9a388\",\n                    \"943dc0be8753c7721dd718b749eef9d84ddfaa1e894e3d56ba78a5b496acaa40edc6c3cad7819e5f06ced9ed554c7200\",\n                    \"092b8f3238fe33bf9a2bca8cd3badae60e138fefdf87ac5061479be2730ee3fc7970e0ab25eba38e693004972fd9cc0c\",\n                    \"18254f06c00b071310ce55ba3a340485bbb61ea7b4765441e43d0c13eb617954417fef98c8c03937fad8dd9c33ef9108\",\n                    \"8bfdb9ad1b77ee64a0ac063ccef3db745be87dcf6339ef7c4743ba61c3e98eaaf4955c14198f16b3499c05d2053aaf14\"\n                ],\n                \"creation-height\": 3361036,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                        \"reward\": 1.1130389879779793827741e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6000000000000000,\n                        \"delegator-address\": \"one1hlrny5drxfay0cednc9hpp8suchmvxzd8kn4gp\",\n                        \"reward\": 52066592187335,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.475e+23,\n                        \"delegator-address\": \"one19cskpyzumqdqufep0catn67ec9wktvq76dqx54\",\n                        \"reward\": 8.043997961499997723591e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19hjspe6czvrpjwagf48yg6f85jdyym9vaeftg3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.795e+21,\n                        \"delegator-address\": \"one1rjss2qa53ka4v782mhcuy4cndg54zkx2u4l9wu\",\n                        \"reward\": 18812533263320808871,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s7s40ku4ms63066h34xwmm5j5k4jwk74gml5nx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 5.081252053410780406943e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ex9a46773wtsj455lsjykdmn8al6uqalgnlhmz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.40729399918e+23,\n                        \"delegator-address\": \"one150r6lnl8yqua85vd9v5p2ju7zua62qc936q7ap\",\n                        \"reward\": 6.12651878453217914898e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m2kdtufvkykrrc6ph4gm8xnvvx0zkgqsmlxd42\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15rfw9penkjgt402ytdm8t0jqe9fcxx8uwvtr5x\",\n                        \"reward\": 1070393049891893054,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cs9jlefke4sdwzgrruaga7etvrx9506edzf84c\",\n                        \"reward\": 994820179932488056,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h2zjg6zyxah9e5vvm5a0pu44zxjh85l3gwdxu0\",\n                        \"reward\": 1003417709305985976,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1268utfr4kjhwsn06jtf2mnzzuqmsudusdy2jsc\",\n                        \"reward\": 1080564797654184711,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one166x40mhm2mr40y0ea0scq5gjfga0gugcj9wz43\",\n                        \"reward\": 1026050974476862720,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1me35yc0xvnlg6lpdcqsqzfmsr9k5ky7xletse7\",\n                        \"reward\": 1015884207132300390,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 2.88497307662005258342947e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9wkftf7e0x0eee65wfucaet5akpcek48j0a78\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.67882261552e+23,\n                        \"delegator-address\": \"one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu\",\n                        \"reward\": 987137832235526604165,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 366367384734229401176,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14xvqeuw9v6mqarw5uathtys6wc3r228sdyp7hg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1heszxyzaelycv7s90uyzkfk3yf6km3zxdt87rc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.397999e+21,\n                        \"delegator-address\": \"one1c6r3xwww8hdpkqhzx30396hc7w8c5hy9fgtmg6\",\n                        \"reward\": 260495511751321795779,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333300000,\n                        \"delegator-address\": \"one16r3gr8jdkqkjqfyufgk77s2rms9vhh8tl8w0hh\",\n                        \"reward\": 8509571561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one184eapja6e9dar4uuae8du6vtz4tf46yw29n5rw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.73888e+23,\n                        \"delegator-address\": \"one1f5k22ufqc9tjufgm593mwujjtfskq6sdhk5taz\",\n                        \"reward\": 582069462521813698621,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"The most trusted node for CIS Russian speaking community. Reach @NickVasilich on Telegram for support in Russian language. For more details and earning reports check the website link below.\",\n                \"identity\": \"nickv\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 2e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Babylonode 🇺🇦\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"nickvasilichdigital@gmail.com\",\n                \"update-height\": 3486077,\n                \"website\": \"https://hub.forklog.com/companies/harmony/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.355209398896198027\",\n                \"blocks\": {\n                    \"signed\": 182972,\n                    \"to-sign\": 183308\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.888535968297875505\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.181739474426881416\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.541478217468267110\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.401604209016036060\",\n                        \"epoch\": 189\n                    },\n                    {\n                        \"apr\": \"0.409384198998429370\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.355209398896198027\",\n                        \"epoch\": 191\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 5.9732595256508205990952e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.40791268456193306e+22,\n            \"validator\": {\n                \"address\": \"one1akg6gqea74mmpjvd6qxlmd762v5gfy2e5r7xf2\",\n                \"bls-public-keys\": [\n                    \"1cb9a7c2e86d645cf7f3246fcc29f90a2b47268f6258b910ff607872964086692d1debda832ae5f426e6eadbf30ecb80\"\n                ],\n                \"creation-height\": 3361037,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.40780423844224537e+22,\n                        \"delegator-address\": \"one1akg6gqea74mmpjvd6qxlmd762v5gfy2e5r7xf2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 483231514128000000,\n                        \"delegator-address\": \"one1zefrcfgjuaqxggql0syz28cq40cy6ujwq6zmpx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 601229682748900000,\n                        \"delegator-address\": \"one10p09fugsgse0wl0vwglckw20243tzgx33g0stw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 6.943030852553676934151e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one157rwjephc5y9vt3wc685uqlfy62amjf0ukavcw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1acyxv69xjgunv3z5ymnjt2w70q7rdardr4a3uz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jm9erjgeudx44jxvpyr09u2wevfrjykuvch5kf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"unfortunately the big staking of Binance has kicked this validator out of the elected pool. Since we were one of the top validators we intend to come back ever stronger once we get enough stake. Thank you.\",\n                \"identity\": \"n/a\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Finantra.com - TOP validator with multiple nodes\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"harmony@finantra.com\",\n                \"update-height\": 3492257,\n                \"website\": \"Finantra.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.109775130917288974\",\n                \"blocks\": {\n                    \"signed\": 899827,\n                    \"to-sign\": 901120\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.128819593875176112\",\n                        \"epoch\": 195\n                    },\n                    {\n                        \"apr\": \"0.126387126556967447\",\n                        \"epoch\": 196\n                    },\n                    {\n                        \"apr\": \"0.111165409952114813\",\n                        \"epoch\": 197\n                    },\n                    {\n                        \"apr\": \"0.109504836069694969\",\n                        \"epoch\": 198\n                    },\n                    {\n                        \"apr\": \"0.111033051910375911\",\n                        \"epoch\": 199\n                    },\n                    {\n                        \"apr\": \"0.116342982113453292\",\n                        \"epoch\": 200\n                    },\n                    {\n                        \"apr\": \"0.115533275135231522\",\n                        \"epoch\": 201\n                    },\n                    {\n                        \"apr\": \"0.113671205523944761\",\n                        \"epoch\": 202\n                    },\n                    {\n                        \"apr\": \"0.115341227704317900\",\n                        \"epoch\": 203\n                    },\n                    {\n                        \"apr\": \"0.111525988556573261\",\n                        \"epoch\": 204\n                    },\n                    {\n                        \"apr\": \"0.107246740579886859\",\n                        \"epoch\": 205\n                    },\n                    {\n                        \"apr\": \"0.105291104696663873\",\n                        \"epoch\": 206\n                    },\n                    {\n                        \"apr\": \"0.101456217486134010\",\n                        \"epoch\": 207\n                    },\n                    {\n                        \"apr\": \"0.121287459122485435\",\n                        \"epoch\": 208\n                    },\n                    {\n                        \"apr\": \"0.121530954521738313\",\n                        \"epoch\": 209\n                    },\n                    {\n                        \"apr\": \"0.135241991058942076\",\n                        \"epoch\": 210\n                    },\n                    {\n                        \"apr\": \"0.132654071450264023\",\n                        \"epoch\": 211\n                    },\n                    {\n                        \"apr\": \"0.115347160627511187\",\n                        \"epoch\": 212\n                    },\n                    {\n                        \"apr\": \"0.101581031061283331\",\n                        \"epoch\": 213\n                    },\n                    {\n                        \"apr\": \"0.115482555976539282\",\n                        \"epoch\": 214\n                    },\n                    {\n                        \"apr\": \"0.117611387587961907\",\n                        \"epoch\": 215\n                    },\n                    {\n                        \"apr\": \"0.120687372766583723\",\n                        \"epoch\": 216\n                    },\n                    {\n                        \"apr\": \"0.118253216807197565\",\n                        \"epoch\": 217\n                    },\n                    {\n                        \"apr\": \"0.115119923912514090\",\n                        \"epoch\": 218\n                    },\n                    {\n                        \"apr\": \"0.112413441926650464\",\n                        \"epoch\": 219\n                    },\n                    {\n                        \"apr\": \"0.111382626131747657\",\n                        \"epoch\": 220\n                    },\n                    {\n                        \"apr\": \"0.110470662312287618\",\n                        \"epoch\": 221\n                    },\n                    {\n                        \"apr\": \"0.109859541715414122\",\n                        \"epoch\": 222\n                    },\n                    {\n                        \"apr\": \"0.108338779447621712\",\n                        \"epoch\": 223\n                    },\n                    {\n                        \"apr\": \"0.113365157924295180\",\n                        \"epoch\": 224\n                    },\n                    {\n                        \"apr\": \"0.109775130917288974\",\n                        \"epoch\": 225\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 2.88465466060560230174152e+23\n            },\n            \"metrics\": null,\n            \"total-delegation\": 868400000000000000,\n            \"validator\": {\n                \"address\": \"one12cy7qfl3g7y68e8drdrnvap3g54xepnx6w93g8\",\n                \"bls-public-keys\": [\n                    \"1a650c9d260be3a3b887e2b4b17b8d5076c356675084f7d4766555320eb04ef2f50bf2d6ddb750b09df7a327375e0704\",\n                    \"595301fafcdf7897b56100cb5e193355a956b5bb60016a004e05a370d334dd340dd7ea73402ecee8ab75e0ba10eb3f18\"\n                ],\n                \"creation-height\": 3361150,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12cy7qfl3g7y68e8drdrnvap3g54xepnx6w93g8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y0xcf40fg65n2ehm8fx5vda4thrkymhpg45ecj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 868400000000000000,\n                        \"delegator-address\": \"one1ra5f5pnt67wkswycnzcdz7kp5gecs335624yys\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1txfj6audejk92m8lm74sj37kdmqlnx7mu9ms3d\",\n                        \"reward\": 380423037469446095264,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10vey9cj3f6jrxkr4ffds5h5zcffftjz5l96kjf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Coinfund validator hosted by blockdaemon.com\",\n                \"identity\": \"coinfund-harmony0\",\n                \"last-epoch-in-committee\": 225,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Grassfed 🌱 Validator\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"support@blockdaemon.com\",\n                \"update-height\": 3361150,\n                \"website\": \"blockdaemon.com/harmony\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.272943393986980759\",\n                \"blocks\": {\n                    \"signed\": 101984,\n                    \"to-sign\": 102348\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.291940843087604859\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.300519561900794408\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.226042403632231953\",\n                        \"epoch\": 189\n                    },\n                    {\n                        \"apr\": \"0.274384841808714699\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.272943393986980759\",\n                        \"epoch\": 191\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 3.9902569408576510667976e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1f0dpyc02fzqp4h8j23luu9qak0jjzn8e54j9fd\",\n                \"bls-public-keys\": [\n                    \"1a8eee8418ade656249a7ff2b79bb1d06bf65e7fe730affc91497cb7463b7f12f7be5c43981a35369e3c201ac4589c05\"\n                ],\n                \"creation-height\": 3361164,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f0dpyc02fzqp4h8j23luu9qak0jjzn8e54j9fd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18lp2w7ghhuajdpzl8zqeddza97u92wtkfcwpjk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ra5f5pnt67wkswycnzcdz7kp5gecs335624yys\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Coinfund validator hosted by blockdaemon.com\",\n                \"identity\": \"coinfund-harmony1\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Grassfed 🌱 Validator Asia\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"support@blockdaemon.com\",\n                \"update-height\": 3361164,\n                \"website\": \"blockdaemon.com/harmony\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 523805,\n                    \"current-epoch-signing-percentage\": \"0.999992363628727265\",\n                    \"current-epoch-to-sign\": 523809\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"222719255631194303636199999.999999999999999972\",\n            \"lifetime\": {\n                \"apr\": \"0.118600365094256389\",\n                \"blocks\": {\n                    \"signed\": 47758449,\n                    \"to-sign\": 47766294\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122009623861697039\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121688168313779813\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.127032322491461783\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.132891868919803934\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121390435468047910\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.128680110947435475\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.124165501928770474\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119380700567994892\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117196766306287060\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117698557441655065\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115033919184045950\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117049273792288662\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120438563210937365\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119984663413333243\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120572834491313798\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118330125502751248\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120976749318022929\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121555305813194754\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122575392282018963\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121608157275908041\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.122049082481829240\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.122619846541355532\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118270671995137603\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119270921078116221\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118776572691073616\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.119184372665442809\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118961547861177416\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117676536744957377\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.119056779982097247\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118751646187039395\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118600365094256389\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 593332,\n                            \"to-sign\": 593333\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 591330,\n                            \"to-sign\": 591331\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 657194,\n                            \"to-sign\": 657200\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 670010,\n                            \"to-sign\": 670020\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 657744,\n                            \"to-sign\": 657760\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 656837,\n                            \"to-sign\": 656840\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 679743,\n                            \"to-sign\": 679746\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 624318,\n                            \"to-sign\": 624328\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 623694,\n                            \"to-sign\": 623708\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 706840,\n                            \"to-sign\": 706858\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 707801,\n                            \"to-sign\": 707815\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 712205,\n                            \"to-sign\": 712219\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 709209,\n                            \"to-sign\": 709213\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 716282,\n                            \"to-sign\": 716335\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 742759,\n                            \"to-sign\": 742782\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 849241,\n                            \"to-sign\": 849345\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 782339,\n                            \"to-sign\": 782371\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 743109,\n                            \"to-sign\": 743145\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 744043,\n                            \"to-sign\": 744085\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 951176,\n                            \"to-sign\": 951254\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 856813,\n                            \"to-sign\": 856835\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 858117,\n                            \"to-sign\": 858142\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 858913,\n                            \"to-sign\": 858925\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 892018,\n                            \"to-sign\": 892046\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1066665,\n                            \"to-sign\": 1066690\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1060778,\n                            \"to-sign\": 1060793\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 940454,\n                            \"to-sign\": 940491\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 940141,\n                            \"to-sign\": 940155\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 856891,\n                            \"to-sign\": 856897\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 861183,\n                            \"to-sign\": 861228\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 5.436397253044033620820905e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"39bccb23d3e59e3cc45b0bd96de484b2be838fbb27433a1306153d880f76c7907a80db982a4a589639b7fb41f6a9e782\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"490adcbda4dfceb740486a620ea2d52d57c544b9e3896f5cf522545f02fe0a915637b4ff3ec87497a9f7b92b8ddde10a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.646905215345265643455e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8f467670e6a92df732d1bc81c3bd85dc472a82aca9dd02e8db1c69658f8093525e65f1587d817cb325e673e86d5faf92\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.646902288269199653557e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0715a9c2e509c5c48ac7b3e93e97c667d575db56a4dc91920845766372026e83114d9c84f879925223f1115ff6bb638e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0b1949442d1bd94f4b48499fd39b9ad218dc8a3bde8760fe61465565642948a13f54fff5ebdb6f8c4a0f492552eb5416\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a041f6c328f0cc0da8b3e3e4f786e9b769eb1aefd4fac75e43f47ee4421e0d301d29162b4fa4d36ce3152d1b1efbc292\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f8500000c59d4967899d60d9e3533cfc039f3da912e7408101d58a2051a905775d0954bd12c94946b7c431316d14cd0a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.646905215345265643455e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8bfc1e7554db8a9e177e9908a98321ea3b0e03c373d8d242dfba7435642eca4973340b40c12b15697bf9872f2ae17e0a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e3debc5e712557d2143963dd8dbfc6ec607f4fc5683a87a4124b706cf76c7b40b8228e7770cd4e9923848c324bb4d20a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d08a410da71e4803475e85da2df27e0e6f3c8be47124111dde467c816df5dd54ea7fcd2913cfee4c85b3d7df11de990e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c0118989b68debda37f191ce46ec6473a3f3a4b9ef454b459d03af059b6fb180b82fc7fe622cb77e299e1a7a33c0f886\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.646908296961619650975e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"27eb98e93936f76113b03e7191c6794621c5e72e6e39a553edf2314af293ca955e2370bbc87d7a911f69cdce55249016\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"97f4fe2ac8d22e53261e118dcfa42511e0dabacb45e19daf74a920320f4990011278c8a7bde278428beb984f8942470a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"014aba5f2a6ff7e60a6b05eba5d2b8a8b862e3365bee6fef2f740328ce04a6f8d9effd4356c74f945dcf79feaa960996\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0e6f1a87d949df686c7fa2c8e7768fe548f5954cd47ed4faa1d17d143b180d531a17832e45e015eb1fd27433c1b7e886\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"01a381a48ad4840510433cd65eae2191833c4f1abb50b8df8bb412c8ea2b3981b422da4baf50e1278df7741ca3e3b68e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"270770ae9b5b0f041e54579989f97300a556a5df40ed8cc93e49400b8609c9b7feba0f5696e1d2632ba0e0b972a85c06\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9e32a40615e85c1caaec6528435b354a569666e1f6c4b144698541e1e8c483db4cd547592b17d01c6a4ee36a6285370e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647030555340428549597e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f9f036489ddbabddc3ffa90d2490b7bf144b9df5e0c870b4057a0247255b2c106b27245d41557df905e083b686212716\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"be79b2d9fb4b9a56683d40ee445a6597332e298f0ff3f168cbf5c5acfc4a3ae73b20672517ea06ec9b8b9ee4fcf86203\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"230b046bdf38de5567efdda44d3577918e40b6624e8cb1e7512d25b692f1f8c8615799d6a384ca31dc998dc71dddc483\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4777ebcf87fd9516004f92c7f3fb94e3cb9111e6fb4da681d61d790ed0fbf10aa68aed5fd66d2714896edfb708fdf797\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e1ff573a1291604950b6b7a6bfd5a7608f517224afd2b4afe50f2172f507dcf9081372b03de372d1fe05aa3f89866307\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"686dcfa82b4ea90d7578c7dd3ce806d112c14659335e0b780fcf2768da6e340b78e06156138e500e46f45dc7e18e2807\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"38a45b90cb3ad2846fab846a8026e8b539f41b4aeac984ff32dbfbf1b857931027eb44e22ddc785f59d6c763941e008f\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"51c513a867c026f966e4c1a46676b760029990755727caa0e68a260e59cf7128358bf7bb20a54261d0a7b2f786061e03\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"457fead0248f80dc8a63afe6bd5b464d2ac846192b7547a72cda0cb69ea485eb7ed31e75ccfeb64eb1a985210948e113\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f6c38f1a9b256850069aaae5329446c50b72c0f0ffe76bc28cc8134afdd0b40d024a038454fc85409773a6ae2645b487\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3dacf918e9fd3d9d160722efb0f851c4da1f47f28566496ccf402719ba6b4bc435d9d52259e80674e71c78b622ea3283\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a1c07365e8016aefe0ca4a820c281445d4d5e89bf68ce2b9e9f15de7b973364ac2b9e109464295c8a3d7e124629ae197\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6b2116f918043ef413d95771b56c2f2aec20062872ada45339ad612474acf1b6a2025c27d71d323e8512d0ff87725517\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b1a0a8631459f7988e7c5ab6bd326f5c60739735698892fd3531014710864890ca8ca9426c22c287186903238703c883\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"101662ca51b09da1dafeef24844371e2c3e66daab77c07892439e137f0bab143da26361a6b18e665e974f619fd0ce397\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f1ae282031413945047e6b52361b542ca1c565b6909bc40f4b924ea6ee7e77afbfb755faaf35f40dfe0ea649a926ac17\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"cd3000f11dae857aeb5c36c9021bc5299549df4b74f783018e735817f4f5c170d54066b9f5b9de1dfb7aeebc606fcd8b\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703584683349729384148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"62b57cb99dab8121831d5ee3ce6c1a63ffe3b4f0ce75be53b2aec232317bb1ef8b647f8ff62d610000042e45ca99dc07\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 2.237452223979153036362e+26,\n            \"validator\": {\n                \"address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                \"bls-public-keys\": [\n                    \"270770ae9b5b0f041e54579989f97300a556a5df40ed8cc93e49400b8609c9b7feba0f5696e1d2632ba0e0b972a85c06\",\n                    \"c0118989b68debda37f191ce46ec6473a3f3a4b9ef454b459d03af059b6fb180b82fc7fe622cb77e299e1a7a33c0f886\",\n                    \"97f4fe2ac8d22e53261e118dcfa42511e0dabacb45e19daf74a920320f4990011278c8a7bde278428beb984f8942470a\",\n                    \"f9f036489ddbabddc3ffa90d2490b7bf144b9df5e0c870b4057a0247255b2c106b27245d41557df905e083b686212716\",\n                    \"01a381a48ad4840510433cd65eae2191833c4f1abb50b8df8bb412c8ea2b3981b422da4baf50e1278df7741ca3e3b68e\",\n                    \"8bfc1e7554db8a9e177e9908a98321ea3b0e03c373d8d242dfba7435642eca4973340b40c12b15697bf9872f2ae17e0a\",\n                    \"d08a410da71e4803475e85da2df27e0e6f3c8be47124111dde467c816df5dd54ea7fcd2913cfee4c85b3d7df11de990e\",\n                    \"014aba5f2a6ff7e60a6b05eba5d2b8a8b862e3365bee6fef2f740328ce04a6f8d9effd4356c74f945dcf79feaa960996\",\n                    \"9e32a40615e85c1caaec6528435b354a569666e1f6c4b144698541e1e8c483db4cd547592b17d01c6a4ee36a6285370e\",\n                    \"0e6f1a87d949df686c7fa2c8e7768fe548f5954cd47ed4faa1d17d143b180d531a17832e45e015eb1fd27433c1b7e886\",\n                    \"f8500000c59d4967899d60d9e3533cfc039f3da912e7408101d58a2051a905775d0954bd12c94946b7c431316d14cd0a\",\n                    \"a041f6c328f0cc0da8b3e3e4f786e9b769eb1aefd4fac75e43f47ee4421e0d301d29162b4fa4d36ce3152d1b1efbc292\",\n                    \"490adcbda4dfceb740486a620ea2d52d57c544b9e3896f5cf522545f02fe0a915637b4ff3ec87497a9f7b92b8ddde10a\",\n                    \"8f467670e6a92df732d1bc81c3bd85dc472a82aca9dd02e8db1c69658f8093525e65f1587d817cb325e673e86d5faf92\",\n                    \"457fead0248f80dc8a63afe6bd5b464d2ac846192b7547a72cda0cb69ea485eb7ed31e75ccfeb64eb1a985210948e113\",\n                    \"51c513a867c026f966e4c1a46676b760029990755727caa0e68a260e59cf7128358bf7bb20a54261d0a7b2f786061e03\",\n                    \"f1ae282031413945047e6b52361b542ca1c565b6909bc40f4b924ea6ee7e77afbfb755faaf35f40dfe0ea649a926ac17\",\n                    \"101662ca51b09da1dafeef24844371e2c3e66daab77c07892439e137f0bab143da26361a6b18e665e974f619fd0ce397\",\n                    \"e1ff573a1291604950b6b7a6bfd5a7608f517224afd2b4afe50f2172f507dcf9081372b03de372d1fe05aa3f89866307\",\n                    \"b1a0a8631459f7988e7c5ab6bd326f5c60739735698892fd3531014710864890ca8ca9426c22c287186903238703c883\",\n                    \"be79b2d9fb4b9a56683d40ee445a6597332e298f0ff3f168cbf5c5acfc4a3ae73b20672517ea06ec9b8b9ee4fcf86203\",\n                    \"62b57cb99dab8121831d5ee3ce6c1a63ffe3b4f0ce75be53b2aec232317bb1ef8b647f8ff62d610000042e45ca99dc07\",\n                    \"cd3000f11dae857aeb5c36c9021bc5299549df4b74f783018e735817f4f5c170d54066b9f5b9de1dfb7aeebc606fcd8b\",\n                    \"3dacf918e9fd3d9d160722efb0f851c4da1f47f28566496ccf402719ba6b4bc435d9d52259e80674e71c78b622ea3283\",\n                    \"686dcfa82b4ea90d7578c7dd3ce806d112c14659335e0b780fcf2768da6e340b78e06156138e500e46f45dc7e18e2807\",\n                    \"230b046bdf38de5567efdda44d3577918e40b6624e8cb1e7512d25b692f1f8c8615799d6a384ca31dc998dc71dddc483\",\n                    \"a1c07365e8016aefe0ca4a820c281445d4d5e89bf68ce2b9e9f15de7b973364ac2b9e109464295c8a3d7e124629ae197\",\n                    \"4777ebcf87fd9516004f92c7f3fb94e3cb9111e6fb4da681d61d790ed0fbf10aa68aed5fd66d2714896edfb708fdf797\",\n                    \"38a45b90cb3ad2846fab846a8026e8b539f41b4aeac984ff32dbfbf1b857931027eb44e22ddc785f59d6c763941e008f\",\n                    \"6b2116f918043ef413d95771b56c2f2aec20062872ada45339ad612474acf1b6a2025c27d71d323e8512d0ff87725517\",\n                    \"27eb98e93936f76113b03e7191c6794621c5e72e6e39a553edf2314af293ca955e2370bbc87d7a911f69cdce55249016\",\n                    \"f6c38f1a9b256850069aaae5329446c50b72c0f0ffe76bc28cc8134afdd0b40d024a038454fc85409773a6ae2645b487\",\n                    \"0b1949442d1bd94f4b48499fd39b9ad218dc8a3bde8760fe61465565642948a13f54fff5ebdb6f8c4a0f492552eb5416\",\n                    \"e3debc5e712557d2143963dd8dbfc6ec607f4fc5683a87a4124b706cf76c7b40b8228e7770cd4e9923848c324bb4d20a\",\n                    \"0715a9c2e509c5c48ac7b3e93e97c667d575db56a4dc91920845766372026e83114d9c84f879925223f1115ff6bb638e\",\n                    \"39bccb23d3e59e3cc45b0bd96de484b2be838fbb27433a1306153d880f76c7907a80db982a4a589639b7fb41f6a9e782\"\n                ],\n                \"creation-height\": 3361169,\n                \"delegations\": [\n                    {\n                        \"amount\": 4.51799e+23,\n                        \"delegator-address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                        \"reward\": 4.0537290136449049506507e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rul9mrxkrfjrupvary3h64uw9aa6qp8n2hd93p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0507140418734e+25,\n                        \"delegator-address\": \"one142w6su2shfgx8jhckcnakxkjzz63fj0tukdvyz\",\n                        \"reward\": 1.60508194052385165106025e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcd73jcajz7wsaquzxvcjv94fere2xtqyyjz2q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhz9g98na0x2mgal2z9yth77lw83arf7ndr7zs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.58654e+23,\n                        \"delegator-address\": \"one1atdwrxe98t8kx2cy9r42qjvuslps7dqtxtn6aj\",\n                        \"reward\": 229987929381979655039,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1780hukztd6ty8f7z6z6wye0j6hez3ds8jydg5c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.84954997e+22,\n                        \"delegator-address\": \"one157rwjephc5y9vt3wc685uqlfy62amjf0ukavcw\",\n                        \"reward\": 34878893069701660846,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 21118750600983182269,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 374557440456891689,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18xfcqu7jf0cq5apweyu5jxr30x9cvetegwqfss\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+24,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 183473284374799408542,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 6.75000009897e+23,\n                                \"epoch\": 316\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 5.23571959731e+23,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 1.300304811208678602273e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vcqez6s3crzmj07kfdy2jz0kd3j0s7sk5qrdye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19w8klanmgjqw4waxuv5y2ncwfz5d6f3md74t8x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gclsr6czt25s56e7dkpy7cn22096xtqwjqupcm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 198342597438885839,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.961773661e+21,\n                        \"delegator-address\": \"one1f6k0cctegv22cadjnurhspl0q4a99k6plx9tsw\",\n                        \"reward\": 185030843602508042663,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sx2lu574e3xxqp67zm6x3hqds9ppnkmzf76fkc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.48e+21,\n                        \"delegator-address\": \"one1alvdxf4hx0ads7s0q9v4g6h5teh0fwkprft6f6\",\n                        \"reward\": 85604822454839269533,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jnvncsmlxtnr9znhqqx9rfexggmuj25gmh8pn7\",\n                        \"reward\": 788882632573932027,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nsvft6gsue0feemx59cd2ujszp985rznp8lzcl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.383164958737e+23,\n                        \"delegator-address\": \"one1rf732ne5z74ahp79c39jpezz07qzuwz2gtwgyn\",\n                        \"reward\": 661765571490845660689,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1acyxv69xjgunv3z5ymnjt2w70q7rdardr4a3uz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1p6wcwnajxc208uxpdlx9sqktt6t8kk8nw9hshf\",\n                        \"reward\": 102151705436513974666,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gsghhyd2tpf4my8ave7nm4946ypytjw0sjsa70\",\n                        \"reward\": 477120076252291985,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.02e+21,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 14483709512868833524,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1782xv62cx49zdhr474lt4emc97xnvrpt8d6yrx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 38550181172732195636,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfuvmhz4zgvpeyap5k7qngj25xv84t65vnecye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 68702102355696356448,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6cfkvgjyxw7l89urs25rqe57mkx304und53de\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.53099e+23,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 1.350775213393789142527e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 2.5021221903364720926889e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 25706760160153250532,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6786e+22,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 55981535353775955137,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d0974tslprzkxgsatc8ahaxxa2p8phvpgnahjx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8233169052e+22,\n                        \"delegator-address\": \"one15n3hvvk4huwpp2zxtcvj3jtl76vxlpkjfhr4f5\",\n                        \"reward\": 1.189611933696101839034e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3883401779e+23,\n                        \"delegator-address\": \"one1j0nmr445gf35lskevtac7khtudt5vah27af2c9\",\n                        \"reward\": 54759188192300993467,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 44292915143766148899,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.264927202e+21,\n                        \"delegator-address\": \"one1kt957tv5v6h3ez45zpvwyyu59c2ej9dx0285qw\",\n                        \"reward\": 6156579572566057772,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1unmae47j2w3q9vxqs8fjpa33u8eu8w5dfsuh5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.134e+22,\n                        \"delegator-address\": \"one17gpf07jvactrjk6p6l67au55ap5nd3sknh8l63\",\n                        \"reward\": 417699075404714661063,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 107795392355124830864,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+23,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 3.631384279639775621119e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 567836051950709027985,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rjyg5f8cq2utrawfe2hyck96ac7z67j4efgswm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rmsztmw3727yjuszwd484z8mvf9v6fkkze4r5s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.00005e+23,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 2.101217900537573666789e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.0905e+22,\n                        \"delegator-address\": \"one1ps4gky30d2y60q59ydu72l7dtch6zvvtmu6x0z\",\n                        \"reward\": 743637307422909954549,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13s9upxk9rsvy8e8dn65s9w54kd4e3yx8lxw5hr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 5094756719879816765,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one19jvw9uruqem0hehduv95km63947p4cvxfgnsg0\",\n                        \"reward\": 28673041599117970495,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3799252e+23,\n                        \"delegator-address\": \"one1vkncynzf0kegy80nfa0ppfnktg4ltr7dvlzag9\",\n                        \"reward\": 1.233841701536651745099e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.375e+21,\n                        \"delegator-address\": \"one1h2kljdu542mrg6zjv33w9nfwt3lpxnzhn6dscz\",\n                        \"reward\": 15219713267591525843,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.359398099053e+24,\n                        \"delegator-address\": \"one1t4kkz8dl7kg9hmkauyanjrpprfk03jffl7shh2\",\n                        \"reward\": 2.0754757885563400867288e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 822753349713379119,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 465203080526527081,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.672805e+23,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 598588135695480814178,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.001e+21,\n                        \"delegator-address\": \"one1nhfnjxfwrkk8653jfz97wtdxvw295nws2vft48\",\n                        \"reward\": 5649941829706999847,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00000586e+22,\n                        \"delegator-address\": \"one1d7rudy5z7tsp9th0c8m3p527znu2lxuq8wd0qq\",\n                        \"reward\": 14179720558039992843,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lj4fj7tz2ftp6ahcxsk07usqvaedu524den8kk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vum7puzcd56ds3dvpyap4mm8e5ctzagzn7fmn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8pu8pwfh7q7x8e70ptnztwdk6n505adm42yva\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2016531e+25,\n                        \"delegator-address\": \"one1tzjapdswlu93wr0mjul2vggs8x5mqqeelk2pt7\",\n                        \"reward\": 1.034835681135473236165e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4553966651e+22,\n                        \"delegator-address\": \"one1l85psy64zvjjqwz2j6224tekjsslk37ecdggfc\",\n                        \"reward\": 74644996462659691585,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.71e+23,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 9.305626802082053864439e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+23,\n                        \"delegator-address\": \"one1c0gjxhujxst85e8az6mll2s8tm30609d9ylxe6\",\n                        \"reward\": 2.291590731992855683593e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14x79dn9qunnputr3n0z3594ve7lla77vc3wjrr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.881784939e+23,\n                        \"delegator-address\": \"one18pqt2455nl3n0qs8v5l2zfl7ez5dygwy3q8tm8\",\n                        \"reward\": 2.332642204493600680767e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4e+21,\n                        \"delegator-address\": \"one1jfswdzr7cruvpyp2t2ed5znun6uvku7ynqzq22\",\n                        \"reward\": 30488780475618420386,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.06830616e+24,\n                        \"delegator-address\": \"one1khau8lyy2hqesvve6wp33ful5d3yysuemy97w6\",\n                        \"reward\": 8.65658748420915687901e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1sq0jgnwl6r73h30v352jmfr9lfyy35m8vna0te\",\n                        \"reward\": 2.114890722843015220602e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zctfnssn5frpfz9ms0dn5l5dkgl66mjyujdz39\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7477083333333333e+22,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 9306945119838421974,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n                        \"reward\": 373243290251892679,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ekqjas85d6d9axn9mapgr3dr9c5kc503qcsdkd\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.053e+22,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1qj0f0dwg4jr8lmguxafsuu4pejzcmvz0e277ld\",\n                        \"reward\": 12879951295103027286,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.585e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 5778596119698080997,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fvk8tcpn8dxk7vcy86u6lsc745dcs2tel6k7fq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 37566373561703610089,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one162nx454ej6rp0wjag2f8czcayruwrf33xuvhj0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.667445e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 53825639422042302692,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rztveplnzzx5q2za6aucxlckqsek65juvlq73w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.27928547e+23,\n                        \"delegator-address\": \"one1pmgre5h990fw2yn4uxkfud4l8drzvsdzr4xczg\",\n                        \"reward\": 142410157815217049592,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one109ga287k9pkqg3en8jg2hw2r89tny663uw5vhm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.60998e+23,\n                        \"delegator-address\": \"one1vegzurdx7vgpw4te5jwdvyvx4qsgdy3htk4ncv\",\n                        \"reward\": 1.216693259924879820411e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8e+22,\n                        \"delegator-address\": \"one1sklp8wl0dxa0tm3ctrcvpq5r6pzulugx4uy630\",\n                        \"reward\": 1.225771140329574775732e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h7y8znxfcltckram228ru3y8cfpuvwmg5pnpqq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05877325e+24,\n                        \"delegator-address\": \"one1mgesvhk7yhyc65mr9yardtsmgkyafxn8myfy3l\",\n                        \"reward\": 179573200873612396091,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7015816054e+23,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 22865244654390119884,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x43shru04v9z7us4f0p954wrly4yv3230cc4ta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.85795047974e+23,\n                        \"delegator-address\": \"one1dazcecu7hhhxy379qprmucn657kwg6fp9653jt\",\n                        \"reward\": 1.0975849952366260956111e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+21,\n                        \"delegator-address\": \"one1q7frj9luhffqvg9hk0f4kv3xrux32gpcuyz84j\",\n                        \"reward\": 14001049165577125530,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one152tnq77zlhx4g74wt9jqkk7e8el67u6gun68fu\",\n                        \"reward\": 319477359669838398,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qt6pha5n7sr9xmfchhccxtapr7prnymyhk5t6u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5e+22,\n                        \"delegator-address\": \"one1uvu4uq272045stknx5a9fssgf0ghgen0sydrkz\",\n                        \"reward\": 229594887030288599096,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0547e+22,\n                        \"delegator-address\": \"one10zsqm4mk7gc3n4z6xtywr2am0jnmq283lvwrlw\",\n                        \"reward\": 683387771021105179305,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0377154573754e+24,\n                        \"delegator-address\": \"one12tthayx2u7g262afmcfca29ktnx9aajjd8uj5j\",\n                        \"reward\": 4.9077170267319218600858e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1xqfcamlmsxjcuvkurp4zvxr8eapfh7u9xypfem\",\n                        \"reward\": 672007252501613595085,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.112576e+24,\n                        \"delegator-address\": \"one1cvn9mn9zhww75ynp6a9ul8wrcg8lt6lty6wfvk\",\n                        \"reward\": 64045590826997648097,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kjncp7r9er5cuvnxxwuw9xquwsgr4q6uqggr97\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 41008992646085418667,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuqvgn99dnglxr2u0mae0jaax9ldm6rzg27g4s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rq0acfa6ktzcnf593smes3hqs47gmcnx9dv75r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.019115e+24,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 9.109494568385093929947e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.81425621532e+23,\n                        \"delegator-address\": \"one1wuau575jjjgk2e03qps7k8lfh8t3hyw3tgw5f7\",\n                        \"reward\": 2.868516676161554224153e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1mlj2ecjmea22jgp9hrpvndhk09fsahhs28mm8x\",\n                        \"reward\": 458409223151418583571,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12frku6ue384mze6x3hcmyqc8w5f6xetlgec7qz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u0kjlh56ny568dzaa20gmuramsgwdkfdm74q9w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 37906257615387087166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.518e+23,\n                        \"delegator-address\": \"one19ylhvmuka4uel3e8hla3dvadayujseftezee2w\",\n                        \"reward\": 1.73279214546739977286e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uf2mck76qeug6qy9kejq2rjvtqlzw0uz5qx4dh\",\n                        \"reward\": 69774780180518162,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.526e+22,\n                        \"delegator-address\": \"one165stpdzl6c6pwdkt9f5xrad063e00symwyznd6\",\n                        \"reward\": 104075654231063457273,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one127la8ga6u7xh9n9qtagu5k45gq673v9wwz8lx3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.484e+21,\n                        \"delegator-address\": \"one1gvpljml6yfafk0p328d2k7mjxkpfptd8p7qmxn\",\n                        \"reward\": 78574958153562736937,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3686257734e+22,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 185930907555564507764,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n7hz4jcy9ms509d3prf8393ymdgmh09vvpkvhl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.403e+22,\n                        \"delegator-address\": \"one1gcexg4vtvts9daclw4npa59ttcrfxywaqfgh3y\",\n                        \"reward\": 485263171702051406886,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f7kjcy579yc7r8zhzn44nj92l88r3jaa9dm3x9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.55e+23,\n                        \"delegator-address\": \"one1nffxvsrhxn94xpft9eyek7uxrympjgx0szm8ru\",\n                        \"reward\": 143411855907421995413,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 125226146022444900118,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.53305e+23,\n                        \"delegator-address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                        \"reward\": 3.577756681817464575653e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ct3jxm4j23c0yjxw89mfj5jp8dwfxzle4eacr0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 72476068646332071871,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.3278e+22,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 233731928412935651807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+22,\n                        \"delegator-address\": \"one1ns7j3ylr96c4fqnaeacny9qf7ufzz489q6v0g5\",\n                        \"reward\": 53323327289802534150,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dsqz5qn8pv58nnudvnn0ngm6f9dr3d4t8dcvtn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfgwkf2lney0r2sq4hsy3vhpvwcxf33qpurtpj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.82211361929e+23,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 9.237272170595159251908e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+21,\n                        \"delegator-address\": \"one1mp9hnvwm5tc7hjuwge6n4llarmxclget7r93rz\",\n                        \"reward\": 79653172734812292797,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g24xkdx2u2l2u0fu3v8cahwwnn6t0t3755tydw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one123fdvcj5dk4l55jz990fukssq7sryvt7v9zdce\",\n                        \"reward\": 142766094047416591760,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 89532912608109311255,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.22786227051e+23,\n                        \"delegator-address\": \"one1ksemd8htnmw9plclg8wjrqql4rnax7kqpzrfy3\",\n                        \"reward\": 138879135174786215300,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3145643e+21,\n                        \"delegator-address\": \"one12yctampe4hqeug668v48kd2tvm85j0u0lk9lh9\",\n                        \"reward\": 1564230688828547535,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12saruhnv9f63dqhuadjq3vhqm3nwyw2ac40uyz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n9ewg25xzelcpndchqsym2ury705p27cw9nzlk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wphasach2wkzdxndadxjactawt3s2tcyt6y29n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xmqu5jft3d2rdaxzgcgal4tt2ycn8fc5pjejgs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hcl5swxvs3t5lx2d9rr02004dgmcxapu7jfdkp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.66543536135e+23,\n                        \"delegator-address\": \"one1hu8dqr7glfengcnw2sv7vxzcc25h3art4crd9v\",\n                        \"reward\": 167592062065333770663,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1ej3c24rs9p2cedv8mm0fpd6evrcv22s5p2yk4p\",\n                        \"reward\": 644551050304445519012,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.47258443336e+23,\n                        \"delegator-address\": \"one1lsjmmrfte3cnteuh5377n964mrgl5tcfjgha63\",\n                        \"reward\": 544427132564596420138,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.175230445e+23,\n                        \"delegator-address\": \"one1hrkv9lgr33x928ccmvrf6j2arusquuvegmp247\",\n                        \"reward\": 44896919816989601069,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one19kcgd97z9adkeq7a4mpvt2ud6adtr3ynfmlmfa\",\n                        \"reward\": 6318246455680176430,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14srkg3xaxywh99lstzxwq8a4lc6hr5hljudqta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.13599702043e+23,\n                        \"delegator-address\": \"one1jxktghsf3yx05mrlya7mch7l0n3u24rf430v2n\",\n                        \"reward\": 242544408964352447009,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9r2qh3fjy3tqtlcc9av3yxqq3rte3mfk45zj7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vzlt9yygwvc62vx9n35t2l3k57adctyhzxn7ar\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.27532751051e+23,\n                        \"delegator-address\": \"one1eplkhwjeqfcfdvydmzmuczu6lzr3kq5ndsxk7k\",\n                        \"reward\": 3.9302877223771802899e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y83vrc7fm8p7tlt9y5nazpymp2heahz9c6whtn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3842129e+21,\n                        \"delegator-address\": \"one1ge659dk07lxyhnsfe7us3lc2sdv66h5lwvgenu\",\n                        \"reward\": 41756496543104567372,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1lmzxv04vesmlym6avrvd7s0raz5axk66eyztew\",\n                        \"reward\": 20377967547700307182,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.68103e+24,\n                        \"delegator-address\": \"one1rhjzv8alvwg3an7ulg67e38md4zvsvcuyc7uh7\",\n                        \"reward\": 8.456792666500041502398e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one12vq79k6nwv475khc7mmp83786wrlgslj0zllgs\",\n                        \"reward\": 120875535707546681416,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19szgne3rhvh4hpsapfmrwdsfau9wt70m0st8n6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1prdqtvqgfvg8t3prt5a7d6qrjgn3tcehf59n2f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lu42dakk5wx6yn24wd9nzcpaygw0n833amwex4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4427999976e+22,\n                        \"delegator-address\": \"one1mgf7d75g3uklf3vxaxzmj9u60lhvd4d9wsjdld\",\n                        \"reward\": 1659765629311678214,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one16xwec874npwmm5shavyvjmhcg5u902ak2ad4vn\",\n                        \"reward\": 246907629060810348344,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3075250039e+22,\n                        \"delegator-address\": \"one1re6kh2eess322u0g8xx2pnysrqkcupr5x6c6a2\",\n                        \"reward\": 1.280764334938423361313e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tjtmupvw5z78k4p46k86krw3gvsrxmh3sdvnf5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q6ml8lvk72de9ufhw99urv7kvpwqk647xj583j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one134t2ky6m832cudjtq7g6g0xzfgk7krc329dwtx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.67461206697e+23,\n                        \"delegator-address\": \"one1d9u6046pvl9gc9yythqje423h28rpsudmdx7hm\",\n                        \"reward\": 9.1565979668047101471e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1fyzl5axz0kkt2cflme6xwkkx7tsk3hvakcdktt\",\n                        \"reward\": 393848864387612445331,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12s0s2d3exz4xgdkv2086c3rfd2xcpw59w98ef0\",\n                        \"reward\": 3267287467543173184,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6e+21,\n                        \"delegator-address\": \"one1lq2vy64kf48ec9v49mtm4gc66j732kxyjqsv3t\",\n                        \"reward\": 76073934052484002128,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lc00rrru56f2u38vrkc2y7z46wr528axezw792\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6e+22,\n                        \"delegator-address\": \"one1grpk6706ct68pwcqr3vjw60xcuwjkerau7d9ww\",\n                        \"reward\": 271918437671471076298,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ac0p66nvaj39k2jxahsdzt02chx64pzsh5rn2w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.993666666666666e+21,\n                        \"delegator-address\": \"one1a48pe02qxnuttpzdec3zj9agw0w63jh8ay5qvq\",\n                        \"reward\": 289325803920625787245,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0111e+22,\n                        \"delegator-address\": \"one1lw65t2wvqvc7ahl0ac0xafjvpu47h8fpdlurua\",\n                        \"reward\": 93613998840336196110,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ehvjy83pv7gqq4jedyhtkv5cwjksl06vw4lsxq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.876882165e+21,\n                        \"delegator-address\": \"one12nr92s52lclc6cuk2w6cenrfwqam98v20007fn\",\n                        \"reward\": 68875265199169230481,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.4715e+21,\n                        \"delegator-address\": \"one1588j47yhfdn89pm56g0r0scj487hu8ggvgv3da\",\n                        \"reward\": 39758901965216608931,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.111925e+24,\n                        \"delegator-address\": \"one1trq9jyzvvhs2a0gjj39mlcmc94t8fghfckuumh\",\n                        \"reward\": 1.61780883380841950734e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d60pue8upt6fjezlllqk6jy8xwa2v8qpt7g73r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d2nafxk24ufu2rw3q96am8juun9jjct346rq2v\",\n                        \"reward\": 14778295316832198992,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.12e+22,\n                        \"delegator-address\": \"one1d5w0256gh7f009macc0tzj3etuay06jg62fnyt\",\n                        \"reward\": 163555916233245331143,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5uwlvjmygnfrh75nnmemgm7syd5xh0hww3ty6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.000090434e+22,\n                        \"delegator-address\": \"one1hvldc2xmev0ry2qhgl97zs3cry2yk8srfndu8z\",\n                        \"reward\": 426351986150863471050,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.84587e+23,\n                        \"delegator-address\": \"one15y6dh6h4xm6lz9h3pf75v5jeekfwswkftr5jj8\",\n                        \"reward\": 292791953193551325049,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8e+21,\n                        \"delegator-address\": \"one13u2t8egtpgljml78jy4tylr9v7wz2kj4yqh884\",\n                        \"reward\": 189354506468616802020,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.051804029087e+24,\n                        \"delegator-address\": \"one1v4qm509zq4jmcr53anjz2k7vp6xw6geqkl76tf\",\n                        \"reward\": 47188622776875925024,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1wskyyv4r3s867sy2pva67g6u7y3r8e8xeyh7c0\",\n                        \"reward\": 1.375618662738494716254e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one135lhy9rv4ulw2tfvv6l3h95mn5r420n2rdsvt5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0823331274e+22,\n                        \"delegator-address\": \"one1y43eaqu9dhjh9lxtw4e6s606xfyvjtz56d3atq\",\n                        \"reward\": 298190461187864956812,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16cje0z4pswgck88eprtrd6v04jdy7n6vpcue3x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.33334e+23,\n                        \"delegator-address\": \"one1nycq26mln9yh47zq7t6kmynnkes92met2kumk8\",\n                        \"reward\": 728490749789187929582,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9058492e+22,\n                        \"delegator-address\": \"one15l5f95rwfxw5qlztl9vn4jkwae0tp84knu2esm\",\n                        \"reward\": 73228611233922905298,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7337438887e+22,\n                        \"delegator-address\": \"one1gv2gx3azpnu4yawcd4pp67etlq6d8fcrav8enr\",\n                        \"reward\": 1.015512706252948973311e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one12f2m0hkppn6af3dyc9e3jynq2wcvmq0vex0x39\",\n                        \"reward\": 27198242207409504032,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.14101e+23,\n                        \"delegator-address\": \"one104fv5j5a935yz2vhxhdy62dlvcn3f3eepnhr5j\",\n                        \"reward\": 869800603245612919788,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8835e+22,\n                        \"delegator-address\": \"one1y7c57dp05de53v6l2h3kcx48dmlcmj8slfgdwx\",\n                        \"reward\": 316270642645834172319,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.799e+21,\n                        \"delegator-address\": \"one15lke5hd8hvz8y4srm0u3kllv0g6uedd0dx7sqv\",\n                        \"reward\": 18054354920645916436,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 625000000000,\n                        \"delegator-address\": \"one1v3tzxmw4fsfx5k5ejxygyt9wlk2dqztvwsk7mc\",\n                        \"reward\": 594118281380000264,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1085e+22,\n                        \"delegator-address\": \"one1fefz8h7l86xxwswxzngcjgn4ywdnv9qfrtpcw7\",\n                        \"reward\": 2806446068651675565,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u0pezjgzxxemesagrztml62dkmr5vkfy3edhd7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one102c3tg027khx0mzu4zmuax7hlpcge7qng7k5tl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.001e+21,\n                        \"delegator-address\": \"one1jtd7arfljdcchs68kh26vxqzp369f7vmd625zk\",\n                        \"reward\": 22823874437522723157,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ja7wnkmhl258pddwg7jguzr5sjh8kp5wkzahxu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.421199281e+21,\n                        \"delegator-address\": \"one1dh2f694yfw2tpe3zqsvkgaj0ykeustw93gdyq0\",\n                        \"reward\": 16298936399724237836,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfmxzl7v005dza0jtx9hmk35f4ly054y3fk5ac\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.96238246e+22,\n                        \"delegator-address\": \"one1ddndvxxg443e6nw4rzvn0evpnyyz66v969reha\",\n                        \"reward\": 1.12103855075397993951e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1xj8sfc4mf28uuae0k4nep5w7jja6573p42rpu8\",\n                        \"reward\": 6121749201831856902,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1g9j07r5kq6rmhtghxwquyf2xps56yhufld5597\",\n                        \"reward\": 51003151701123491933,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00000044079e+23,\n                        \"delegator-address\": \"one1l244lktkg4zclfl2fj30npp5eyp2vg2e4fdp6j\",\n                        \"reward\": 267982908523900553729,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.935288e+24,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 873820852667631890964,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.36428302648e+22,\n                        \"delegator-address\": \"one1t0eety376umvd4cucuqvh0d9tsamgdgvrpe2q7\",\n                        \"reward\": 190113872309792857917,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1l0x0jc5wm9qqj77zp4mlz0eunj5j5r597rn4a9\",\n                        \"reward\": 449866058361386322924,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00483e+23,\n                        \"delegator-address\": \"one1k9nvefx0znyg4jrpvcj6mzphecxqmqa398d5nc\",\n                        \"reward\": 85014822276531849609,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0447e+23,\n                        \"delegator-address\": \"one1422pxretfsjn688cx2cyw0nxhk3r2qtyam48uq\",\n                        \"reward\": 2.617552829555417703584e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1dtnwdj0umv7r0zn5styglj6npksmstsk8krm4x\",\n                        \"reward\": 7.109108739652626135926e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.13e+22,\n                        \"delegator-address\": \"one1n9ugplqsgrlyv9rcfzr8wcxshdt0rha78zj80z\",\n                        \"reward\": 367350348561536170198,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pkul3dd3hgprvndmfayken0yxtkruqeqya3tqr\",\n                        \"reward\": 498027300321235504,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 428571500000,\n                        \"delegator-address\": \"one1ykqgnpeqln4kzhgsseu6qg790655x562064wmc\",\n                        \"reward\": 6905300923,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1zxa9dduhl89erh4zwe3n2upuu69y2qz3jcq2ga\",\n                        \"reward\": 246641153972610218732,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333332000000,\n                        \"delegator-address\": \"one1thn7hnq59wap2hfm8g93m6zh4n42pdc2su7664\",\n                        \"reward\": 6376067865,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1llxf209y0f8sqnud993m94udvewpje25e2tjq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1xwzad7aha0h77hulz0uc7uzmsqrjl858xj9h45\",\n                        \"reward\": 67585055999099782467,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tslmwkcjz900xedjwv3eg8zdf8v83wwsjagyng\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q9drc5xg3h25n552lrf6appm6zuk264s925l9d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.80671e+23,\n                        \"delegator-address\": \"one1npjcsmeuuxu0zp3mt00ja5puy60swjj40657va\",\n                        \"reward\": 44710664253588362948,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1athys8vztd2gwkt20w0k48kmywhxle0j3u6q0w\",\n                        \"reward\": 29685442389624076,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.804e+22,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 576108206070939116716,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.88302005491e+23,\n                        \"delegator-address\": \"one1gzk6r9zljse9kcctxzugk7p24hql2rvp5k03f3\",\n                        \"reward\": 1.084852826087047619722e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1sewr7mmyheycpty6aejgn2tpydp0mszqwt7rer\",\n                        \"reward\": 121557215159463540414,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zrg0zxjp3pej69kkjzqtt4gqkrkx4qgu7xx0hp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.82516887047e+22,\n                        \"delegator-address\": \"one1ly5ekayfxv9pu7e8cnmlvjj8wqq8fasqmwdjuq\",\n                        \"reward\": 438106447999231625851,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.21782169943e+23,\n                        \"delegator-address\": \"one18p6kz3lp0j79gpr9jmmzq6whfgw3eaksjplklk\",\n                        \"reward\": 110619048293441482155,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2502e+22,\n                        \"delegator-address\": \"one19rspxun4ry5ehgkdkhv9aly23e7rdcjnrhnh2n\",\n                        \"reward\": 689872710391684068681,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.72000683274e+23,\n                        \"delegator-address\": \"one1c69a6qj9phxeftp959jmzg3wdlu0hcgjxvxlyl\",\n                        \"reward\": 3.501662753170311563094e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mxde74ed557gg6y2l6jl4nazcvd9jl6ne4m7gf\",\n                        \"reward\": 166698767420050847,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.35e+21,\n                        \"delegator-address\": \"one155y735gs2yakk8xshwq7nj4tsku8nhgfjnx24q\",\n                        \"reward\": 79327367472101145361,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jjg9xmafmh56eaeg42uuftmf4cc44zc5swhu4m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy63k9kp6vgmrl2s4fpw8kmwn4dl96vrdhlpnx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4414e+21,\n                        \"delegator-address\": \"one1wvy5v5n6vwtlddx0hjzt63d7fvudad60andqe7\",\n                        \"reward\": 6279120918868094251,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.49849995e+22,\n                        \"delegator-address\": \"one13sd5zlunak3dswmv3vngwfanumke6jzqy834kc\",\n                        \"reward\": 359694108881263285094,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0552e+23,\n                        \"delegator-address\": \"one1m5wkkenq7exdqkmfdtla8kx79mktqr3vcwzl8f\",\n                        \"reward\": 1.088625313613355099046e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.12357532266e+23,\n                        \"delegator-address\": \"one1c4z393tgfll62ksldcpn8h0q5fq2pmzj8zmr70\",\n                        \"reward\": 98564769704643396082,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.73866e+23,\n                        \"delegator-address\": \"one1zaw3xn9ttj752ankr306z3l95fjrdxkcr5fr7g\",\n                        \"reward\": 3.785507758692513665126e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.76189849e+22,\n                        \"delegator-address\": \"one1f4rp0r5f0sa0a7n9a8e5hzn4fy030ntt88lm7u\",\n                        \"reward\": 1.126259717447849625275e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.109e+23,\n                        \"delegator-address\": \"one1xfuukfk4a72e2a9hqh2vmv55duvguv80sxm5tg\",\n                        \"reward\": 261360359905974578863,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one17efjyng3k8yvm6ssmaxlv36l9r8ua28y0cuxp6\",\n                        \"reward\": 23651485217776592360,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 453861044002045039319,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.025109e+23,\n                                \"epoch\": 320\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.0325e+22,\n                        \"delegator-address\": \"one1jf0qv0g07ahjg2q8duq3kgfx92htkwsajx4ufc\",\n                        \"reward\": 118671645701652047105,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.098525e+22,\n                        \"delegator-address\": \"one14vv9tx5g809zfgygzwccsr05a8shlpcn7j6whp\",\n                        \"reward\": 35449136605069438739,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.2549861213e+22,\n                        \"delegator-address\": \"one12fd5nqu3alcyaa0wzlcq6xaj6j0dtz0r0s4ygj\",\n                        \"reward\": 69039940661085806202,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.957689066e+22,\n                        \"delegator-address\": \"one106uev9a2m4rca57h4wn9z4ec63ada7yv45cwr2\",\n                        \"reward\": 229696228149003111622,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00499997e+21,\n                        \"delegator-address\": \"one1ttauqj7ddq9gykaphmzysd83052p4a6d5m04jm\",\n                        \"reward\": 23445418408633706166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0049999e+21,\n                        \"delegator-address\": \"one10ykaxljmwvlhqsncprk8y3c8q4z7939uhvgnpu\",\n                        \"reward\": 23445416775619031444,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1157173505e+23,\n                        \"delegator-address\": \"one1eqflv5wu0sldgpheflywqdk45m8g35fzyd8sct\",\n                        \"reward\": 60484272050488812755,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.15866779878e+23,\n                        \"delegator-address\": \"one16rfvsk3qek9q9g6zpkxaxkynqxjs43nnp6gp0l\",\n                        \"reward\": 140142421273313361317,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vv5hh7pw534v9qsq9wrsqt5mfg48skgkky59cz\",\n                        \"reward\": 27281458909517520688,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2473e+22,\n                        \"delegator-address\": \"one1kk6khwfefpd0sekd6h3aeaa6rvmnccjxa9zwrx\",\n                        \"reward\": 38302266100184198040,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+22,\n                        \"delegator-address\": \"one1snrl5pznjfhjcr0yf8mufcs7jpfk9txy0ecdnm\",\n                        \"reward\": 839001885042311056758,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0802117089e+22,\n                        \"delegator-address\": \"one1ecqnh54clrlvx2zfapegrqft0lxuafv7hq8jjf\",\n                        \"reward\": 1.398783432558671144509e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7373230569e+22,\n                        \"delegator-address\": \"one1m8364hzzjdxa77zcydy2wqkwnz24dks5k40jds\",\n                        \"reward\": 169282717841821687523,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.94274e+24,\n                        \"delegator-address\": \"one1ul265qs7zvxj2e9kpfvlnju4tvky5g6dz7skjh\",\n                        \"reward\": 7.280548282936827397883e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one10yfpuu9h0jdxzl3mfltgrjwhcxtkgdur6nxav8\",\n                        \"reward\": 386589515843469246785,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1tf7h2guslm5xw8lc0mje39j5gg9kgulvu0ldhu\",\n                        \"reward\": 1.770663283872611556874e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.93e+22,\n                        \"delegator-address\": \"one1zh93n5eg55h3esl6q7tvz9pjv4qsjup95zjll0\",\n                        \"reward\": 527406789188574419365,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.7033549835e+22,\n                        \"delegator-address\": \"one1y2u5f56l5xwahwn0anl3g9fxcvlalmtwr0l98p\",\n                        \"reward\": 968737681294857782587,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8847e+22,\n                        \"delegator-address\": \"one1yk6ntuxxpmxxauk42qkrglfar4e7eekv0t0tgr\",\n                        \"reward\": 157715237174265568938,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.12314e+23,\n                        \"delegator-address\": \"one1gd6rvnk7mlpr603tluae84yhn7kggpj3skuyq6\",\n                        \"reward\": 7.088691673685727801241e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2222e+22,\n                        \"delegator-address\": \"one1k55pnrwztdxa56wxhkmq7qc6hu5qa2akpht3eq\",\n                        \"reward\": 230313819952698899225,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.63568e+22,\n                        \"delegator-address\": \"one16lrjwy2y0025ydsmwc0a92jdvwpmq20rjkpny9\",\n                        \"reward\": 116245299792387921623,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.000000561e+22,\n                        \"delegator-address\": \"one14mr8fcpuav2hhmja0zuy7upjmpc5w0avnnu93s\",\n                        \"reward\": 226973355355244375723,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4012453623e+22,\n                        \"delegator-address\": \"one14nw56r2apv8wlljmg6pjjr2dtsz6w6jhqtzm8h\",\n                        \"reward\": 179179097828749502883,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.048e+22,\n                        \"delegator-address\": \"one12xk2yqnla9y5qn420dgjj73pc7jzmgptktlg82\",\n                        \"reward\": 91419637249624106430,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1372e+22,\n                        \"delegator-address\": \"one1pjwapd6llr64jx437a0ncqqxdayd33u4kqut8w\",\n                        \"reward\": 134467145318822852445,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.290481e+24,\n                        \"delegator-address\": \"one1yehvz5qadpw2vvmh6e9q08mmgrz75ahlxrmf80\",\n                        \"reward\": 2.45287158685744745921e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w5qfpepheyt0lsfynd3cuarqa8ytra9mrplavw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3897e+23,\n                        \"delegator-address\": \"one1qkygud0y600zrkp4n208uka62pe673s8tddxxr\",\n                        \"reward\": 5.128837088677891827747e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vnnc4hkfgpp8rdmtzvgumr79ygw3arhtzgjk4f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.009e+22,\n                        \"delegator-address\": \"one1r0nfhpw6a4lxg6whvtr4ufth6g5yqqwz4ddumg\",\n                        \"reward\": 225809981462328676200,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.792e+21,\n                        \"delegator-address\": \"one1tw2mtfjasz3pu55t6zzyhw6qayssf8lwc4vhhx\",\n                        \"reward\": 75479624592359347225,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.09871279e+24,\n                        \"delegator-address\": \"one1sdcv5w7rvwdnf5cqxve48sdggcsrrgmcy2yydk\",\n                        \"reward\": 270397098765533972705,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.991557895e+22,\n                        \"delegator-address\": \"one1v7f26htre4a5rumzsfr9kcfydxu684ufyggl75\",\n                        \"reward\": 1.102045472954571778131e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05e+21,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 8772626846771849897,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.3928146e+22,\n                        \"delegator-address\": \"one15lud93j8p5q0q0ylk9m00x07w60luwsqhyc6sc\",\n                        \"reward\": 322417130713552772166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+21,\n                        \"delegator-address\": \"one1h2xk4srqlg3amnpvqr0tz09c3c00yasmwkx7sk\",\n                        \"reward\": 25621047736338483155,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ddkra7wfkez7lav4p79u390gnj7sv85funzu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xykjfaa6ucfa9p5feulvxy8ux9wfyxk8tgxjtu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00000138961e+23,\n                        \"delegator-address\": \"one1llnqqpepyjlpmhr96zhrqpf7ekgd3dhx3jpscf\",\n                        \"reward\": 19363962499014766833,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1xc7rc5dmvnmjrstq8vesre79hr89mu7h79v05z\",\n                        \"reward\": 326150873582682126814,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0000017793e+23,\n                        \"delegator-address\": \"one1r2lx24n0fpfch7cqyhccekqfd6dk79f0wqw7p4\",\n                        \"reward\": 707810831688322005332,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.732e+21,\n                        \"delegator-address\": \"one1g20d80v3q68cp9rg3z4xf4ht3fk974qd2tnjqc\",\n                        \"reward\": 21447277108586887332,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1fzne3d2ndvxpx5vx0v2te7zzjprkgcryckeuuk\",\n                        \"reward\": 11493925234639006036,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p942xhj5xr96cllz3ge5kjuxzev52uuedfzdhh\",\n                        \"reward\": 3739573360946758544,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1024e+22,\n                        \"delegator-address\": \"one1y7e39h6z0c0jqx9vu2epx3v5d3d44nx7sqmjsg\",\n                        \"reward\": 143748160779875231632,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.68114e+23,\n                        \"delegator-address\": \"one1qtdgjp203mec6qegssg528cuka0vxkgvkea8sa\",\n                        \"reward\": 1.095500340365099605231e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.099e+22,\n                        \"delegator-address\": \"one1lp9aa99j7gpsm6v576fm3hukn6da2ghea47v6h\",\n                        \"reward\": 235775202595235303086,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.026e+21,\n                        \"delegator-address\": \"one190x6s8lmz9y626jw6znhwkwqm9jq6nl24dftv4\",\n                        \"reward\": 4716440373059766266,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16n9hxeww8hefagsu9anaej3cn5ggt6uu8s9xqu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.81298286e+22,\n                        \"delegator-address\": \"one13eh8wsk8wa8ag96qjrdrgh2g8ecx8vpwc6q73t\",\n                        \"reward\": 1.161975452356603844987e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mdwfd9c0fnfatt2kxy9ayc35kr2gfgalp4mfzx\",\n                        \"reward\": 70171451899806417994,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.71e+22,\n                        \"delegator-address\": \"one1c5st8sfyreqjae0v4ah8nwdtmx80atcdamxden\",\n                        \"reward\": 200559808890085546216,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one136txyyuafyz80wws5gl68kr4t9p05lak5vwcjl\",\n                        \"reward\": 36067926249535474,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6034e+23,\n                        \"delegator-address\": \"one1c5hl3pzes0yn7r5v4dls65rppxc8kjfh7m2fkp\",\n                        \"reward\": 131843125848151603580,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jcwrcstmpcshwmr3wcwm0wac4ev26n7p4hrw8u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.595e+21,\n                        \"delegator-address\": \"one1ez5vxp6g6nsw07h333z7dshgzu0du7q2j8drxt\",\n                        \"reward\": 34218512114595052701,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4538665923e+22,\n                        \"delegator-address\": \"one1qup2xu4zj2m7aeld7z7cjkcw8fpspfaprs4tc4\",\n                        \"reward\": 58455145598860741926,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1yra3ngjsfyffjqut7gqptacn28hg4y8e3u3r6k\",\n                        \"reward\": 259661092784765902441,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.947e+22,\n                        \"delegator-address\": \"one1872uv4ew57h7eps98uppt0drydj7ffrae32z7c\",\n                        \"reward\": 617854715552230484106,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.70425e+23,\n                        \"delegator-address\": \"one1s7hw88rhnk2yr5jrsz7k5c6hp9whj3635t9pkj\",\n                        \"reward\": 3.602413588579773350421e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.14e+22,\n                        \"delegator-address\": \"one1ln66zgvc2krv9v7hqauws45ktnal6jmws2c0fa\",\n                        \"reward\": 9133015961034804137,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.8365616479e+22,\n                        \"delegator-address\": \"one1sszftgehlm0ph9s0u0ds4j5h0e2cnjygz5wvxn\",\n                        \"reward\": 826780640446220637362,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dqlljeense9cz595wnsvmkyp47dur62803x7cq\",\n                        \"reward\": 2190633314750560720,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ecd8qqjv525vd43mu7m72ws7d7qc7q3v657djr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.93932264e+22,\n                        \"delegator-address\": \"one1yvd2qtp6ty372a3sux6e3g84m78ny9lr5mns0n\",\n                        \"reward\": 1.653237970234583463466e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8663e+22,\n                        \"delegator-address\": \"one12w5e84ulqjgz23vjufhmpsrhaamccsjw97zend\",\n                        \"reward\": 12538526023985339350,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0455e+22,\n                        \"delegator-address\": \"one1g4k8j5a0d032duwk4ns9qcv0lgrtr8370t2s7n\",\n                        \"reward\": 132668984395449997310,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1e+22,\n                        \"delegator-address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n                        \"reward\": 314968876207713672709,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6e+21,\n                        \"delegator-address\": \"one1mrtzgl57kumdeklse2z6vnkhgtdj5rcw45chrm\",\n                        \"reward\": 94307383183022651861,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12v440thmnyjmfvmk483m3khwa9ffmp5fzt47fq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8063632e+23,\n                        \"delegator-address\": \"one1784amhxlknvgtnah6lzgghj5l0lj2ung038tsv\",\n                        \"reward\": 1.247938984425305167709e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.74e+23,\n                        \"delegator-address\": \"one1m7c0566xhl8edgqjxwrqx8h6ry877d29w6kj5s\",\n                        \"reward\": 3.567279276923054559247e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.218533929e+22,\n                        \"delegator-address\": \"one1mv3ta8wgdeehrsja9pv7474chmu62dyy7cfqg5\",\n                        \"reward\": 36431118910205553652,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2013466e+22,\n                        \"delegator-address\": \"one1kme0plwyugns6jjne6lzfta867tdn09er4du5g\",\n                        \"reward\": 66764902286045045848,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17kwh4wz3r6hsdepgdguwr80d5p6d330jn5qdmf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 1.088147731683265059189e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.8641719e+21,\n                        \"delegator-address\": \"one1zr7q9flpwapyrsyn05755sgy34y67z6x7rv9hh\",\n                        \"reward\": 177190618831954753413,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7744209e+21,\n                        \"delegator-address\": \"one1y9wg56hcfdp4xx4mh6690v02cxccx2wt20hdvq\",\n                        \"reward\": 19827978313716505693,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4197836e+22,\n                        \"delegator-address\": \"one1jlhpzmn8ewgp3nnt95fp4kacflrqtpmd3xy8rh\",\n                        \"reward\": 51767252441016180793,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one15lgghucs2qxucg79v8smhzcwtzwmqrsk3k4kg9\",\n                        \"reward\": 992486022231296320281,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.0021016807e+23,\n                        \"delegator-address\": \"one1uspskt0m3ezvhcdjjkn0llrwuyawqdhmrm6g2g\",\n                        \"reward\": 166524649248732215695,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 4725455413525112345,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.4886e+22,\n                        \"delegator-address\": \"one1ccccsdqayjjexxxwt5zh5k95rkq3088dtrflhw\",\n                        \"reward\": 325318998438014376944,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z63t53093vs0jt8xhvhqqt3qnycykq4qqydmvx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one158p7lac9hay7ktsmw5mr5umf947krtnwglw2q9\",\n                        \"reward\": 37954593349455571078,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.15e+23,\n                        \"delegator-address\": \"one183s627gqnz3p50xv0lp2vtk76mmn7rhred4p64\",\n                        \"reward\": 6.151932471402163124173e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.209e+22,\n                        \"delegator-address\": \"one182t93gucw7ptkpdguv7d7ucgkcsluc946rtgaa\",\n                        \"reward\": 431416470772298238488,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2425e+22,\n                        \"delegator-address\": \"one1mw34kdf3kq6tyq9grr437juujq3eydtfz7nzm8\",\n                        \"reward\": 176474411444672510028,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+22,\n                        \"delegator-address\": \"one1xjjjtk4lw4acysluwtgat6dk2ng4uz55en2932\",\n                        \"reward\": 1.057063958126376382952e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1rjc3xsu3vgwzgsehn4hhw497e8uta04xshtql8\",\n                        \"reward\": 36660247089033783001,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l6aeqm2aal8cpelqqf8tcg8p8lkhjr8a22vx2s\",\n                        \"reward\": 575909884137998171,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4027208424e+22,\n                        \"delegator-address\": \"one13uwf35xsvrc30ltj8ths2fj8ezgyfl9nw06ksp\",\n                        \"reward\": 400276711242956742516,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yqvd62qgzldqdnghwlkrqfd99j25chs2uwjsqw\",\n                        \"reward\": 54660702752320805840,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.15e+22,\n                        \"delegator-address\": \"one1zhz6gv9yagh8m4vrd52sfvfk9v6amxd3l4rwkh\",\n                        \"reward\": 79233741843455605370,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rpgy3s25vp5c6e7x4l2ux6nepgt9f3vdykuxnt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 28217214163965352126,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.63514419e+23,\n                        \"delegator-address\": \"one1rpf479mp39xkce8dcc5yhp6uc7fwfv9tanfzxf\",\n                        \"reward\": 4.625607589488281533876e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.99e+23,\n                        \"delegator-address\": \"one1utlqplhcygakg7zxn9nersjd4n5ctuhhpmg0mj\",\n                        \"reward\": 45477814132684912596,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1e+21,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.75e+22,\n                        \"delegator-address\": \"one1vdjryhr2z4hh5u9d8jjw8e78qajv046aa3gnh8\",\n                        \"reward\": 10158185982102801179,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5538467053666666e+22,\n                        \"delegator-address\": \"one1t96pv6cd0ua83y7nwzqle22lw444xz9vjfrn99\",\n                        \"reward\": 293825793764805875767,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one168czkaukf5767qrtk32em6vv7fy5pvysy6262a\",\n                        \"reward\": 18909574075099942380,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k2vu3yqd88phpvkdenzaxl4vcv4sp8224ns250\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.014e+23,\n                        \"delegator-address\": \"one1d0qhh5365w6pwrh9tp07g0pzplfq25g2cv0x2a\",\n                        \"reward\": 166484704803748207775,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13wdexsqxsc63jkzd3lsgwrk6z8z2t89fml26f9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0025e+22,\n                        \"delegator-address\": \"one1qn9jwx2mrj7jx3tzls7ejhtc2n8k9r408u53gc\",\n                        \"reward\": 107548780652662995974,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3435232e+23,\n                        \"delegator-address\": \"one1e06chqfzqnthfgt9eqsydzwtx8s0ctj0yrx7lm\",\n                        \"reward\": 2.457128583867970599015e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.0995e+22,\n                        \"delegator-address\": \"one1xqpuaenslevu25j4fvj2ktqqx3jr7yaxmhpt4q\",\n                        \"reward\": 1.481292839977651724918e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.003e+21,\n                        \"delegator-address\": \"one1dxea4w0pa7v9m2ax08frgpmh5x4va5gupqcd4l\",\n                        \"reward\": 5862419683329576734,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.60687368e+22,\n                        \"delegator-address\": \"one1g08cn7gjl64tv4k7de53yzsy0lwldcm5gpejft\",\n                        \"reward\": 293876224079577871407,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one136q778e0jhfaug9f3n8m95wa3p2hyeapm8t7g5\",\n                        \"reward\": 22020824001772549364,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.14e+21,\n                        \"delegator-address\": \"one15mph6hqna53mf5hq22kt2xhhxdt2xk8p32wtgu\",\n                        \"reward\": 29032384113293124585,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1phwljrmmrs2vrwhrqlpjwssq42xrtjt52y3tdh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.432e+21,\n                        \"delegator-address\": \"one1yaq8hgdzqh3mvsu6m7769hga4clxv7l8aqfpxj\",\n                        \"reward\": 1568996961936497655,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17ryjt798l842j5s2zl089w48ckunxm6mxuvnxe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 211317065516589275958,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.98961e+23,\n                        \"delegator-address\": \"one1ez0stf5p2g2zc5tjcwn5e86g6huzzfkw728mth\",\n                        \"reward\": 4.839178165928777673801e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.000000867264e+24,\n                        \"delegator-address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n                        \"reward\": 4.697900903602272136343e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5475199819e+22,\n                        \"delegator-address\": \"one1j64a0p85hwp7ktzqsl2h7jempnw88k0p304ldw\",\n                        \"reward\": 111174269045424862407,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.009e+23,\n                        \"delegator-address\": \"one1sj9z4pw0vxre7avafrd5xckk8t7pf8hx3gq2qj\",\n                        \"reward\": 168611918116239897342,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1c0mmep92nvzgx5ccjt33v7ag2mw59660yj0tjl\",\n                        \"reward\": 868029272170013404819,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zmwukndjhajndq9w3amat73cu47pj9ydv6cc04\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1wnsq5ynpx7vzgekysscrrajz46e4vlek9m2tyd\",\n                        \"reward\": 55211971341642105015,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 932872483531212919,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1knvmmmcgv96zmwj7r9ps8uakwxunuk8deyjy8w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.741e+22,\n                        \"delegator-address\": \"one1vpxnh5ax8sde959gxgnc7ttylzf05xpp0t06ng\",\n                        \"reward\": 646893460719148738120,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.02727e+23,\n                        \"delegator-address\": \"one1yp3mjgnkynvkede4l03g0kgtflusag9kpv2m6t\",\n                        \"reward\": 171918340756059421554,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1v0ha62v8ppctcc8j8hvdtlzxpy5ar5g6e28x9f\",\n                        \"reward\": 32238852312993998190,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 10000000000000000,\n                        \"delegator-address\": \"one1l857204qav0v995p0q2uugp8u0u749rjs2f5hu\",\n                        \"reward\": 108127713574668,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8658193e+22,\n                        \"delegator-address\": \"one1gzuurus05r74a5levdjdffhewsdlvt6nzku33t\",\n                        \"reward\": 168511436635551275913,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one1s5sqy8ufg5pegfzv6j4a5n879udsaasu2u5hdp\",\n                        \"reward\": 1.758457529956701033762e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one1cztf67zxuamhr8mwflualfduhqecummtz3vmzn\",\n                        \"reward\": 36487047917519030844,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.32e+22,\n                        \"delegator-address\": \"one1fk33m6a3rrmvhqtghvy7dsedwz0la7asgkerf7\",\n                        \"reward\": 837269118883018610185,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6e+22,\n                        \"delegator-address\": \"one1ezj0qu6xe084l4d0la726vsqqe9cclhv2xqy59\",\n                        \"reward\": 6090754150462654824,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.9e+22,\n                        \"delegator-address\": \"one1ahxlcwawlalnk35weehcg0rfvv0tgt33ga6058\",\n                        \"reward\": 603218870010912929509,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6186716666666667e+21,\n                        \"delegator-address\": \"one1pzj6mqp82kyjaanep3c28km67mwvdks6jvldrj\",\n                        \"reward\": 6258373207148088299,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7997281861e+22,\n                        \"delegator-address\": \"one1dx4qaajpfygf2q2j3wwyfymrzk8nchkha2lcej\",\n                        \"reward\": 103227479014211550442,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kpc7u5wd0zhqr2q8ulmk7ntplxgr2xpnp93zv5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.66e+22,\n                        \"delegator-address\": \"one1sva3gaekwx57857s0ragz0y0tf0yp00l75lwzh\",\n                        \"reward\": 9422764102818376589,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.00175e+23,\n                        \"delegator-address\": \"one1k44ayu32tpn5v74d4sk9kxdafz4av5t2wrwwkf\",\n                        \"reward\": 787515392736711926290,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.584714932e+23,\n                        \"delegator-address\": \"one12xslkxmwwqv9p6qh87dpdvu4922qc2zavzg8f9\",\n                        \"reward\": 5.556431377976266093458e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.7332860693e+22,\n                        \"delegator-address\": \"one10steweqwvh3gk4cu9v85z53ndjrt0c40e9pfsj\",\n                        \"reward\": 54669853074610688969,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1jyueqracpv9f077n3lux96v9klecpnsq7q844g\",\n                        \"reward\": 15500343774550127563,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m8rlmxtsccgdj86x98jgwhdlsnxlcks96m0ldp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1808049977e+22,\n                        \"delegator-address\": \"one1ppl7w28wynse46evkxp40dfg8ewmxjtty6d689\",\n                        \"reward\": 76133950797624154176,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05778111916e+22,\n                        \"delegator-address\": \"one1d9a7vgsz28g7eavjcnetfkkxa8yga2mu4dc28h\",\n                        \"reward\": 160651643501925834664,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9466e+22,\n                        \"delegator-address\": \"one19dlrqz9483ay5sepgx459c2ag3t5494ny7dttf\",\n                        \"reward\": 48817919170893958035,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t2uhl7z5ra3vfgavhjkuc0egcaweyylem0ndu0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.2104e+22,\n                        \"delegator-address\": \"one10p0v3re5pdrt6nlw0799m9jx3zffaynnt38nft\",\n                        \"reward\": 130840295324872218018,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.7756265962e+22,\n                        \"delegator-address\": \"one1j5tfzmlmazg5hhms6d7x8rsfd5wd7lm8h2zcvd\",\n                        \"reward\": 131742901378329442099,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.047e+23,\n                        \"delegator-address\": \"one1y5wu0flkhrr89x2ad3t7ggjprmqhql0ukg0p2g\",\n                        \"reward\": 1.37678093998755150934e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00180699e+22,\n                        \"delegator-address\": \"one1a9jlxmfyc2fqdg5eqe4dasd0ajmhz6ttwfwzw2\",\n                        \"reward\": 149065287845331269497,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.260967829259e+23,\n                        \"delegator-address\": \"one1nu22hvntcphrllch5pvg5u42q945wjcyn0asa2\",\n                        \"reward\": 824499235683267036661,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+22,\n                        \"delegator-address\": \"one12day5jc36muy6etweyq4j4mkcn5eejr9kvp3jr\",\n                        \"reward\": 16456011111843210849,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.417129289e+21,\n                        \"delegator-address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n                        \"reward\": 12164382266566747208,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.501710995043e+24,\n                        \"delegator-address\": \"one15dmqzz203666yu0gxm4fashdn4mqkh47vmayqp\",\n                        \"reward\": 2.1876338260846379068261e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2165587023e+22,\n                        \"delegator-address\": \"one1574ah72anu3pa65pm3fxyt68c5sy2wf75qpkn7\",\n                        \"reward\": 1182947190338985685,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 10000000001000000,\n                        \"delegator-address\": \"one1kdm0yjhp04le2zctm3yganrvwv2gp8wg2h7she\",\n                        \"reward\": 13470521182667,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.002e+21,\n                        \"delegator-address\": \"one10catae9yz8q743ll68065299kugses38xn7zky\",\n                        \"reward\": 14596743987175857355,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wjrlr8asttn09za4lcq07zs4yf0920xr0amfpw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ehv8z4ry84eh20nucn3svvtya30wxqc6jgerpy\",\n                        \"reward\": 444236795272229041,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4730058771e+22,\n                        \"delegator-address\": \"one1myz5fpmctcqq424u42dkkmrsn8xhg9tsgduyy7\",\n                        \"reward\": 73550872139535194807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19reccwnh02m0mu4af8xzl882haegwc23sk22lt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1r65rv2n79nx6m3en8aqzsd0m9xz3x4a4w465gw\",\n                        \"reward\": 376448006218864252159,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v2z0cfm3y4ax9afnsqm63vqmrq4qzghqnklt57\",\n                        \"reward\": 5357433068642740,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5.39e+21,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.0107291329e+22,\n                        \"delegator-address\": \"one163kgcjkd8k68d272lgprfhz83e24xncczw22xk\",\n                        \"reward\": 144185238302767325347,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8447e+22,\n                        \"delegator-address\": \"one1dkkv9gqdr097e4uuyfnwwnwamfsarw0agaxgen\",\n                        \"reward\": 35399349524861441893,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8865e+22,\n                        \"delegator-address\": \"one1ptals0gsldvgshff7q873xjua8jfltfnuxcejj\",\n                        \"reward\": 35745942155575003426,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.60005484e+22,\n                        \"delegator-address\": \"one1cm7g89x5j0y7f0mges28qtsen92wqr0vqurl5l\",\n                        \"reward\": 12596456604176926536,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kh403xehw0mdr720ym2ya630aqur0h9vylr8wz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u9snf3ertwzrcdpquhfqy0mxv6z32l9apswykh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 10000000000000000,\n                        \"delegator-address\": \"one185vrxu40r46nankzhtkgvhdwjewhfkpqlnkfzj\",\n                        \"reward\": 1973701523354043250,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2494103939e+22,\n                        \"delegator-address\": \"one1sdt5ggjsddp9n7v6qs6j9ctjx8hldjvme2s8m6\",\n                        \"reward\": 42663764317155112690,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.829e+23,\n                        \"delegator-address\": \"one1hwg37qjh06kwfvtk8yq6tv44twv0zex8yaynzk\",\n                        \"reward\": 3.334465846205976720905e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x8kgyyqgslzrm7jrlj4m7rpg285etdywjk7gez\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19w8pthyxs3hvnpy2puu2muxansj6y8zj05t3x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fdw2f8wfkgl2xxn5t70pzaq0409f4lsuj6ytu8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+22,\n                        \"delegator-address\": \"one1gx9mzdu23j9q8a7ffw2rda98jg7enpguqfwykg\",\n                        \"reward\": 171997911936747317437,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.00001359e+22,\n                        \"delegator-address\": \"one13ka8krp6g92dma844n6zyaf3zyzxf4trrzez69\",\n                        \"reward\": 727430890404795438515,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one13tayz72t0egpp5lyfr77wkapdfzdlemgv5uspe\",\n                        \"reward\": 17430886083477569520,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1yrcasnx40ge8v6aesc35an5uqckahsjj93cmhz\",\n                        \"reward\": 1628628570076776415,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vegus4ekc6pjys9rf8krqx2xsva9rf4ed3rdcu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one13gycc88rnzg0fzn8ygq3pkew5s20mf8ajl2sn8\",\n                        \"reward\": 529224344420767532807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.585e+22,\n                        \"delegator-address\": \"one1t9esngd9elsxhkuek8x4zyk95ek3jecmkmpwtl\",\n                        \"reward\": 165896981712372047649,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5928751e+23,\n                        \"delegator-address\": \"one10ahznuhklpw4c6k08747w0wpj5mkjvtnk2sgc3\",\n                        \"reward\": 214213371164914571067,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12hjugeugxs3a4qayzmdpetyrt2h25x3586mwje\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0349e+21,\n                        \"delegator-address\": \"one12wkphqe9cysedrv654vkznjfde3f7hk50zk9d4\",\n                        \"reward\": 5280041349712142230,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.118299e+22,\n                        \"delegator-address\": \"one1hntpg0035xuta9rs9wvnq4c5dt6y9r2fwy03q0\",\n                        \"reward\": 402717796445097196450,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gn6xy4h6kr7q7afgc8xdhuqpmxgm3y8qwjqm9n\",\n                        \"reward\": 23197600765030451573,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00844e+23,\n                        \"delegator-address\": \"one1tnlzwvdc5yc98nfpvun300f2uqd6l5qgmyz46d\",\n                        \"reward\": 285026445315136354525,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qsjfu3gw56znzr0fu3gre64uqyramum554xjag\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1n2nd0uwmdakccvngjjmsgyktwp07zn9jtnrws7\",\n                        \"reward\": 164837234007421536385,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.8967e+23,\n                        \"delegator-address\": \"one1f8qe0v9c3dj25u6p5eskcsv4uaj39enjxn564v\",\n                        \"reward\": 6.214919669392884594976e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.89755976594e+23,\n                        \"delegator-address\": \"one1jzzz2qrwn62vd8p2v4ylkteyey6k9d9mnm3jpt\",\n                        \"reward\": 336244398902008932844,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gwdl55he6nh0n06xuhvkuupnlp28260ccsnn6n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.1043e+22,\n                        \"delegator-address\": \"one1n6awpf8heumwc89sp3lh32spvrfgfxqh0rc2mu\",\n                        \"reward\": 1745875061468897045,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.95998377998e+23,\n                        \"delegator-address\": \"one1xjhs7nygzy644h3z7xx83jpnwdwc0kuhfg6c3l\",\n                        \"reward\": 1.785642448528589304406e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.00482883065e+23,\n                        \"delegator-address\": \"one19hxcnwwprheaksqfcszgays2vdt6wn3tscelja\",\n                        \"reward\": 283824034705686575009,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3181076166e+22,\n                        \"delegator-address\": \"one1ayvfk3rhfu7zs8yyjzvc7vst7fjq7k5c84ugmg\",\n                        \"reward\": 418239159136775068818,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.74e+21,\n                        \"delegator-address\": \"one1ar396g7cs32uchd4lkwhtq0sqj8amtvc66rh32\",\n                        \"reward\": 25948974390404178014,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01098e+24,\n                        \"delegator-address\": \"one1luqxaz8zz2ec3cneqnjdlznfg880zhp2hzgqx7\",\n                        \"reward\": 1.2743149830003529167778e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.665e+23,\n                        \"delegator-address\": \"one1l72m3c54jyr75vvakxau3zthghx76zrwaxa0me\",\n                        \"reward\": 865540743527919320054,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0899e+21,\n                        \"delegator-address\": \"one14f3vml9060fq4s04xylew9he6x8kvsfmuqpwzx\",\n                        \"reward\": 25626854076299865925,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.83e+22,\n                        \"delegator-address\": \"one14st34urqt9ps3rtsq4cqqp7npepxglhe75cp2k\",\n                        \"reward\": 41219967583376547055,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1g7yvlt4m2yw8y49e3dfkdcrxzd0d9z54unjj85\",\n                        \"reward\": 12262239378104113948,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17yn8w3sl28m9fmcsjvsvsn78tjs7pqww2xtyzh\",\n                        \"reward\": 3016320824184238918,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.1111e+22,\n                                \"epoch\": 316\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1nlhvd9av9qhddz2a0ynm4ftgegqe4kw5ax8y3v\",\n                        \"reward\": 13881694367035867264,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9543e+22,\n                        \"delegator-address\": \"one1uyax88rpfr4yqx3thhgp8lzjgxyunljx89qkv0\",\n                        \"reward\": 45913168828584945597,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.55e+22,\n                        \"delegator-address\": \"one1gwpxar3zzg5jhj5vnx0gzd89v00nrvt9deyjvp\",\n                        \"reward\": 5820134099407277208,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7200997288e+22,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 210922746287574571058,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ka8rvmmmw4gale8mmwse2fzp0zqasy99tu2nz6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.805636135e+21,\n                        \"delegator-address\": \"one1vwfplktczvnlt8zht3n35v4za7wez35krwzekg\",\n                        \"reward\": 8548970423561748778,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3376e+22,\n                        \"delegator-address\": \"one1lgsujrall97708zhpxdn5ursnyh3g6ue8gsj3l\",\n                        \"reward\": 409264501483602181496,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1snm00zd3vw927vsxavpnnd0fs4mmv00s9g6nms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jq9dljqxuj4q2eqpgsdkgksghzlayqt8upf700\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18vscrm3qxc0fv0y8yzksfe4vhq2aar47yfr6rk\",\n                        \"reward\": 334849333712028954,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.37742570703e+23,\n                        \"delegator-address\": \"one1zvrc2xsad84pqvhpg0g63gp6g2jcuwjthjrdr2\",\n                        \"reward\": 1.033268449598420043664e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtp6sq0n5szl7xuqsp2ge6d6gh02cpv5zekeul\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y372hk9jsftsgjt9kmqu7jhaadlh00fuezspew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p2hzggpswh8yap9pyqjef9l7vplshfyes78t5h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3808e+22,\n                        \"delegator-address\": \"one18wdjhy5c5qc5gn9vzhjanln8n529gt6ra8jv78\",\n                        \"reward\": 112833776454057914542,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kmc8tch430wh39anme4eskwhwfkjlrcqmz5gel\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tgenysx3y7yqmgj5uew7fezlu86n8eq5tgak5e\",\n                        \"reward\": 469588364304764985,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.431e+21,\n                                \"epoch\": 319\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1lp2qr8pu63t5yx4dxvwfle4ks7l8mqn5r4g3ls\",\n                        \"reward\": 186290958523694931146,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.23014379551e+23,\n                        \"delegator-address\": \"one10t4lxpdrc6pn87a5rsjcsk3e6uw6kkqlen2yfy\",\n                        \"reward\": 231246382882993122825,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one17tprme2qldxn06jfuflf6ywyf0hj8h4pzsezmc\",\n                        \"reward\": 1.208373923198478834105e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ywpz0ax0pghwmvppcqtzdaev3dgtlrjg2zcqwj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.50296e+23,\n                        \"delegator-address\": \"one1k3ck0f5dffgmv45ncfnn74xgdv3nwwcralmetv\",\n                        \"reward\": 730211295851194723808,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0394e+22,\n                        \"delegator-address\": \"one1ctrmcmw2lpkqcvx02a2gzfl9shnf5h3rzt5v3e\",\n                        \"reward\": 115944960626776416163,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18mvmqccm7fzr76pm80el9m92mccnsrqyqes9r4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mfsagrvwsx35v9u0dhatrrdek9sc7r9lpup4ky\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5013e+22,\n                        \"delegator-address\": \"one10vc9cw5gzeenfgxlkm6dnxeygyuzqk0r86yq8z\",\n                        \"reward\": 45297111337981544744,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4367e+22,\n                        \"delegator-address\": \"one1karm9v26gay9pt4awk45f749tqlrwx4zpzmfvq\",\n                        \"reward\": 162791322965435213071,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.249966684e+23,\n                        \"delegator-address\": \"one1vfvg9jnuqhh6ls74mz20qh6h6hsjwmxh4t89fa\",\n                        \"reward\": 390835518802413306185,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.5000011e+24,\n                                \"epoch\": 314\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gef0jlqktwlzyhkwmvswujgflq3y0uy8jazk4q\",\n                        \"reward\": 370141183483724184,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.466e+22,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13lxywjkz4ygqdg7ejy7rjvspexa5zg6tafkc68\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 8.95e+21,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 10000000070000000,\n                        \"delegator-address\": \"one1zzc9avvfvwtexj9rgrfeshjvujysu6ngrqrkav\",\n                        \"reward\": 36768536904400,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 3880131358989743432,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gnnjym5e30wl8n2gfmerypgs0zt3627zk57k25\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.35644e+23,\n                        \"delegator-address\": \"one10y20dp27qqpnvdkqjhwa22c6704ydp7pjjefrq\",\n                        \"reward\": 28288469243929545973,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xy7wez7nlylaqy463637gxm98ecmj02v54vdl0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.085e+22,\n                        \"delegator-address\": \"one1zgafnrra32unvunre267gqh5y3xr4yndxf7tgj\",\n                        \"reward\": 134310868514500256365,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.10200544021e+23,\n                        \"delegator-address\": \"one1mptep9vnx9ln5gzsg2rzsw0mvav33es0s9v9gv\",\n                        \"reward\": 261485922874985313791,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.7e+21,\n                        \"delegator-address\": \"one1agwppcw990gtwma22stqvycklygctlfwzphpq7\",\n                        \"reward\": 22931062828208947380,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.8062475025e+23,\n                        \"delegator-address\": \"one19x784ltvty9yyau22y4xlc5yuq3lqdu0flew7a\",\n                        \"reward\": 563363987717833609169,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 300000000000000000000,\n                        \"delegator-address\": \"one1z46w7d5cqchrj0aa608vdmwze08g7n2ugd692w\",\n                        \"reward\": 6542807984866079109,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 200000000000000000000,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.473e+22,\n                        \"delegator-address\": \"one1ftxkhs98msvf6uz4qmrjqnf2cfy8lnr2q9ec6w\",\n                        \"reward\": 21476370846243012410,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4117508014e+23,\n                        \"delegator-address\": \"one1ll6n09wnuz06gpg7f8dgjdyaqg2zrceqsm5aus\",\n                        \"reward\": 185988496495046544943,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1889hh7sdy4myne4gr7ys5v3ms4anz9az6nzew6\",\n                        \"reward\": 2.132291567119340408609e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n                        \"reward\": 794861846137434054499,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1jxt8k4w70un5exuwe0prnu3wacvlve5dldrr6r\",\n                        \"reward\": 84786196088531403034,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y2fzfuemkafa67n0fsg2636pgxkcswtpadde0w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.136204e+24,\n                        \"delegator-address\": \"one1mtcg96xsulsghsy2zd74c66lfzxhdvmqa87e4h\",\n                        \"reward\": 949634356350951691587,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.2366248e+22,\n                        \"delegator-address\": \"one1y2zg979g78u5hg4jlwzvcvnmcddzm56xl5ywvp\",\n                        \"reward\": 558300545060400466031,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j5mfpn6wdrqck3ykxln0purqspnnkzlluu4603\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2706e+22,\n                        \"delegator-address\": \"one1z5wq66xu2nr6zvydxj6mkztnfxasxfgy3yly9e\",\n                        \"reward\": 74958865870268228686,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.407003e+24,\n                        \"delegator-address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n                        \"reward\": 698703055155697778105,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.048e+22,\n                        \"delegator-address\": \"one17n3zv6jvh2kq2mzyu0grl3q84fasavjgghrmen\",\n                        \"reward\": 111732078117053046106,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.045e+24,\n                        \"delegator-address\": \"one1g3sk53sj00a3n452h0fy5ymvh7nfn3s9nf2hvs\",\n                        \"reward\": 1.5619737398219965182027e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.28e+22,\n                        \"delegator-address\": \"one1luypra9aqm328hne67tf7hn8h9c2sy0s4kvev2\",\n                        \"reward\": 542540248292094885601,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.008e+21,\n                        \"delegator-address\": \"one1smvxmegse8k3ya86mdxe62gwjmadmvqz6q0qwp\",\n                        \"reward\": 10357586558303921009,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0359588e+25,\n                        \"delegator-address\": \"one1a2ym9d8nrayel0dhq62mfahkaawavprts4fdec\",\n                        \"reward\": 2.03166767675324887264022e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16567gt4xugdukhnqpnfzcy6nc4d32j5v49ah9v\",\n                        \"reward\": 7219500494134340,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.5e+21,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 6.27e+21,\n                        \"delegator-address\": \"one1cwgkq4j4d935ukvp43hjz2u3s5p8xnyeesnst9\",\n                        \"reward\": 43289207504513686929,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.215937179701e+24,\n                        \"delegator-address\": \"one1apuealayrtv3xa002m3yr7hwwca8cuny2jg6wy\",\n                        \"reward\": 106124325996721600268,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1dehtnvz7yf6v8d9jj972ytdfd5xg3um9wm2rl9\",\n                        \"reward\": 1.491774047674950069529e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+22,\n                        \"delegator-address\": \"one1m5y8nfpg7fqustgxygqr5djcle055wyj67kshu\",\n                        \"reward\": 17753170312366622681,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.08e+21,\n                        \"delegator-address\": \"one1auvgny38fjnkfpsrcnkdye7t7cd27lswtpxgln\",\n                        \"reward\": 64696238651722146,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.02e+21,\n                        \"delegator-address\": \"one1pe9q4myhu7ydcwx55xzhc3ttfrrg69dyty90nh\",\n                        \"reward\": 24627998364513044841,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.01009995e+22,\n                        \"delegator-address\": \"one1skx4v8wf4jv9v4fsllfdxg4rnw8fj7tkal8p85\",\n                        \"reward\": 422312284589124083035,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00022401e+22,\n                        \"delegator-address\": \"one1w0c6fruyqmhnkr5zswl0r9fgrrwp7chshgsfha\",\n                        \"reward\": 53580362760453784977,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one139ujmnlqdradgs9rmzwtpnk0n5yyxe86quj7pe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.46676e+23,\n                        \"delegator-address\": \"one12z0rnxpk42cyun4lhxy37p5v725860s8f5npzh\",\n                        \"reward\": 948797535002258392725,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.159293924125e+23,\n                        \"delegator-address\": \"one1p2g6rv7hg7hg4agrlutdezcc9vaxjt2ceyz7jw\",\n                        \"reward\": 199862146763958436413,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one1d0w5upanuqxwwkt4eqd0uxa64mhx58xafrmvhl\",\n                        \"reward\": 9.247514250079746495409e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.85072e+24,\n                        \"delegator-address\": \"one1r9v4w9h6l8m7caqw38355myrxadezqusepg9z0\",\n                        \"reward\": 1.0307712062506363593997e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.291e+21,\n                        \"delegator-address\": \"one1ag7qa7tpd0gy2ksjzdrmkrnxtw39a6uv0aemjf\",\n                        \"reward\": 32811497911684406,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+21,\n                        \"delegator-address\": \"one1smwukalcufqlstaa0t48vkaxlykeu8gmhzuf2g\",\n                        \"reward\": 8619892077682946317,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.76766e+23,\n                        \"delegator-address\": \"one160anzdjc5skrfqde0lt5gh7tpeyv5ex2d5nh8e\",\n                        \"reward\": 86660220027300380410,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 64870736716013944,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5.0021e+21,\n                                \"epoch\": 319\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 27259133618357933,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.0028e+21,\n                                \"epoch\": 319\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9e+22,\n                        \"delegator-address\": \"one1wk607xfwee52l90luv295p5ha34wnwhq43utql\",\n                        \"reward\": 90682401845855030019,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4999e+23,\n                        \"delegator-address\": \"one1tsqvpx3zjzf7vht7xl672zue6l9ahrrg3teakf\",\n                        \"reward\": 667369344902287510941,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 433173043318475065,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 3e+22,\n                                \"epoch\": 319\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qgkqpscscfp7frvq6enexlekj6tz4u6r66phy6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05860479e+21,\n                        \"delegator-address\": \"one169mgllpxsz6h5dt5nzgxpy7qtkswll5qade38y\",\n                        \"reward\": 10191150154171787486,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.623e+22,\n                        \"delegator-address\": \"one1k3zd2qsak2qd62vytfhuxz53pheuy84j7myhtw\",\n                        \"reward\": 93166316155733453667,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1724e+23,\n                        \"delegator-address\": \"one14xl659xzvhwn7yj0s9pfjulm8l226zvdzcq8hm\",\n                        \"reward\": 1.077708658545617063151e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3620146e+23,\n                        \"delegator-address\": \"one1eay8y2cweu6yyjjzrm22xz5le496tkg73s98dz\",\n                        \"reward\": 1.855591108013663666682e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16hxl0yxn3wfy8t0nezu8rqlvh9hkfvz4yz7m2t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.93006689949e+23,\n                        \"delegator-address\": \"one1lxp9epmerwwuztcfzm2dfpxu4az429a493rv4q\",\n                        \"reward\": 854474713212227484935,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jyclzpcphec2j2052twr585xjaduaelgf8dmg6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1978t7nzmgh9qwks529wqsye6tz2ll4jvd74g0t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.28901741127e+23,\n                        \"delegator-address\": \"one1e5ajanux2egt3nvz6jsuqdml29fl38dvh0v3qy\",\n                        \"reward\": 1.864517099062687945142e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one16vqd7y7hset6spy7qf2jt4gka3d9d8wyrhfues\",\n                        \"reward\": 266813373383251309923,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8228e+22,\n                        \"delegator-address\": \"one10zp2cx5q2paslqhyna02lzx5dulj6e7q8rlpsp\",\n                        \"reward\": 190634412103356032372,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.13e+21,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 10049970397436438629,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.75e+21,\n                        \"delegator-address\": \"one15svukyn3y8c4e2ldr4tv6mttmtgdr9064mehc9\",\n                        \"reward\": 24457892560131313673,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.141e+22,\n                        \"delegator-address\": \"one1636wc4gkkj2v4pv7mmsyfljr992fy227gyqc82\",\n                        \"reward\": 279353601932264453605,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ldx7y2fmr6q3rmt2krp77nx0gwyjak4hydq3gj\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.9149e+23,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one16kld4j2r6atw7lues7tj36qdd9rd2cumhp4tkq\",\n                        \"reward\": 1602088784939657592,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+23,\n                        \"delegator-address\": \"one1ex9a46773wtsj455lsjykdmn8al6uqalgnlhmz\",\n                        \"reward\": 3.112822689471253566115e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.133e+21,\n                        \"delegator-address\": \"one18wvkm3t793qulfs6y72r7yj5rrwlzgrcycn05h\",\n                        \"reward\": 18970430847548834679,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uxgptktqjl7eppyfjdydfpcuztextqeggu4rnd\",\n                        \"reward\": 935929136520933759,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.4e+22,\n                        \"delegator-address\": \"one1xjq4xf4uhd9fyszvm2aw63j4hvhcddn0aq4hg7\",\n                        \"reward\": 26720603709016181297,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3e+23,\n                        \"delegator-address\": \"one1j8v40e8530fv5a5xvn57cwgxtlggjccl9s46wn\",\n                        \"reward\": 220465821505284115984,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.000000995365e+24,\n                        \"delegator-address\": \"one1tvxurnzczfwq97jethcn5vjqye7ckpvv83cmnl\",\n                        \"reward\": 5.723646574631965395024e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0025e+22,\n                        \"delegator-address\": \"one1nlepur3tkhqejte73t34jgrkphyd7h46nr5sv5\",\n                        \"reward\": 170572700901895291329,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 990000000000000000000,\n                        \"delegator-address\": \"one1jreqzk8w839dajfelwmy8t7vxg3tvkk8we45cw\",\n                        \"reward\": 8432807685037808756,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6508508e+22,\n                        \"delegator-address\": \"one102rjnjv9wv4upjgt9dkfypfp8r7mzcnlnjmfsr\",\n                        \"reward\": 140619265788790694880,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+21,\n                        \"delegator-address\": \"one1ztuftx554sf84a5gvpzap7dcaa72srjy4wzws0\",\n                        \"reward\": 3891852557145589,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.4e+22,\n                        \"delegator-address\": \"one182e3xuum3wg03ta07h9dgmv63j6xl9kpspwzwl\",\n                        \"reward\": 545151203881209605095,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.28117377e+25,\n                        \"delegator-address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n                        \"reward\": 282888529068473430879,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16fzlvw20gxm205hfj25f3jltysxkg2h9mt82su\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fe7g6g0xv4w2tydyr5y40swt3crteyfxfegxcv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1ka4shjasftw2hm6et2m46zeppce2gw5z9dxkg9\",\n                        \"reward\": 408831217320591723157,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.730906e+24,\n                        \"delegator-address\": \"one13gv9shkzs847ayy6ggjxssv9g73jlvydlem2ra\",\n                        \"reward\": 5.290947121782673583746e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333330000000,\n                        \"delegator-address\": \"one15fy3rp6rnfx5em94jsy7se9jmhl6xrczpdtpyd\",\n                        \"reward\": 1372747891,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one14lmmlnhaudnytcqywezdym92wpafmzf09hs8xq\",\n                        \"reward\": 731180791070269021,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0065e+22,\n                        \"delegator-address\": \"one1tlqct9r67j7n52adtl34yhyc2t0tvt7a575zv5\",\n                        \"reward\": 36896385104472927833,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.30004995e+22,\n                        \"delegator-address\": \"one1t9mklzkte2j6qmjav7zx4lq5vnwwcya46mh42s\",\n                        \"reward\": 192625521270339634806,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.70207122e+22,\n                        \"delegator-address\": \"one1zckdqmzxu8vpf3paxmd9q9qsgrneeylrqgharx\",\n                        \"reward\": 446694620085316583787,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4465e+23,\n                        \"delegator-address\": \"one1z2grnzph24x5qg28culxa58jvl5v5d2d35hz25\",\n                        \"reward\": 172664791321643928810,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.84469829e+22,\n                        \"delegator-address\": \"one1q842kkns55se376px4ggzapwut4h6uphdsrcs4\",\n                        \"reward\": 144511839651063873756,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.391e+22,\n                        \"delegator-address\": \"one1y4qmvv69c4yz5j45e44ulfrg3w4skt2vkl88wg\",\n                        \"reward\": 422325608356737736938,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7532e+24,\n                        \"delegator-address\": \"one1p8w55n2c6pgnl68u73thku2dnnx5sywy8j8d04\",\n                        \"reward\": 1.3734395410332610019954e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.22023521975e+23,\n                        \"delegator-address\": \"one1rvurdnqmr8wyrtx4ne9uadh22u7qmg3jjs4drh\",\n                        \"reward\": 44425667162119245565,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zhslw38cjuds22fhfj0pdg54jevn9u8jyz9r33\",\n                        \"reward\": 5212489874992057419,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.8718e+22,\n                                \"epoch\": 316\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1u97te20xm0j4tj554gawe7yzpa5yhlh3086vsj\",\n                        \"reward\": 132622145775474310,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one143xj6yy6wdglazuy5nsgsec5wzhvfmwwvz87me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1603636496e+21,\n                        \"delegator-address\": \"one10fd3e0v2wpfpvgk3umhx2lmhv745cq7xzlrgq6\",\n                        \"reward\": 31175275268313588238,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.676256399e+21,\n                        \"delegator-address\": \"one16t5ev3ehsngmv9u374t3fp7lzx9ln9f28kf4ak\",\n                        \"reward\": 5582199272148816312,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0383e+22,\n                        \"delegator-address\": \"one1afq0zk68xnukkwlcyveffj8s85adtl0fekmuh7\",\n                        \"reward\": 74535429334180235347,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.93e+22,\n                        \"delegator-address\": \"one1nt45u237gqujcnz2lhc2tfdpjy9ncx0qwqlpqc\",\n                        \"reward\": 138547027463129551638,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.817532023694e+24,\n                        \"delegator-address\": \"one1tzu2dc4js8lnkjyz78crdw4z0ruvx9nhhf9yqe\",\n                        \"reward\": 1.142182192351186826293e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1l94nhxwupg537n0de7fspyz0rmw78zq6ady6rr\",\n                        \"reward\": 19060607438780454313,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1833e+22,\n                        \"delegator-address\": \"one17wdddq5yhruk5wvths70m0sfey2c0tn8mv23dd\",\n                        \"reward\": 105970712760721218271,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.40686e+23,\n                        \"delegator-address\": \"one14xfv2jv9fujjkg6t9qt7s2kz0ws290en8ngrsv\",\n                        \"reward\": 968471936300832919849,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k09akcs7peru6djgaj7l7tv5geyh3adatn87hv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.91986298941e+23,\n                        \"delegator-address\": \"one1wh63n2fy3pv9zt5yzw22f5fww5nm06rwxstezj\",\n                        \"reward\": 545398445444193771820,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1phpmaqk8xgq284tzuuucsw2tcnr0t4cae7ypqe\",\n                        \"reward\": 131829524106890974834,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.04516862909e+23,\n                        \"delegator-address\": \"one1twzqd42taqua2r7auwsxzwcrucfwp9uu58tq35\",\n                        \"reward\": 688920414921932083415,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9495e+23,\n                        \"delegator-address\": \"one1nqk7lr0s075tul5nrt04qq58zmx6d7xph760k6\",\n                        \"reward\": 234152383313504084426,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 900000000000000000000,\n                        \"delegator-address\": \"one10zad8mkynw0wsxzqkv4xfjrk2qe7vvfywardkd\",\n                        \"reward\": 5932328584810182062,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.293e+22,\n                        \"delegator-address\": \"one1594yjtg85tmd4u5tfvuuc68kxv6nfp0lkmuh2x\",\n                        \"reward\": 471777630817877834116,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.614e+24,\n                        \"delegator-address\": \"one1mfjq7thmc66x539h5dkemjdk0gzuf9lm9hquyr\",\n                        \"reward\": 4.608287290380948568754e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.7845e+23,\n                        \"delegator-address\": \"one1jhpnl5sfvt0uqltzhfz45e6pu9nfe8sf8mspnx\",\n                        \"reward\": 1.526850497506340523286e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.09236e+23,\n                        \"delegator-address\": \"one12v7lp2qa3y4u7cszumk9p0v4q8zwdclyjv9n3p\",\n                        \"reward\": 104509600848722023926,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1r9m98elzdeljz7exlnc60adftzkk2ug2w8yqgw\",\n                        \"reward\": 63059545906741681795,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yufjhmg62e54lvl849h969acv2we8dsf0aqu2c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9e+23,\n                        \"delegator-address\": \"one1lfsmwkqt0v87675vu7qrmkxwv2vulyzk4jwusp\",\n                        \"reward\": 2.827654219927531141758e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.805202e+22,\n                        \"delegator-address\": \"one1rqpg2xu3l4q5xtdykm0394prmh24kj9jpwrkx2\",\n                        \"reward\": 108160875977142569181,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.999e+21,\n                        \"delegator-address\": \"one16j3cs5ql335ck93287jsnv6cjmwpl39qltvp8m\",\n                        \"reward\": 56907669580644035470,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q6mcd27ne56lfwkp7f8t5aanrgacjcnr68fhhg\",\n                        \"reward\": 1108778099354044910,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12tkl7l6ff7l4e7hhdhmrwc7d8srxm37akqjc4s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.051905223e+22,\n                        \"delegator-address\": \"one1870rta9syx7m8lpqqnxlu9aherka7utlx5hqvt\",\n                        \"reward\": 2681194078311349670,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.218736738639e+24,\n                        \"delegator-address\": \"one1shhxqg956gx43lrrmj8qyrwqrverc40vk7ey0s\",\n                        \"reward\": 1.361466721752672442705e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.2163101334e+22,\n                        \"delegator-address\": \"one1dqee5vv2ntg0ugvu7vrc662knqgde3g6pn9uzy\",\n                        \"reward\": 16264438366661939333,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2e+23,\n                        \"delegator-address\": \"one19ujzps78fdgks72vlqyxndhxj984qcdr56hu92\",\n                        \"reward\": 957064267478142800255,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.012146635328e+23,\n                        \"delegator-address\": \"one15wfkyq4maxpk2nczl9z8uwedfzwq8fl96u7rkf\",\n                        \"reward\": 545818545583091506746,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.53e+24,\n                        \"delegator-address\": \"one1rp0na5wvcaky4n8mgny5uz7jceueh58x358m55\",\n                        \"reward\": 4.36895146212587037142e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.550546119e+24,\n                        \"delegator-address\": \"one1cg5u4k8s0g7zur5xlzcmjctyr2dk0gu6drmgtl\",\n                        \"reward\": 1.2979883924287841665492e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1qnphcphap95jyl2y5dsgxnhmm0lm56fxacvuy4\",\n                        \"reward\": 305343639801586224117,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.48242e+24,\n                        \"delegator-address\": \"one1rxuplvz2qxpqd094hnvfhw5t3qau599hsqc6c2\",\n                        \"reward\": 3.691853647434926530347e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7532372549e+22,\n                        \"delegator-address\": \"one18hzucqky4vlqr8ast34keuedh2q0ngw258tlyj\",\n                        \"reward\": 20329700030964707595,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.49955e+21,\n                        \"delegator-address\": \"one1nqexujfac4ylg93sf5thgc2jg7zzhayt3f3swc\",\n                        \"reward\": 22898482907820422359,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1xj6sfxtx2rvzcz25yrmvte9tdmw0xg0leq84k8\",\n                        \"reward\": 475900391870000336623,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+21,\n                        \"delegator-address\": \"one1jkeh7gtn5utsvl8fplsyxym4h4ue60aenawpeq\",\n                        \"reward\": 5234904310570005325,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tl4d5rescxcndc28t3arc2nrf8gaveenwgehlv\",\n                        \"reward\": 82182581599574437,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.612e+22,\n                        \"delegator-address\": \"one1sx73lw6kzlfzz973zas7dctkykl0udq9vcsvjz\",\n                        \"reward\": 124305182356444872910,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.79e+22,\n                        \"delegator-address\": \"one1ksh54m9jzxuycthazdzwjungq5xzwuc8j4xxut\",\n                        \"reward\": 56436097629309025201,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1q87kfj8jm9wjyrl07zyx7zus5f68ya3p7p2995\",\n                        \"reward\": 29074134541271340504,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0915e+24,\n                        \"delegator-address\": \"one12388896s3c9pkeqcmv46za0gsm46h75pg2tcuq\",\n                        \"reward\": 9.284978746662485993657e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.76598e+22,\n                        \"delegator-address\": \"one14q0r0fr6kzjmfcfvs95jx63sgcj8vfuudarwgv\",\n                        \"reward\": 255974189594458824746,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.037e+22,\n                        \"delegator-address\": \"one1e9pe23rucwums3u0ey8htt6lxdc5zw56evdqtd\",\n                        \"reward\": 46036447335831071381,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.075569691e+23,\n                        \"delegator-address\": \"one16p0t8jmtlej8e88n46tu0yy4atk7ky8pwp6z0x\",\n                        \"reward\": 221773371827496135072,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.92e+23,\n                        \"delegator-address\": \"one1dk3u4rctk9fllz9p2z0ue0k79c23vhf4ahhs64\",\n                        \"reward\": 428609007276977316847,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.44952e+23,\n                        \"delegator-address\": \"one1hy2mkkn4av7mfnwc7gn5ak3trcnq2mrg80297t\",\n                        \"reward\": 203505265124821890255,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1e+21,\n                        \"delegator-address\": \"one18886pfha5x9ds0ucssklqjzmvlwpzsptfy8cwq\",\n                        \"reward\": 2868444042604720412,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.6e+22,\n                        \"delegator-address\": \"one15wg49vvghc0qtwjf3rk5mnggxtd2u4a2njjvd0\",\n                        \"reward\": 338298741784740387912,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.158999982e+23,\n                        \"delegator-address\": \"one1f5k22ufqc9tjufgm593mwujjtfskq6sdhk5taz\",\n                        \"reward\": 511086692017746619305,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.06711943031e+22,\n                        \"delegator-address\": \"one18sj48wr5nayzwue4plwvj25c4qlrfgnr2rkcd3\",\n                        \"reward\": 13571373787567119666,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.57395e+23,\n                        \"delegator-address\": \"one1md0cszpvdr79fygj96udt4uynrqpz8ue5fz363\",\n                        \"reward\": 1.53230416593406403722e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1zq0nv6y07pe3aaterlpyegwjvlk07s9nayxxcf\",\n                        \"reward\": 28179563755323734627,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1klty0kcywwk2mg55nh4y8pqe9396p3qz0uqppu\",\n                        \"reward\": 201052115541247372439,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one13guglgwq58rcpajjwv9nr3gkw2jk08w6k9ajjk\",\n                        \"reward\": 2624876800318171246,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one1z3472px37kn37rkujv5eq0kv353t3secs0dy9e\",\n                        \"reward\": 20968126315071204144,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.45775e+23,\n                        \"delegator-address\": \"one1hp5xxe8m2pzngprk4z4gtryhqgrf8xfp2ncnu2\",\n                        \"reward\": 805583764065955221782,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.99503e+23,\n                        \"delegator-address\": \"one1tu8j8gxpe0q2ezjqrmp52j39lrujkrwhtneemt\",\n                        \"reward\": 645263982223339405623,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.403e+23,\n                        \"delegator-address\": \"one1xlt50wwm353vvgkxymyrrvkgj77u7kqrejvx6r\",\n                        \"reward\": 559848972612389820587,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.984e+21,\n                        \"delegator-address\": \"one1nesgr7cm87zc6q5f9e39wgpp6ce6t0ukt8ptpc\",\n                        \"reward\": 8070258348289642352,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3448e+22,\n                        \"delegator-address\": \"one1nsvfqrgazxwgatc30ulj7mu0e8l9hp5gmqgnpm\",\n                        \"reward\": 67754518381925950087,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8594e+22,\n                        \"delegator-address\": \"one1rxq3mzdchnffd6g7ugwdm6akyjc6zxldgh4jq4\",\n                        \"reward\": 78178602081799998547,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.27345e+23,\n                        \"delegator-address\": \"one1yc9yz3nxxxs6y97h4hh75h08ykkjcjw8hzfrws\",\n                        \"reward\": 257958596727647140379,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7503439686e+22,\n                        \"delegator-address\": \"one19kcmtyr8rah3yk73nmf7del7wdtuyzl090v55l\",\n                        \"reward\": 35456144640995598572,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2635e+21,\n                        \"delegator-address\": \"one1vklxs3pmyteyswtp5d79w7yg2wjtl69jy9ya4f\",\n                        \"reward\": 1379954883196217514,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3875e+22,\n                        \"delegator-address\": \"one1x5ze8zjzttfrpfu9gk6yf2amdk8jgssdjvyh6y\",\n                        \"reward\": 18231893945323568509,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.05751e+23,\n                        \"delegator-address\": \"one1lg0y50az0fql50pfelskv7mquum8z3xznv3z8l\",\n                        \"reward\": 295549654792084166827,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.10063837114815e+24,\n                        \"delegator-address\": \"one1lfuaaaptpgpk89zajufqc2f624kxxxhggj5dme\",\n                        \"reward\": 803173388458475508407,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.605e+23,\n                        \"delegator-address\": \"one193rjfmhvf9yyynu44e82txjzwthz0jfemnszd9\",\n                        \"reward\": 147319448074734586905,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.95471992e+22,\n                        \"delegator-address\": \"one14t9uladn5evzehr9mhtph7jjjs6ednk6achavg\",\n                        \"reward\": 16515723140268451920,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1qwls7g7ecjmr2fdlma0ejf9wumtlhuuvshx8r9\",\n                        \"reward\": 42245753397419008533,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.55550255848e+23,\n                        \"delegator-address\": \"one1v8me68a0vcuk86qcenp7x42uce0382el5snnhn\",\n                        \"reward\": 140875014888952646286,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3780205e+22,\n                        \"delegator-address\": \"one13pe5s2f30svchcqf5vg2ujmmwqvdn2uq9yuzta\",\n                        \"reward\": 3541416319211829695,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2157e+22,\n                        \"delegator-address\": \"one1lfkva4pwfau4ynu6rvkzr82a2edlhg3kwa4lkw\",\n                        \"reward\": 10834054193606706531,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one179msjf4nprp6wg75assrtd5rafmf0rq3hhervz\",\n                        \"reward\": 2569930069408777667,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0158331372e+22,\n                        \"delegator-address\": \"one18cj3m04q7zwk27v2erw3ss5dakyh6xzc0kl8pn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.486e+21,\n                        \"delegator-address\": \"one18fm3ya5y2925q3fn0h5n4nn5qnm8d82v046fnu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Developer of Harmony Analytics (harmony.smartstake.io) & Harmony Analytics Telegram Bot (t.me/HarmonyAnalyticsBot). Tools for all the needs of delegates & validators. Top performance, transparent & professional service. Harmony grant recipient. Support t.me/SmartStake.\",\n                \"identity\": \"Smart Stake\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Smart Stake - top performance, transparent service, analytics tools\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"BigB\",\n                \"update-height\": 5219302,\n                \"website\": \"SmartStake.io\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 101794,\n                    \"current-epoch-signing-percentage\": \"0.999725010312113296\",\n                    \"current-epoch-to-sign\": 101822\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"41037555313550999999999999.999999999999999994\",\n            \"lifetime\": {\n                \"apr\": \"0.116793763085405524\",\n                \"blocks\": {\n                    \"signed\": 17643235,\n                    \"to-sign\": 17648653\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122960957624933157\",\n                        \"epoch\": 288\n                    },\n                    {\n                        \"apr\": \"0.120606338943272920\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.120898563536052848\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121234018990540095\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.121472147763653096\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125589746549825405\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.118534240001089578\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124507371434563919\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123208895210491427\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119224569586970780\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116146698460041625\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.113736911297946214\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115856997093919243\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118325445828658149\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.117614514464392068\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120079076680164337\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118661830247534863\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120597273521074599\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119806899897621650\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121054473941594813\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120765231096610741\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.060504200785666735\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.116243665741015039\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117817553769037650\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116257443975331324\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117210420263057256\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117126596622182408\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117051394176582035\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117836541098736361\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117555911031180794\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.116793763085405524\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 115343,\n                            \"to-sign\": 115367\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114960,\n                            \"to-sign\": 114982\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114997,\n                            \"to-sign\": 115003\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 117209,\n                            \"to-sign\": 117250\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 115049,\n                            \"to-sign\": 115080\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114947,\n                            \"to-sign\": 114989\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 118986,\n                            \"to-sign\": 119014\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 115036,\n                            \"to-sign\": 115052\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114830,\n                            \"to-sign\": 114863\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32,\n                            \"to-sign\": 32\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65987,\n                            \"to-sign\": 65988\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 132936,\n                            \"to-sign\": 132936\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 132206,\n                            \"to-sign\": 132216\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 133932,\n                            \"to-sign\": 133960\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 140285,\n                            \"to-sign\": 140320\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 148167,\n                            \"to-sign\": 148200\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 133730,\n                            \"to-sign\": 133752\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 132250,\n                            \"to-sign\": 132272\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 132428,\n                            \"to-sign\": 132448\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 142578,\n                            \"to-sign\": 142608\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 131777,\n                            \"to-sign\": 131784\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 56,\n                            \"to-sign\": 56\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 132169,\n                            \"to-sign\": 132176\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 137261,\n                            \"to-sign\": 137264\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 141272,\n                            \"to-sign\": 141280\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 135817,\n                            \"to-sign\": 135824\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 141943,\n                            \"to-sign\": 141968\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 142767,\n                            \"to-sign\": 142776\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 143114,\n                            \"to-sign\": 143120\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 154665,\n                            \"to-sign\": 154672\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 2.862721697397568867939648e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.560390576203077529128e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5928b3ae2a2b482b830f1030071a0871f81fb15b2d67ac656e141138b60679454cf9a559f9834d1ae226c8e11ca09786\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.560159648110323225552e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4ff1796bdb8253078163ab11f64186aee7230b682642b0e8eca4c935e7060223084406ce334474b451410131f0120f0a\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.560274346675240657554e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"98ec8e7ba1a44bfaa9051c5dd528d528965ca1ad982a953cba2db9e5ece0eae2719a64dd99572ca6302df2dba3e84906\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.559796081750283880361e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ae4f6380cae8d0ec4d364a8d98bb34d12aca8a42ea9b28925abed150fc991d78a88dce948bb2e79798efe79ab7552516\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.560625603888898207561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3d6a5d62a2277cd465c5c7ff4c3927a537903cf58ace18b9bf025351242043bb9ca76084d593993e05de0d079bf9e00e\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.560737240369061374173e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"989fe76334a392542b04726a3f0088a285a6aa44c7868fbd60dd6b32fd9856f81dfacb2dc0fd4dcc2ad0699e2f3ae302\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.55993170019754800342e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a7f48834e984de758645585d0a481e32044c9f55bfe70119daa63a1605a1c31f66b9dac575ddb9271d7b85848ef6b812\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 4.1037555313551e+25,\n            \"validator\": {\n                \"address\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                \"bls-public-keys\": [\n                    \"3d6a5d62a2277cd465c5c7ff4c3927a537903cf58ace18b9bf025351242043bb9ca76084d593993e05de0d079bf9e00e\",\n                    \"4ff1796bdb8253078163ab11f64186aee7230b682642b0e8eca4c935e7060223084406ce334474b451410131f0120f0a\",\n                    \"98ec8e7ba1a44bfaa9051c5dd528d528965ca1ad982a953cba2db9e5ece0eae2719a64dd99572ca6302df2dba3e84906\",\n                    \"a7f48834e984de758645585d0a481e32044c9f55bfe70119daa63a1605a1c31f66b9dac575ddb9271d7b85848ef6b812\",\n                    \"5928b3ae2a2b482b830f1030071a0871f81fb15b2d67ac656e141138b60679454cf9a559f9834d1ae226c8e11ca09786\",\n                    \"989fe76334a392542b04726a3f0088a285a6aa44c7868fbd60dd6b32fd9856f81dfacb2dc0fd4dcc2ad0699e2f3ae302\",\n                    \"ae4f6380cae8d0ec4d364a8d98bb34d12aca8a42ea9b28925abed150fc991d78a88dce948bb2e79798efe79ab7552516\"\n                ],\n                \"creation-height\": 3361192,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                        \"reward\": 9.7258575644502336103352e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00000516903e+23,\n                        \"delegator-address\": \"one1ucdg2jlyrg3cs22dqe00qxc2xn5nnzvvaz7xu4\",\n                        \"reward\": 165188168931143270184,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 8.4644e+22,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aj2f9ux7cejeh8y8fcrhr7ekqzzw4k8u9gvktd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13gu8fsv5r0pr6gn8umd3eddaxdlw8hgmlm60h3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.85237427421e+23,\n                        \"delegator-address\": \"one1s7c6gmvgf9gr0t9t5695ap9j4rl834sldqpku2\",\n                        \"reward\": 639851964350984097620,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5e+23,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 4e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 2.56623571993589411587731e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 131025073238966638821,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15y6dh6h4xm6lz9h3pf75v5jeekfwswkftr5jj8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fnrlvje767q02th6xgln763xvplw5pswwkj77m\",\n                        \"reward\": 277065576270810914595,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lm8jajxvqn478t7pwvuf80v5raana6c3fr2rzr\",\n                        \"reward\": 295531715317929504928,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eaf67zmhc9sjqn5ag9cjwv3zwpw0shthj6yn43\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00000127106e+23,\n                        \"delegator-address\": \"one1gpu8jhj733u0xtwp9mfh5gfgtyzsy2m4rvfs8z\",\n                        \"reward\": 164229372717459611255,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.9361e+22,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 5.0000104513e+22,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 1.014458879357184173017e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c3t643rmjfgu55e6yw8a887kfs4wdqhkz455t5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4600537631e+22,\n                        \"delegator-address\": \"one1txfj6audejk92m8lm74sj37kdmqlnx7mu9ms3d\",\n                        \"reward\": 382335021456228832877,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ra5f5pnt67wkswycnzcdz7kp5gecs335624yys\",\n                        \"reward\": 212979485396192388070,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qq45q2gkc24kx5w6j6secw968ujftymtyhtssz\",\n                        \"reward\": 360223889850533746,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.43e+22,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 28158572490387012404,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10x2nmfkv89pcfwmjp3h0dat64722xucc2dvl49\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 959165291860126714,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.62316599977e+23,\n                        \"delegator-address\": \"one16s2t56ptfar5cmd3c69a8jhzl04feplyslyszu\",\n                        \"reward\": 3.438712993350498955667e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ypupx7gehlv9vm3p4qxymk48kgwz22qsgkqkym\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9r2qh3fjy3tqtlcc9av3yxqq3rte3mfk45zj7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Blockdaemon is the most battle-tested node provider for 20+ PoS protocols allowing for an easy way to get competitive yields on your staking investments while minimizing risk.\",\n                \"identity\": \"11fe805257b227b856f5d73a35892ac552b8a0a8\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Blockdaemon 🧱👿 Validator\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"support@blockdaemon.com\",\n                \"update-height\": 3361192,\n                \"website\": \"blockdaemon.com/harmony\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1f5ht3hnut3edu6pdehetajuhujg4jxr470u0ps\",\n                \"bls-public-keys\": [\n                    \"2bd39119ae768afbd019dd49ebdd10b5af88ab5cfc80bdd78a00b5c5391c8d55c1dae8a90b8ac79f79b60ace915bbc87\"\n                ],\n                \"creation-height\": 3361199,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ht3hnut3edu6pdehetajuhujg4jxr470u0ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gpu8jhj733u0xtwp9mfh5gfgtyzsy2m4rvfs8z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Blockdaemon's blockchain node management infrastructure simplifies operations and monitoring which helps scale enterprise networks securely. Stake for free on our public validator or run your own dedicated validator node.\",\n                \"identity\": \"k-harmony0\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Blockdaemon 🧱👿 Validator 1\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"support@blockdaemon.com\",\n                \"update-height\": 3361199,\n                \"website\": \"blockdaemon.com/harmony\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 57977,\n                    \"current-epoch-signing-percentage\": \"0.995826176571624871\",\n                    \"current-epoch-to-sign\": 58220\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"25203966134345700000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.119914567504544931\",\n                \"blocks\": {\n                    \"signed\": 10022538,\n                    \"to-sign\": 10104621\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122298525486884761\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.120851784680863110\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124729950340159677\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123046863426561314\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.119780386409886937\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.125523855423955382\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123659291894873928\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.118181804911743824\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117085594797139162\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116460620194689041\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115153761540891959\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117911320689370625\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120622586154508127\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120074165822197387\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.117747112013677111\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119288816819864785\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.121227714839280952\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.122064926186544386\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122143637287896095\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120862969642003642\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120910420886205471\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121773918089828199\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118586709367598609\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119520995074187719\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.120396849825515449\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120230864217363361\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.119665993428578521\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117559129851666849\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.119707381170193962\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119219126697744463\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119914567504544931\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 65580,\n                            \"to-sign\": 65928\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65266,\n                            \"to-sign\": 65696\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65430,\n                            \"to-sign\": 65724\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66628,\n                            \"to-sign\": 67004\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65230,\n                            \"to-sign\": 65792\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65212,\n                            \"to-sign\": 65660\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 67493,\n                            \"to-sign\": 67944\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65166,\n                            \"to-sign\": 65696\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 64901,\n                            \"to-sign\": 65644\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65473,\n                            \"to-sign\": 65824\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65461,\n                            \"to-sign\": 65920\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65853,\n                            \"to-sign\": 66472\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65409,\n                            \"to-sign\": 66104\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66108,\n                            \"to-sign\": 66960\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 69456,\n                            \"to-sign\": 70176\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 73673,\n                            \"to-sign\": 74116\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66181,\n                            \"to-sign\": 66860\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65434,\n                            \"to-sign\": 66140\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65428,\n                            \"to-sign\": 66260\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 70610,\n                            \"to-sign\": 71332\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65251,\n                            \"to-sign\": 65900\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65154,\n                            \"to-sign\": 65992\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65527,\n                            \"to-sign\": 66056\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 67901,\n                            \"to-sign\": 68624\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 69510,\n                            \"to-sign\": 70600\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 67287,\n                            \"to-sign\": 67860\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 70132,\n                            \"to-sign\": 70976\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 70555,\n                            \"to-sign\": 71384\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 70760,\n                            \"to-sign\": 71564\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 76212,\n                            \"to-sign\": 77256\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.73479282085950411651819e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.725904429081871019192e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"67d87257f4ca7bb59c189c5c0d06059054d0796024ec3684b8624cdeb1996628d1bb81a63e23f4cbeef622d70b77b987\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"group-percent\": \"0.006797029192183820\",\n                            \"overall-percent\": \"0.002175049341498822\",\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.729949865278646613344e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"290746460c1101eec00d8d51138309e7767edab00cee8fd6b9a7d5389e77331ec139ef1a57ba79e704db4f60e8c22307\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"group-percent\": \"0.006797029192183820\",\n                            \"overall-percent\": \"0.002175049341498822\",\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.728548290918085628109e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"614e8d1344bff19f5e1a6e7886355beba087cdc0947d2b5ad1eec36caa18325e0585534dd20a37546bf11d44f1e31e13\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"group-percent\": \"0.006797029192183820\",\n                            \"overall-percent\": \"0.002175049341498822\",\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.72484364594786534905e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ff64e929ee6bf37983e13f495437665416c0f6e7862b56c0caa84f932ff48fe68c379e4d483e6088198d25023e949b87\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"group-percent\": \"0.006797029192183820\",\n                            \"overall-percent\": \"0.002175049341498822\",\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 2.52039661343457e+25,\n            \"validator\": {\n                \"address\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                \"bls-public-keys\": [\n                    \"ff64e929ee6bf37983e13f495437665416c0f6e7862b56c0caa84f932ff48fe68c379e4d483e6088198d25023e949b87\",\n                    \"67d87257f4ca7bb59c189c5c0d06059054d0796024ec3684b8624cdeb1996628d1bb81a63e23f4cbeef622d70b77b987\",\n                    \"614e8d1344bff19f5e1a6e7886355beba087cdc0947d2b5ad1eec36caa18325e0585534dd20a37546bf11d44f1e31e13\",\n                    \"290746460c1101eec00d8d51138309e7767edab00cee8fd6b9a7d5389e77331ec139ef1a57ba79e704db4f60e8c22307\"\n                ],\n                \"creation-height\": 3361220,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                        \"reward\": 1.1872686818924529923165e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 63149686760504152366,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.031518e+24,\n                        \"delegator-address\": \"one12xu6ypaapzntuunvru6648xdckrudphsv0pu2y\",\n                        \"reward\": 8.485550541404148920353e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6281083e+25,\n                        \"delegator-address\": \"one1r0y2fawcaynvw7wnzqf036vsv6qzfdnxr9htcr\",\n                        \"reward\": 9.9841322817178727644201e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 5271838260445308113,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10e20lg77vuwse39k3rp86g2s2q80fketsjf7l9\",\n                        \"reward\": 1507427327845521580,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.21699e+23,\n                        \"delegator-address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                        \"reward\": 5.862237401478938032482e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19fumnmg97z9uwwf93ucl88tn64q4wxuytwgrss\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tzjapdswlu93wr0mjul2vggs8x5mqqeelk2pt7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.31331e+23,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 445664953779953302684,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 114485640168194903028,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zf9gchjhtjnk95h6z7cf0duu76wllfmn44mr8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1297267183e+22,\n                        \"delegator-address\": \"one1l8p7ytcsq2c97t75a5er6kqedw0qddgyjpd7eg\",\n                        \"reward\": 539431954724181562400,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.39e+23,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 405863064486226867739,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one13hw3v424sg9utx8jnpdge367wmfgw7y6329mt2\",\n                        \"reward\": 433042095514319207803,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+21,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 13250848941943599051,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one129tz7pglwn6lys2jzjydwzkq6s6yuvpnmy74nf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ju2tg5mcqqz2n2tjq3l8ngfdcu47gg8mwxlus8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hdf03n7fdms7rakkekse7atftnl42vm299pcap\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3903696595705e+24,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 4.681770425147820149441e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q2v8nqnk8gflhscwl7mz2pfmwljk440dd7wjan\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one105nyzvqzrxlfa3h67najs8yr3q0vjmrpwh7d0c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nffxvsrhxn94xpft9eyek7uxrympjgx0szm8ru\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy63k9kp6vgmrl2s4fpw8kmwn4dl96vrdhlpnx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q7frj9luhffqvg9hk0f4kv3xrux32gpcuyz84j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xxwm5efekrd6h4wk3vz2un6ap0tdvq5ctf33vq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.095306492e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 46381180555847143481,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5061569e+23,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 600954693646874890780,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zxucth84p9u4a9zk8f3t0rwvvgrsqgjk4z5f6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hrxguavlwkmrjl6xdeh3hjkk85fsej8kg8nm6l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one126yfkpd2lq4wrc5pw0drrm7u6eyj4lggjvnkc2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9hnyw8demj8n5r8xv5d05j2wlfpzxj52vm4nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.56830001e+22,\n                        \"delegator-address\": \"one1u8mkujs6g0vjwq2kdt6gmqzdla33qppj7lujjc\",\n                        \"reward\": 477712082197241942487,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 191706401405522546,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9r2qh3fjy3tqtlcc9av3yxqq3rte3mfk45zj7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17z53h6m843kn3vqayktwvy4yvaj8wqc6fpthh3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grpk6706ct68pwcqr3vjw60xcuwjkerau7d9ww\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.09895e+23,\n                        \"delegator-address\": \"one1w03wuvm77ujywjes3rejmay8j93udal9kfnv66\",\n                        \"reward\": 1.0698029288148995993662e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14x79dn9qunnputr3n0z3594ve7lla77vc3wjrr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one1g9j07r5kq6rmhtghxwquyf2xps56yhufld5597\",\n                        \"reward\": 97122749541860159527,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1npjcsmeuuxu0zp3mt00ja5puy60swjj40657va\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.17655e+23,\n                        \"delegator-address\": \"one17ygwcrsa4vp5650wrrj80kyt0v4sx3svxxf3x9\",\n                        \"reward\": 1.686131317506691452283e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wrqptxzxkg4h4q898jlclnk866z0n7d9232vgn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f3lldsahvllls785vejr8saun87fcnv20vczlh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cxm88u96tpqr9xzy5gla45e7rft7tfnyftk4gk\",\n                        \"reward\": 100893267515279178,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1489m7zqf3n9gn5axtal3umf8qx2jq3zj7ljrjc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+21,\n                        \"delegator-address\": \"one10c2ldg24fsrxhq54pys63sh8mfr5gjw50fa7qp\",\n                        \"reward\": 40649836220777644320,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 200000000000,\n                        \"delegator-address\": \"one1fc0jllw4tztz83x3dp6sncav8dmh5wxnhq3axx\",\n                        \"reward\": 3329549560241265392,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+21,\n                        \"delegator-address\": \"one1j635m9hx6dzqfey0wlfhxklh8xf25jn6acukl0\",\n                        \"reward\": 23265269913416380363,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one158p7lac9hay7ktsmw5mr5umf947krtnwglw2q9\",\n                        \"reward\": 37224431861466113777,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 971015832287009354,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3e+23,\n                        \"delegator-address\": \"one12cwc8q4r2c6wl6a797ksxgc0njs8j4yshavkky\",\n                        \"reward\": 2.006982999744199115021e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.533e+22,\n                        \"delegator-address\": \"one1ul265qs7zvxj2e9kpfvlnju4tvky5g6dz7skjh\",\n                        \"reward\": 39410644628254241191,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8973211e+22,\n                        \"delegator-address\": \"one13mrw9tfyjeyxllm2v4f59hxvu30mjf7vq6nyqh\",\n                        \"reward\": 294866455528309016812,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.2403e+22,\n                        \"delegator-address\": \"one19qr7ware0feld3xcvjt9t2zxdx2mapdf0z3n5k\",\n                        \"reward\": 75695653601335184823,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0268e+22,\n                        \"delegator-address\": \"one13gnpvmhvla85v30qmuyzzk63xcvkm0uqgpwylp\",\n                        \"reward\": 15312051599545967836,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"50 slots backup, Anytime according to the vote expand your profits. The professional PoS team operation and management. 50个slot备选节点，根据投票数自动化调整slot，随时放大你的收益，专业的PoS节点运维管理。\",\n                \"identity\": \"FAB46CEEAEAB9FA1\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Bit Cat🐱 - SAFE STABLE LONG-TERM LOW RATES 🚀🚀🚀\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"https://t.me/joinchat/LBbAfRU0nlwushyr9sfJAQ\",\n                \"update-height\": 3375103,\n                \"website\": \"https://www.bitcat365.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 203353,\n                    \"current-epoch-signing-percentage\": \"0.999189260900755707\",\n                    \"current-epoch-to-sign\": 203518\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"81445133000000000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.115866039478544400\",\n                \"blocks\": {\n                    \"signed\": 27526862,\n                    \"to-sign\": 27818211\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121305433953406963\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123496019996023955\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125057088114526427\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123334508713916704\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120393366702240607\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121650298294735642\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121041793165162322\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.113843816662302308\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118598632950915812\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116034821703247252\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117185541066866008\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116200247285618693\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118732431475355241\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119314654103609100\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120229105916329106\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116886081728312403\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117447069437761384\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120072608353304255\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118019864496813268\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.117907685935466706\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.115439436939106441\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.107437085886314612\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116211645492638441\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.115916595184020160\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116406381729016154\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116473488050484841\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116398257792513690\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114460574668659439\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115611472431486130\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115345490010360903\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115866039478544400\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 230453,\n                            \"to-sign\": 230650\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229632,\n                            \"to-sign\": 229852\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229422,\n                            \"to-sign\": 230006\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 234101,\n                            \"to-sign\": 234472\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229610,\n                            \"to-sign\": 230160\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229275,\n                            \"to-sign\": 229824\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 237634,\n                            \"to-sign\": 238000\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229819,\n                            \"to-sign\": 230062\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229334,\n                            \"to-sign\": 229824\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 211906,\n                            \"to-sign\": 230370\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 227720,\n                            \"to-sign\": 230188\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 231110,\n                            \"to-sign\": 232652\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 230774,\n                            \"to-sign\": 231392\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 234036,\n                            \"to-sign\": 234444\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 242742,\n                            \"to-sign\": 245266\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 257980,\n                            \"to-sign\": 259084\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 233008,\n                            \"to-sign\": 233842\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 230457,\n                            \"to-sign\": 231378\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 230941,\n                            \"to-sign\": 231896\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 248543,\n                            \"to-sign\": 249494\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 230173,\n                            \"to-sign\": 230734\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229463,\n                            \"to-sign\": 231070\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 230000,\n                            \"to-sign\": 231392\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 224322,\n                            \"to-sign\": 240282\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 247034,\n                            \"to-sign\": 247212\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 237446,\n                            \"to-sign\": 237706\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245593,\n                            \"to-sign\": 248444\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 249136,\n                            \"to-sign\": 249718\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 250200,\n                            \"to-sign\": 250474\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 269360,\n                            \"to-sign\": 270466\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 3.991683183551948720005744e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.555697644451031859809e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fab871dc783e065e26ac13a8a5576418d714926d83325d8f8c72e975cd74f894b00a31ff18c0c7d20aa094dac1006d01\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555484033778617815799e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"aef0ce484fcec7227492e55a8d311172cca44bb40d657c44c984a709b0302211761e0f109b4a65d2ee9a8a88fc928595\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555592330912013864528e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bd2701b5690c0dc0f98308c62cc9fe3327fb1d9b4f18b9252d6d755930e111a8d75cc2f8cc9c47794f40970721c65585\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555672909653955325368e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c4e22e2edf12fc844d1dac366bf591a43d139a74c0c5d32a8995267415d0aa6a29054b557d6a6b5d1726bd8f8c22b395\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555011219532193618393e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"15c99e1fc798e09fc83add271955e04b8d9e21628ec091a1ad7cd128a6a406852526196e4b64d7a9345b17c1f139bd91\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.554797587565009281119e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a2526ddd0b30d2daff78d2242eff48f8c56ae572f5170df94b18dc86adf01d8f66ab3b6a2e834a3fc9e62b2420e79285\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.556041247471700247918e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ede3a3edb3469c8ab63665cac359af0051956f1c6a036d88c26bdb09885e9dee66f3fc0a78530f948dbfed1a72abca85\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555205247448492236753e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4433b28696fe69b4bc8c10ff24e0f1ba918f526ed9f3b9e90c616305d7c35038be656936ffe9186c009bead57cae9509\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.554537583292652492965e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"77ebe15da9054374ec1614ae5aa40acfde825e2b64a6e3f1e0522db9e33f398c8a33ef8a982f3743dfabe4130c22a319\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.556144667560212169881e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d960c67e552dc2c73ee0679cbd3bf501704a001fe5b14ff565d4abc820fe433856f4cacd605e89670dd418d9db160c91\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.554439678574740698465e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"80e43b7381b0d2405b44a6a6293a5174fe4ef3e32b26a10c4af20e213d6ae17d778eb54e7129f5ac69343eac40fc1b95\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.556155811206659067585e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f8162589f9d7075f720e92448b7ba37068d47c55445916a7d7ea87678e1e047de12acf4126eac6b740fdd26a0c25a00d\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.554936142364899779772e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"aed665af6870561fcb0054832e35fa773a2d8b82b6ed7bed0500c5e7c1015a5a6325042d5e8ef954ad5d45c467055601\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555566919499542579111e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ffc25ae925ff32957eb357fb33f39426d046487fbdc6c104b5ee2c57d967619449c2e15e3785ad58cbaf46adcd068105\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.1446133e+25,\n            \"validator\": {\n                \"address\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                \"bls-public-keys\": [\n                    \"80e43b7381b0d2405b44a6a6293a5174fe4ef3e32b26a10c4af20e213d6ae17d778eb54e7129f5ac69343eac40fc1b95\",\n                    \"77ebe15da9054374ec1614ae5aa40acfde825e2b64a6e3f1e0522db9e33f398c8a33ef8a982f3743dfabe4130c22a319\",\n                    \"a2526ddd0b30d2daff78d2242eff48f8c56ae572f5170df94b18dc86adf01d8f66ab3b6a2e834a3fc9e62b2420e79285\",\n                    \"aed665af6870561fcb0054832e35fa773a2d8b82b6ed7bed0500c5e7c1015a5a6325042d5e8ef954ad5d45c467055601\",\n                    \"aef0ce484fcec7227492e55a8d311172cca44bb40d657c44c984a709b0302211761e0f109b4a65d2ee9a8a88fc928595\",\n                    \"bd2701b5690c0dc0f98308c62cc9fe3327fb1d9b4f18b9252d6d755930e111a8d75cc2f8cc9c47794f40970721c65585\",\n                    \"d960c67e552dc2c73ee0679cbd3bf501704a001fe5b14ff565d4abc820fe433856f4cacd605e89670dd418d9db160c91\",\n                    \"ede3a3edb3469c8ab63665cac359af0051956f1c6a036d88c26bdb09885e9dee66f3fc0a78530f948dbfed1a72abca85\",\n                    \"4433b28696fe69b4bc8c10ff24e0f1ba918f526ed9f3b9e90c616305d7c35038be656936ffe9186c009bead57cae9509\",\n                    \"15c99e1fc798e09fc83add271955e04b8d9e21628ec091a1ad7cd128a6a406852526196e4b64d7a9345b17c1f139bd91\",\n                    \"f8162589f9d7075f720e92448b7ba37068d47c55445916a7d7ea87678e1e047de12acf4126eac6b740fdd26a0c25a00d\",\n                    \"fab871dc783e065e26ac13a8a5576418d714926d83325d8f8c72e975cd74f894b00a31ff18c0c7d20aa094dac1006d01\",\n                    \"ffc25ae925ff32957eb357fb33f39426d046487fbdc6c104b5ee2c57d967619449c2e15e3785ad58cbaf46adcd068105\",\n                    \"c4e22e2edf12fc844d1dac366bf591a43d139a74c0c5d32a8995267415d0aa6a29054b557d6a6b5d1726bd8f8c22b395\"\n                ],\n                \"creation-height\": 3361462,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.444133e+24,\n                        \"delegator-address\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                        \"reward\": 1.8570813484952466508194e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 5.93160462739443090083891e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 4935670304323262220,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhsvtu2hppmhxemycxr0kujwlgefwn7lu09vwp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"欢迎大家来中国·杭州玩. Welcome to Hangzhou, China\",\n                \"identity\": \"HAODI\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 3e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"三潭映月 (high stability 99.7%, low fee rate 5%)\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 4995639,\n                \"website\": \"https://www.mainto.cn\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one10zn27a4vnywuufece29d4nwl8j78cz3r5cgupg\",\n                \"bls-public-keys\": [\n                    \"8ad9ee968aeeaec41d5b675e51d24f73354dc59d27812215f2f61cff685137d7e23a76e031aae5f3b992f1733c511908\"\n                ],\n                \"creation-height\": 3361476,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one10zn27a4vnywuufece29d4nwl8j78cz3r5cgupg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"li@harmony.one\",\n                \"identity\": \"“li@harmony.one”\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"“li”\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"li@harmony.one\",\n                \"update-height\": 3361476,\n                \"website\": \"“Harmony.one”\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.353909308140927726\",\n                \"blocks\": {\n                    \"signed\": 103371,\n                    \"to-sign\": 103920\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.789452865733323489\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.109954854097222805\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.674546772006195555\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.402566021207695876\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.353909308140927726\",\n                        \"epoch\": 191\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 3.2766275178270738565076e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1c6m2w8t0p3de3cjleu2t2duvspas6366jtf8da\",\n                \"bls-public-keys\": [\n                    \"47ab7b7cbbc5b95ddab000c5d2643aaf9f916d776bd4adb05e509add43d54579f69e3e5898df5dd15a4332112c1b3d87\"\n                ],\n                \"creation-height\": 3361511,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1c6m2w8t0p3de3cjleu2t2duvspas6366jtf8da\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0sy6uju6s3p54c7xpgrnxsztke3jjv5shsa2p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3q2qrmxh6d5j9jrn0q0d45wnn4tgfqrvvql34\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Private validator, a Foundation Nodes program member and an early investor to Harmony\",\n                \"identity\": \"Aurora--2286455933564097969\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Algorithmiq Ventures Validator Node - Aurora\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"petr.koutny@alventu.com\",\n                \"update-height\": 3391363,\n                \"website\": \"https://www.linkedin.com/in/petr-koutny/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1c6z6fje63g8thv0fsm0wkwar5f80usdctwy04n\",\n                \"bls-public-keys\": [\n                    \"25adf6bc68d92bddf4069f3ff0ae4791dc0393328a8f8a7efae226ef2fcaaca0bff2a3b01de6dc670726c37c1a02ce84\"\n                ],\n                \"creation-height\": 3361546,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6z6fje63g8thv0fsm0wkwar5f80usdctwy04n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Hi, many thanks to you who delegate to me, but looks like our stake is very small comparing other, and I think my node can never be elected. I am sorry, but please undelegate your stake, and delegete to other node so you can start earning rewards. 🙏 \",\n                \"identity\": \"Bitoven\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Bitoven\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"bitoven@protonmail.com\",\n                \"update-height\": 3361546,\n                \"website\": \"https://bitoven.me/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 216838,\n                    \"current-epoch-signing-percentage\": \"0.997093852025566745\",\n                    \"current-epoch-to-sign\": 217470\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"80414372329646650793799999.999999999999999990\",\n            \"lifetime\": {\n                \"apr\": \"0.115104442632753028\",\n                \"blocks\": {\n                    \"signed\": 22395082,\n                    \"to-sign\": 22630752\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.110360233113267846\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.103904100775182225\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.100725483713184826\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.099200529257073597\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.101519548982235748\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.107496180917564616\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122140992392536885\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.116413522938468432\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121201524195033515\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118428402304100109\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125597516778739646\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114099568194124456\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120617059616516635\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.122092805321756369\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.123857812337993307\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.113452201123345314\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117938733253226743\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119311452096797375\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122599907720597890\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121483429509623039\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.123653684338910599\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121182622159575796\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122982803391768683\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122532170485476508\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118669488524135375\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121562559473045147\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120990229219547419\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.120777542362710423\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122302872382513238\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120808698584950310\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115104442632753028\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 235691,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245437,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245341,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245180,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245209,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245205,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244815,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245459,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245627,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245471,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244905,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244734,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244722,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 243916,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244503,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 243994,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244654,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244865,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244781,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244594,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244980,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245004,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244677,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 243779,\n                            \"to-sign\": 245760\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244117,\n                            \"to-sign\": 245752\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163214,\n                            \"to-sign\": 180224\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163034,\n                            \"to-sign\": 180224\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163475,\n                            \"to-sign\": 180224\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163156,\n                            \"to-sign\": 180224\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 171333,\n                            \"to-sign\": 180224\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 3.728868818056793370441908e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.461955478689831907746e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ddf5bfb62d7d7065634220828ffbbc4340a121c477e5a0ce558200f5216279be8b1788d78b427ea1a819fe37ad92d388\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462073295854713982148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"375347947f93314b12b13ccfdc8b6f95651459e99b42deee0e3855ee94294c4f3bb5be3f87c034e859514e3f3dbca988\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461570812240477853816e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ab9098928a35c724dc2b11be0eacb6bc86a4613b069ff6396415f6a10e6265b710394d9077db7070945d45cec7fac484\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461786362414337748728e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"33a3d789c0ae207be83019bc6211f8d0f4b2351d4227abc5b2c63a8bd079a19389936556f1cb750debc32b7b024e650c\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.46195837517848899575e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1737cd597cd9aba25154b71ea5281aaec3c4f89920548a1af8eaff6e4f2cc1e60613bc3666ab5befed3a90b5c5ca5d10\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461845492279962801416e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"385cd756a60348191576404ef8e60817225160c5806ed54c9997286b55e6526dc304c6f0f92084e31ecff8cde36b7d10\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461673820247246103896e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"382cb200d415c25b527e6fe2772c093de9af6fdecf596aa03a35026f2766f550b5a16be316aee427341214f1b7d3b00c\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461786362414337748728e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"304254dd9e216f9014bdb75e7acdf17760b7b3a70bf2e7da751728f8ca66f3bad26c971c8775803d0d2a80bd84402e94\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.46156198272326178206e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dc277e5aa25ebc0a9092f514964338e66048fd3c952a3652b8aa64c8dfbfd2024a43070cd07c6bcd5682375ec4c0b898\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461786362414337748728e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"67449764648f0ba4ba0f7d689278fb36a3f81d2c65432a9372ca75957aec3a456b35c89315fc9dff46e31cf257beac98\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461788323545540773848e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"70c68e596625ec8804d6e6b43f8c1964adb674b5bf897582201714bfc309b6fa67915390ccf382f8cd58a4c851111388\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461786362414337748728e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"59d956935972502209c7c3ca629227cc13beb7b53f9be02bec04d35e7a2165144d0fca23293f60c3d15c3ab178e1a804\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.46189633841603704146e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7c07906423d06c8b4f3d30a1b139e29880cc7b1a39e150919308d8b321985740fc0a2af4b85cb17685442241cad34d88\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461845492279962801416e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a330d62e144606695d5fe66385a0120cecb3e5ab71cc33c0e1e4a034cc37e1156f12a34f3c91158638618589804ccc80\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.46156390643474913503e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"86bc72330c7698f2e439a3fdbd0c2ee4cdbbd1a5ec862bd57933e0fb228f8089548f94877b305a16d3e24610e8c4da18\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.04143723296466507938e+25,\n            \"validator\": {\n                \"address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                \"bls-public-keys\": [\n                    \"304254dd9e216f9014bdb75e7acdf17760b7b3a70bf2e7da751728f8ca66f3bad26c971c8775803d0d2a80bd84402e94\",\n                    \"67449764648f0ba4ba0f7d689278fb36a3f81d2c65432a9372ca75957aec3a456b35c89315fc9dff46e31cf257beac98\",\n                    \"7c07906423d06c8b4f3d30a1b139e29880cc7b1a39e150919308d8b321985740fc0a2af4b85cb17685442241cad34d88\",\n                    \"59d956935972502209c7c3ca629227cc13beb7b53f9be02bec04d35e7a2165144d0fca23293f60c3d15c3ab178e1a804\",\n                    \"33a3d789c0ae207be83019bc6211f8d0f4b2351d4227abc5b2c63a8bd079a19389936556f1cb750debc32b7b024e650c\",\n                    \"86bc72330c7698f2e439a3fdbd0c2ee4cdbbd1a5ec862bd57933e0fb228f8089548f94877b305a16d3e24610e8c4da18\",\n                    \"70c68e596625ec8804d6e6b43f8c1964adb674b5bf897582201714bfc309b6fa67915390ccf382f8cd58a4c851111388\",\n                    \"ab9098928a35c724dc2b11be0eacb6bc86a4613b069ff6396415f6a10e6265b710394d9077db7070945d45cec7fac484\",\n                    \"dc277e5aa25ebc0a9092f514964338e66048fd3c952a3652b8aa64c8dfbfd2024a43070cd07c6bcd5682375ec4c0b898\",\n                    \"382cb200d415c25b527e6fe2772c093de9af6fdecf596aa03a35026f2766f550b5a16be316aee427341214f1b7d3b00c\",\n                    \"385cd756a60348191576404ef8e60817225160c5806ed54c9997286b55e6526dc304c6f0f92084e31ecff8cde36b7d10\",\n                    \"1737cd597cd9aba25154b71ea5281aaec3c4f89920548a1af8eaff6e4f2cc1e60613bc3666ab5befed3a90b5c5ca5d10\",\n                    \"ddf5bfb62d7d7065634220828ffbbc4340a121c477e5a0ce558200f5216279be8b1788d78b427ea1a819fe37ad92d388\",\n                    \"a330d62e144606695d5fe66385a0120cecb3e5ab71cc33c0e1e4a034cc37e1156f12a34f3c91158638618589804ccc80\",\n                    \"375347947f93314b12b13ccfdc8b6f95651459e99b42deee0e3855ee94294c4f3bb5be3f87c034e859514e3f3dbca988\"\n                ],\n                \"creation-height\": 3361577,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.1708e+22,\n                        \"delegator-address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                        \"reward\": 1.3572207096368295763414e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yv760p0j0mdjs9y30puj9felcvz4sspz8aja7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12vq79k6nwv475khc7mmp83786wrlgslj0zllgs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r0uhfdksp5xwvsg9yzgugz3n2ucc4re4kj8s8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one13eec5h4k6xw5h8up4duqzpvsdtcrypnekqjnhy\",\n                        \"reward\": 1827973172491318990,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e504ehgs8n3llhs2g8jc7zukcjp4kscduh0hwr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1shtfgjgu099ygdkas8gp6akje3xnf6kw35xeh5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rsswq9k7yq47mv7mrpc28ngq7mrn0xhnhe7mgk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 6.31587908763882473554003e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ekqjas85d6d9axn9mapgr3dr9c5kc503qcsdkd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.23942e+23,\n                        \"delegator-address\": \"one1j0nmr445gf35lskevtac7khtudt5vah27af2c9\",\n                        \"reward\": 134830254041479297932,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7e+22,\n                        \"delegator-address\": \"one1kt957tv5v6h3ez45zpvwyyu59c2ej9dx0285qw\",\n                        \"reward\": 25670360035315536338,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6xz73724nja8cn2c2d2gun2n5nenyr7da8r64\",\n                        \"reward\": 3274008894155041709,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 7723621474175270463,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l8p7ytcsq2c97t75a5er6kqedw0qddgyjpd7eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1rztveplnzzx5q2za6aucxlckqsek65juvlq73w\",\n                        \"reward\": 9083146428955835482,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.000107424e+21,\n                        \"delegator-address\": \"one1jfswdzr7cruvpyp2t2ed5znun6uvku7ynqzq22\",\n                        \"reward\": 164992774787991015116,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2222222222222223e+21,\n                        \"delegator-address\": \"one167hy5watz30yev6pdw4wn672puf9pwxadm080p\",\n                        \"reward\": 44490086851279838654,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n2yfzq0py7wkar3sudx2tjnjwl2yl0k8gekt52\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9hnyw8demj8n5r8xv5d05j2wlfpzxj52vm4nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hrxguavlwkmrjl6xdeh3hjkk85fsej8kg8nm6l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one135lhy9rv4ulw2tfvv6l3h95mn5r420n2rdsvt5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one10utt7kd7jnjmcyq50an7d32jr5exdfzdps39lm\",\n                        \"reward\": 36997117653471113069,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.15e+22,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 95367980107914675840,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one17efjyng3k8yvm6ssmaxlv36l9r8ua28y0cuxp6\",\n                        \"reward\": 24837939031196377911,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12nr92s52lclc6cuk2w6cenrfwqam98v20007fn\",\n                        \"reward\": 345767981731309760,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 428571500000,\n                        \"delegator-address\": \"one1ykqgnpeqln4kzhgsseu6qg790655x562064wmc\",\n                        \"reward\": 5901708223,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one1xwzad7aha0h77hulz0uc7uzmsqrjl858xj9h45\",\n                        \"reward\": 37575571097032095527,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qqdmjnudt3paa0jmuyvcwwqzx6d7hxq509eenu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Hobbist Blockchain Enthusiast. Running Harmony FN since testnet. Hosted on AWS Dual CPU 7GB RAM. High uptime. Low fees. Follow me on twitter @TBD_investments for any changes before each epoch. Stake with me\",\n                \"identity\": \"BC\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"TBD Investments\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"bucket@yldkard.com\",\n                \"update-height\": 3473326,\n                \"website\": \"https://bit.ly/36bj0TK\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 57974,\n                    \"current-epoch-signing-percentage\": \"0.995774647887323944\",\n                    \"current-epoch-to-sign\": 58220\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"22025555040874800000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.119837123015291018\",\n                \"blocks\": {\n                    \"signed\": 5336249,\n                    \"to-sign\": 5690820\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.110706014674876217\",\n                        \"epoch\": 275\n                    },\n                    {\n                        \"apr\": \"0.102120331228315918\",\n                        \"epoch\": 276\n                    },\n                    {\n                        \"apr\": \"0.110390728714853803\",\n                        \"epoch\": 277\n                    },\n                    {\n                        \"apr\": \"0.113467596085996412\",\n                        \"epoch\": 278\n                    },\n                    {\n                        \"apr\": \"0.119898830098794728\",\n                        \"epoch\": 279\n                    },\n                    {\n                        \"apr\": \"0.115139639418660707\",\n                        \"epoch\": 280\n                    },\n                    {\n                        \"apr\": \"0.117543946103908045\",\n                        \"epoch\": 281\n                    },\n                    {\n                        \"apr\": \"0.107450198926622941\",\n                        \"epoch\": 282\n                    },\n                    {\n                        \"apr\": \"0.063453871821446323\",\n                        \"epoch\": 283\n                    },\n                    {\n                        \"apr\": \"0.120658922033155985\",\n                        \"epoch\": 287\n                    },\n                    {\n                        \"apr\": \"0.113897884954279373\",\n                        \"epoch\": 288\n                    },\n                    {\n                        \"apr\": \"0.100860985544677955\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.122924166860778089\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122125078802158466\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.116842694655447111\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.052434122003270922\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.051788033974064543\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.088792095770286579\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.086208130015737792\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.079973494369258898\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.118974653653677451\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119929985520719967\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117142549713903767\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120348027380187867\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.115372434139418812\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.116068368963688542\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.063092173169428713\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.118194911171771723\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118552654148891216\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119224197868619422\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119837123015291018\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 65541,\n                            \"to-sign\": 65928\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65266,\n                            \"to-sign\": 65696\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 64807,\n                            \"to-sign\": 65724\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66967,\n                            \"to-sign\": 66972\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 36\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34573,\n                            \"to-sign\": 65920\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 63282,\n                            \"to-sign\": 66472\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 61887,\n                            \"to-sign\": 66104\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65220,\n                            \"to-sign\": 66960\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 67161,\n                            \"to-sign\": 70176\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 74052,\n                            \"to-sign\": 74116\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66832,\n                            \"to-sign\": 66832\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 24,\n                            \"to-sign\": 28\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 43744,\n                            \"to-sign\": 66260\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51999,\n                            \"to-sign\": 71332\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50595,\n                            \"to-sign\": 65868\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 32\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 30186,\n                            \"to-sign\": 68576\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 10,\n                            \"to-sign\": 65\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 37410,\n                            \"to-sign\": 89230\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83030,\n                            \"to-sign\": 89455\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 96233,\n                            \"to-sign\": 96570\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 7.68288047407414144968488e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.509481636451469247097e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9d5f3a3464b1cd835417837400af8b31bdd9e47de11cb131c4f7024a52df8329074b11d54296d8ba26d57fe7b0bf9197\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"group-percent\": \"0.005939872311717973\",\n                            \"overall-percent\": \"0.001900759139749751\",\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.510531214963530691093e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"847ba7e5422187c2c0e594efa31840d117641d9a156ffc076d9194ab71f7ce95b59f2c00a822312da60f39f2d6437583\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"group-percent\": \"0.005939872311717973\",\n                            \"overall-percent\": \"0.001900759139749751\",\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.508042409420263305463e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fa39249e9fdc2c7d2f05134ae3767ad2422b6796b56c0e1e1b64a170d5ffa90778736a403732c37e701cc6306d4a0e97\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"group-percent\": \"0.005939872311717973\",\n                            \"overall-percent\": \"0.001900759139749751\",\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.509551047635142980117e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a47dfdc18f6118de254649ef09c356372eb8b34939c10e8f32cbe17363d01fa7694f0ca409de478c21233b3402f0638f\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"group-percent\": \"0.005939872311717973\",\n                            \"overall-percent\": \"0.001900759139749751\",\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 2.20280235403198e+25,\n            \"validator\": {\n                \"address\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                \"bls-public-keys\": [\n                    \"847ba7e5422187c2c0e594efa31840d117641d9a156ffc076d9194ab71f7ce95b59f2c00a822312da60f39f2d6437583\",\n                    \"a47dfdc18f6118de254649ef09c356372eb8b34939c10e8f32cbe17363d01fa7694f0ca409de478c21233b3402f0638f\",\n                    \"9d5f3a3464b1cd835417837400af8b31bdd9e47de11cb131c4f7024a52df8329074b11d54296d8ba26d57fe7b0bf9197\",\n                    \"fa39249e9fdc2c7d2f05134ae3767ad2422b6796b56c0e1e1b64a170d5ffa90778736a403732c37e701cc6306d4a0e97\"\n                ],\n                \"creation-height\": 3361603,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.906455e+24,\n                        \"delegator-address\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                        \"reward\": 3.8291250547052999969867e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one17f802jvut8dcz2f6tyla9s275jy7zdm6zuelwa\",\n                        \"reward\": 50103100490936053807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.43035e+23,\n                        \"delegator-address\": \"one1cf74gsspn06dldpczp4myn0g2ftugtrp2w7xmq\",\n                        \"reward\": 4.2238667322376405572058e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.0286987327e+22,\n                        \"delegator-address\": \"one1p5utefzvs3d23s303wcdv9zfv6res5srphhe7v\",\n                        \"reward\": 26620549264517743465,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awzkclvn9vdennul9m7ftqdwfwftwyhuqk4yta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.411e+22,\n                        \"delegator-address\": \"one1j9g7uyg8kx5pkh82hpmuahcd6a3k347fdrg396\",\n                        \"reward\": 82521594965780618939,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19mas6xg4tyd3xrhc4ycl2ypyu0knsv2ym7fcwp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0358027481e+22,\n                        \"delegator-address\": \"one1m5zwjukl3nx5r3gaf35hnp7ymwqtqxqu52sc85\",\n                        \"reward\": 43574855628653108519,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 6e+22,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.569653599e+21,\n                        \"delegator-address\": \"one1rsswq9k7yq47mv7mrpc28ngq7mrn0xhnhe7mgk\",\n                        \"reward\": 65235888384710721300,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x6wrxnudm85r3mmyxp5hf5g6gqyyxpj86efqqx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.80499282e+23,\n                        \"delegator-address\": \"one1398f0vkwnsxpcqveg96c53a8z39k35673jpwhc\",\n                        \"reward\": 456810645859127053314,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one198323cmhlxeeadj9auhpdmc4vcn8c2mv3e4eg2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10jm8mz7wsd6y2etrgpy0xslf2r4sxcx2yhfu3k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qy9mum6mtp5j5u0y3ekaqn8quahvsezavxwu32\",\n                        \"reward\": 14456788791097449314,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 8.348e+21,\n                                \"epoch\": 314\n                            },\n                            {\n                                \"amount\": 1e+22,\n                                \"epoch\": 316\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1as4hhpsvxj9ftpsw9y26l4tzf7wjvyw74nk822\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.14524e+23,\n                        \"delegator-address\": \"one1vezcgrr7575xw909zgh52mqpf0hp9rc3dhzs87\",\n                        \"reward\": 1.297617751549351225619e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0377812608e+22,\n                        \"delegator-address\": \"one16pge04u0um9ljmwdkavjaunhpgupeakzamfdec\",\n                        \"reward\": 755748879472239710929,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jwfa4ldgsmlk204p233jxhz4f6d998wf8mjlex\",\n                        \"reward\": 1943845105111206190,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 24087177899285683667,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jl28hg5949hd4s57e2pv49pgz05g9xkk0g6tfl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5905e+22,\n                        \"delegator-address\": \"one166q38wr8lm8dsmqpg0msl93x6qylg99ym03mrd\",\n                        \"reward\": 31955865976679818190,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.395e+22,\n                        \"delegator-address\": \"one1zmkq2yc3e4970tpjhyayuux5l9gt6htlnllfku\",\n                        \"reward\": 1.418476996034484021727e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one163a0z3kuua7veqakp752kcugdnpvt4eswxc5hh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.26149e+23,\n                        \"delegator-address\": \"one1srkclutj4zuhh7jlcej9vvfad22jzq7e06s6tv\",\n                        \"reward\": 590612221785667393951,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.052627034e+24,\n                        \"delegator-address\": \"one18stmp9vs3jzrve04zwwgpvxmd35r25nsecpst0\",\n                        \"reward\": 260834983019794037675,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8pu8pwfh7q7x8e70ptnztwdk6n505adm42yva\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.710623925e+22,\n                        \"delegator-address\": \"one1gev4kpvh6rd2ehmfpd6dr7fngkn99fc7azj52y\",\n                        \"reward\": 1.69018020919604309025e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0000099e+23,\n                        \"delegator-address\": \"one1t7c9ul3ph2rkara7wr2lssuzm7tsw0yl97w8e4\",\n                        \"reward\": 2.763920181588708561225e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.907640634e+21,\n                        \"delegator-address\": \"one1v6sq2d0880p9466ugqwkxsskrmkygyxsykvyf2\",\n                        \"reward\": 208316446452606742087,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.139147019e+21,\n                        \"delegator-address\": \"one1h6vfv98pn9ughh60rywrlezczsd40r3munmnxk\",\n                        \"reward\": 150146787726566275798,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mptep9vnx9ln5gzsg2rzsw0mvav33es0s9v9gv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k3ck0f5dffgmv45ncfnn74xgdv3nwwcralmetv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15jzx7smpuds47j0qzph232wdafyegxk8h53ydn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.04e+21,\n                        \"delegator-address\": \"one179vdp5tzcx9zl0wftdyq9wu338hpf4wa3suwxx\",\n                        \"reward\": 28648726413729452444,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.181131609784e+24,\n                        \"delegator-address\": \"one17pwt4mwrjr7aufc80evddd45xt97z6ksljsr8h\",\n                        \"reward\": 391348361542382118936,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cl85ua3yg6a0ady5d0tpttg8ttedjtlzy0lhjt\",\n                        \"reward\": 259844392412438289007,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a43sh55wfr0g8h24jvzax25h0x2ehdyk7u983y\",\n                        \"reward\": 1631473798341023173,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.49e+22,\n                        \"delegator-address\": \"one19hy84zx5vxlnp2jfa3mghr2ekxhhyntdx7vysw\",\n                        \"reward\": 502558516521766067488,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6296e+22,\n                        \"delegator-address\": \"one1dnd69723taqllad0efjte0sy3xm5ukk7fjshl5\",\n                        \"reward\": 166748878063861738070,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.53197e+23,\n                        \"delegator-address\": \"one1lzkuf9aany5ywg0t5pwu74u6jwnau8hgd503zm\",\n                        \"reward\": 886187211138600998379,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9hnyw8demj8n5r8xv5d05j2wlfpzxj52vm4nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one199s778cleljylddn59gaklxl0ucmdue0g5jqjk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.11966e+23,\n                        \"delegator-address\": \"one13cn6t9kwhetm7xeyghahcpvrmflut2wks7ctfw\",\n                        \"reward\": 268071590289642190156,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.886630826e+21,\n                        \"delegator-address\": \"one1cjzgsuv7jcz2wqq8mvnuvcx5rf32d3dhvus55a\",\n                        \"reward\": 61921407750068805495,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tzu2dc4js8lnkjyz78crdw4z0ruvx9nhhf9yqe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.2523020863e+22,\n                        \"delegator-address\": \"one1g0nr28y783vptq3gp4xa7qkrgkxj9x3pkmvuqz\",\n                        \"reward\": 13590028063943795956,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1thsjvals7tgcs3yapmpq5szrm9jkjyed7qymmg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15twl6n78kduxv0fyv9808uk8t4n5smk2r47pv0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2575033359e+22,\n                        \"delegator-address\": \"one1ez6yzydecacjp3l8525srzdm2fcvpwz78r3yv3\",\n                        \"reward\": 691816752673295711878,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0258216928e+22,\n                        \"delegator-address\": \"one1d4al76dkjlpfzgvltn5ayl2jelynrf0w03fpkk\",\n                        \"reward\": 253970310145727970570,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fhtsg843yansdzgff08ugtst6q0lypzfxhkvz6\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 9.2291147e+23,\n                                \"epoch\": 315\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpvl0fpu0xvx6ylpxs0sf8hnjv78xjpstdemk9\",\n                        \"reward\": 174260700584494691615,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.39879e+23,\n                        \"delegator-address\": \"one1djp26aaeekuekwr5r8jg5zkfl2cmv865aps73w\",\n                        \"reward\": 607024651019159651123,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.1832e+22,\n                        \"delegator-address\": \"one1rzw0tr3crkyml2rz9ht2p7qgnkj8u86q528x8w\",\n                        \"reward\": 1.971420506253982259288e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.846388458e+21,\n                        \"delegator-address\": \"one1ne32wncl0cdel6psxtrhgdsvhc5mt02ymtpfjy\",\n                        \"reward\": 136007465852812292923,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.4986465368e+21,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 9394956041051401270,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 65157015556459507872,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fmyjpsec57m95ytzmaspjsxcu0udt75tsmyvvs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.17336e+23,\n                        \"delegator-address\": \"one1awnyjcy07sp5jg8jg5l76z88euwq3fz2qajkgc\",\n                        \"reward\": 1.913046525277288646093e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.616986857302e+24,\n                        \"delegator-address\": \"one1vlequnh3swngqh0ffe68t2dd06pdgu6u3hn2jp\",\n                        \"reward\": 1.512663768290464598202e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zvrc2xsad84pqvhpg0g63gp6g2jcuwjthjrdr2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0048500634e+22,\n                        \"delegator-address\": \"one1z9n4m99q7sy40f8r33y7jaetwjdxju69xa8uva\",\n                        \"reward\": 8879522981222866876,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0444806e+22,\n                        \"delegator-address\": \"one1qe3r6qvxj2qk7u0z6t2v5x4h4hmrypv4mmlvc9\",\n                        \"reward\": 49440714762153949257,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.091923979e+23,\n                        \"delegator-address\": \"one1xtd6z9rcc78s7mrh2w6hks9ncwe0x0e69rzx95\",\n                        \"reward\": 1.342263697564204060492e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6892021e+23,\n                        \"delegator-address\": \"one19r5uwyjn4ntkl796w3vga7vehywnzwz7eahpg0\",\n                        \"reward\": 2.06278921072749295367e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.17739723287e+23,\n                        \"delegator-address\": \"one15lfnqqszn5up0yydkhes74ekexdtg2gaefxcp6\",\n                        \"reward\": 1.10913755501878384656e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+22,\n                        \"delegator-address\": \"one15qlz8tepzpzv8dze5yfcyvjt7ffrm8m44hqcjz\",\n                        \"reward\": 1.121789817850232529494e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.44398752957e+23,\n                        \"delegator-address\": \"one1fxwpzru4a4sz57tkhgh7hr0vsx78pj4glkd532\",\n                        \"reward\": 3.356545281116617614427e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.04e+23,\n                        \"delegator-address\": \"one18w350uzkrx99kvfh357fchhv45fetn6mt943dc\",\n                        \"reward\": 286152570976261068263,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.51946859249e+23,\n                        \"delegator-address\": \"one12gu5agnq85pg44230rjkgq5cn5vre5kcmruchv\",\n                        \"reward\": 1.0351222777373497134309e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.55e+22,\n                        \"delegator-address\": \"one14ducmwnygm6rvcc6t7vzhmgz57s7hcccfpdc63\",\n                        \"reward\": 709754242456020000194,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.16861e+23,\n                        \"delegator-address\": \"one1av9ef3jyraqfxg8475v4z7zmem45r0hzc4jwp8\",\n                        \"reward\": 4.904019803897673946919e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t8372ngc5trnexc8zmflgt57hqgf399plf344e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rxuplvz2qxpqd094hnvfhw5t3qau599hsqc6c2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jq9dljqxuj4q2eqpgsdkgksghzlayqt8upf700\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.509e+21,\n                        \"delegator-address\": \"one10j7uuj0kuhpgdc56pnwdfsgrmrrx8glncl236g\",\n                        \"reward\": 12203455882130574509,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z2grnzph24x5qg28culxa58jvl5v5d2d35hz25\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q4lkpq7nru908cppg4pxch935spqxx9fxcfc05\",\n                        \"reward\": 29531627935222306128,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1489m7zqf3n9gn5axtal3umf8qx2jq3zj7ljrjc\",\n                        \"reward\": 171910379174862336,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.246975671e+24,\n                        \"delegator-address\": \"one1dva0gzejfyxtwzh85ten234ph8suj2teqe3u8p\",\n                        \"reward\": 6.757397072470021158419e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.94315e+22,\n                        \"delegator-address\": \"one1vnmd5a2ukgskdm4camjs2z407q7ffm2jlw97xt\",\n                        \"reward\": 23262561181405323051,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10y20dp27qqpnvdkqjhwa22c6704ydp7pjjefrq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lg0y50az0fql50pfelskv7mquum8z3xznv3z8l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gekkazwel2mq7glvhf6awrrjqe79e7s3y2w758\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one160anzdjc5skrfqde0lt5gh7tpeyv5ex2d5nh8e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16estkrh2telyvh0c9x3ykprlvu7qdt4s38em8u\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 6.885005975e+21,\n                                \"epoch\": 314\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.24526592335e+23,\n                        \"delegator-address\": \"one1v5ycnn47fkr5uahq2dmnufj35hdwu3e6rpsmtq\",\n                        \"reward\": 88845246718079438861,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.151623739506e+24,\n                        \"delegator-address\": \"one18rs0s0eucpv5fsadq4p75c57w7k9en6a4vzp3h\",\n                        \"reward\": 418285550159811014014,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.38208242e+23,\n                        \"delegator-address\": \"one1eel4ja0047fu6gdtw3amas39swnrmmda7raant\",\n                        \"reward\": 824411603433919716379,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3274571725e+23,\n                        \"delegator-address\": \"one1hcg2q2w5kmgesfgrtvenuxm4v4pqxwspvs7z20\",\n                        \"reward\": 1.242121342512865870611e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l87vnsjlj6aqkyspde7qv7eff6vwuvsw3r6ujc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.489018087e+21,\n                        \"delegator-address\": \"one160ls65kzfsrn7legxyf9xj02cpnd333mq4qv27\",\n                        \"reward\": 43468262419129841226,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.25999992e+22,\n                        \"delegator-address\": \"one1s3rwjr9y2php5fptr52pthvpa0fgs3qppmx474\",\n                        \"reward\": 15863149158273060892,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yhxn66xjt36p4hnuxj75fwe6gwan4ykxjg3alg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.574e+22,\n                        \"delegator-address\": \"one16c4k4g2rejntd8znf6mmrkj44r674vphzgl8q9\",\n                        \"reward\": 383848175055628917638,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.71e+23,\n                        \"delegator-address\": \"one1zpvk7desemcus38e0zm7fwyg0wk8genckw8l7p\",\n                        \"reward\": 355723992488318561598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.12566e+23,\n                        \"delegator-address\": \"one1ehfl6zg2s6e5ne7j60x4pwqht6r3ec9spwz4kj\",\n                        \"reward\": 174284966350662831028,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.941e+22,\n                        \"delegator-address\": \"one18wngtkqwcmq8cmyyaxaqh46cmamj74tu7ya3v8\",\n                        \"reward\": 28233415042721073731,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tf6um60tpngwrvvdtwa4x88mynre36amjxm2yy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.57282317354e+24,\n                        \"delegator-address\": \"one1kfyyerjm4gnrgrndn4ve2pcfm5zfqvqfamus5s\",\n                        \"reward\": 2.273797242561133620069e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.189694194e+23,\n                        \"delegator-address\": \"one1scwjcwt32k38hlckx72y344jvtncwykjxpd49c\",\n                        \"reward\": 893569562136558886711,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.12e+22,\n                        \"delegator-address\": \"one1m4q5zzz3fhlh96nzx7dxfuy3pugullmwqcs8nh\",\n                        \"reward\": 5526170108683499258,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Stakeless helps you stake your coins.\",\n                \"identity\": \"Stakeless\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.090000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Stakeless\",\n                \"rate\": \"0.049000000000000000\",\n                \"security-contact\": \"stakeless.prod@gmail.com\",\n                \"update-height\": 3515969,\n                \"website\": \"https://www.stakeless.com/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.508725526919529030\",\n                \"blocks\": {\n                    \"signed\": 41670,\n                    \"to-sign\": 102219\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.195717203402607659\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.508725526919529030\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.4402208078094277102844e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1uugr9gcd7apak6q00a8qg6zaaadls5vc09a237\",\n                \"bls-public-keys\": [\n                    \"66217cf66e88e6a7e0ce0bbcf6a19ba24118775efac2504d0e819d384971d6f48ac33a0c69fe6ece5d0eaf51bfb2990a\"\n                ],\n                \"creation-height\": 3361649,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uugr9gcd7apak6q00a8qg6zaaadls5vc09a237\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yv760p0j0mdjs9y30puj9felcvz4sspz8aja7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9vl22yqm43ut87wh2c2lja5yt55jwk62q74a6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one135f4zp70a6dsv759rx72f7t49ev8hmqn67e4ta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1muus26kz85zfn8lavcgxlt2n9zcxeza3d9tl4m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jpxwmkc4ad7p0p66ya6vl3c379qwhuywqrq95v\",\n                        \"reward\": 14889144970904638544,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Harmony 0% Fee Node\",\n                \"identity\": \"Jupiter-4962\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 2e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"0% Fee For All / 100% Current Uptime\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"tertychnyiy@gmail.com\",\n                \"update-height\": 3392704,\n                \"website\": \"harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 261590,\n                    \"current-epoch-signing-percentage\": \"0.998846852901195913\",\n                    \"current-epoch-to-sign\": 261892\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"115055177848238543241899999.999999999999999988\",\n            \"lifetime\": {\n                \"apr\": \"0.118248941558485906\",\n                \"blocks\": {\n                    \"signed\": 57052466,\n                    \"to-sign\": 57639364\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121868443794839793\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121613531358981706\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123283434881594203\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125987990871076269\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.119373476323441585\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.125162507475227373\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.124086141182580179\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119178914047497837\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116770565121931565\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117399595194087153\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.114746121350414621\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117151914153154480\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119904311577154977\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119122204135589619\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.114962783379279339\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.115817829276846024\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.114650572533387078\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121598732306483844\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122111122613915626\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121247236334502427\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121119380109765175\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.123009446009620649\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117926765562407836\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119004528109833425\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118513739646294828\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118915845605126822\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118664540138488411\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117482163123622908\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118814029378512782\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118555219290492728\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118248941558485906\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 279917,\n                            \"to-sign\": 280191\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295363,\n                            \"to-sign\": 295652\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295490,\n                            \"to-sign\": 295745\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 317845,\n                            \"to-sign\": 318259\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 311942,\n                            \"to-sign\": 312432\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 311600,\n                            \"to-sign\": 312005\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 322565,\n                            \"to-sign\": 322894\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 311878,\n                            \"to-sign\": 312176\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 311478,\n                            \"to-sign\": 311869\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 312433,\n                            \"to-sign\": 312644\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 312640,\n                            \"to-sign\": 313217\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 331911,\n                            \"to-sign\": 332350\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 330093,\n                            \"to-sign\": 330530\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 334403,\n                            \"to-sign\": 334830\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 315105,\n                            \"to-sign\": 315752\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 333007,\n                            \"to-sign\": 333482\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 300496,\n                            \"to-sign\": 300910\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 297146,\n                            \"to-sign\": 297620\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 297689,\n                            \"to-sign\": 298080\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 320409,\n                            \"to-sign\": 320924\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 296135,\n                            \"to-sign\": 296600\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 296404,\n                            \"to-sign\": 297054\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 296751,\n                            \"to-sign\": 297332\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 308420,\n                            \"to-sign\": 308840\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 334671,\n                            \"to-sign\": 335438\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 304809,\n                            \"to-sign\": 305488\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 300956,\n                            \"to-sign\": 301668\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 302779,\n                            \"to-sign\": 303392\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 303788,\n                            \"to-sign\": 304128\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 308888,\n                            \"to-sign\": 309224\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 9.237631268148608620157661e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.699387707893885640583e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"497a4af6682e07a7b2b0e5a2b9df08099f31e028a2f2d17498c091d83cac69ff44016ca7fc0196121c9e96e2300abf06\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.699131444202252462562e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b831ee28db84958e2a43c6ffca19a8453aa818dc196d7f0058e028a642caddc5146a9ab0d643802ab15981971c54cf96\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.699587385651450627105e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8881cda12fd07d1d55b5d615e345164e3251a959636d3c6c89eca39bf2f3d7bda4790c30e97f4aa3e05d65f7ae24188a\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.69815218350543027968e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4b2f5d50d469f865cb9a1f65bced9992a5012f737b5a5c1d32fc9fc462991d931871275a733ff4989d206f31932b7d82\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.699512158695719844831e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7f6ced5becdad6859fe9082f70062fd107ee4aa647621b0e7894138a52768f98f562f9624b20a804210035eb322cf302\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.700064842583520169843e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3013edf854faecf8884d9ec5a250ff31ffc64c8776e43c3cb0b68c44d8b36cbb121962bbfa50d5f25df27aa636fe5c06\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.70044688871415406738e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2f2d2b8fb2bdb66be4b382f8b8cb37f06288a039afda72d37684b69300153916b5e16232440cb510a88c3d41d84f6c82\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.699338144428587473203e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b414dd265101cf32305fdd7ee8eab64cf4c847c4fc38fa23b1ab2621e518577d77b270bf63a1dd254006c5ab6669fa86\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.699030513819630164783e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7fc0ccc3154cb611318def73b241644a610dea20a5edebf2837dd3898d46e2ddbd2d6038e5aa4a7e553c5adbc5a41c86\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.700120988778796993594e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e6590054e2cf8056d94751242c67478e611f910377f2c0e9538f7e5027659cfb393191fd435d81e8890aa654aa30a302\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.758215685993286801942e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a25141a3771f001f9a519406e1c36babdcb90a8f31d5986dfdcb5e4519515b3070420e27869ac6103120ae75b005b50b\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.75804670088711685252e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4c02492dd86d59fdc5c8a283e9e89f5d35d8877bae12faa18b7e1efe6422531419a488f9d44fc67b4ddbd048fb5f8393\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.758381273498612392663e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b2ec089fe7af1194c317b2135d6acac70dd6fb14264014d4c2917c0f80dec29180fcce3d5a3b382024fdd3d02d2cbe97\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.758077069456202901665e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4a7a0453f2d35c4c0ccb69e666576785702124d2206808c0aac9e22dfadd0dbf01c38564a5fc80f7fdef62829d250193\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.758191054025598092004e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0ac01bf36c064ca3c695c1c5fcc04c79b28e64f6db5e3338aad46159752579c64b59a4f9d683528bcb5084545905ed97\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.756508194472837476596e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d0c1d86af7924349dedd8e4fa2a7dd4f7e263424b29f9d7de47c7f1c2f289904f6ab68fd18f95f95848dc1b5c175ad07\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.757701819731979120929e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b045a47f8f8976fc489ee79782e13fd1bc5fa682b6df4eea158aa2cb9ad313b168cecdebd79723aef2dc85cb2ac14d93\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.758494460881387448624e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"31da8512a419dbe5ec4e230cb8d81fa6493922f964d7d7ad4374388cc61edfb55592e568583b8f10871a78918290ab8b\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.151331035397155432419e+26,\n            \"validator\": {\n                \"address\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                \"bls-public-keys\": [\n                    \"2f2d2b8fb2bdb66be4b382f8b8cb37f06288a039afda72d37684b69300153916b5e16232440cb510a88c3d41d84f6c82\",\n                    \"3013edf854faecf8884d9ec5a250ff31ffc64c8776e43c3cb0b68c44d8b36cbb121962bbfa50d5f25df27aa636fe5c06\",\n                    \"497a4af6682e07a7b2b0e5a2b9df08099f31e028a2f2d17498c091d83cac69ff44016ca7fc0196121c9e96e2300abf06\",\n                    \"4b2f5d50d469f865cb9a1f65bced9992a5012f737b5a5c1d32fc9fc462991d931871275a733ff4989d206f31932b7d82\",\n                    \"7f6ced5becdad6859fe9082f70062fd107ee4aa647621b0e7894138a52768f98f562f9624b20a804210035eb322cf302\",\n                    \"7fc0ccc3154cb611318def73b241644a610dea20a5edebf2837dd3898d46e2ddbd2d6038e5aa4a7e553c5adbc5a41c86\",\n                    \"8881cda12fd07d1d55b5d615e345164e3251a959636d3c6c89eca39bf2f3d7bda4790c30e97f4aa3e05d65f7ae24188a\",\n                    \"b414dd265101cf32305fdd7ee8eab64cf4c847c4fc38fa23b1ab2621e518577d77b270bf63a1dd254006c5ab6669fa86\",\n                    \"b831ee28db84958e2a43c6ffca19a8453aa818dc196d7f0058e028a642caddc5146a9ab0d643802ab15981971c54cf96\",\n                    \"e6590054e2cf8056d94751242c67478e611f910377f2c0e9538f7e5027659cfb393191fd435d81e8890aa654aa30a302\",\n                    \"0ac01bf36c064ca3c695c1c5fcc04c79b28e64f6db5e3338aad46159752579c64b59a4f9d683528bcb5084545905ed97\",\n                    \"31da8512a419dbe5ec4e230cb8d81fa6493922f964d7d7ad4374388cc61edfb55592e568583b8f10871a78918290ab8b\",\n                    \"4a7a0453f2d35c4c0ccb69e666576785702124d2206808c0aac9e22dfadd0dbf01c38564a5fc80f7fdef62829d250193\",\n                    \"4c02492dd86d59fdc5c8a283e9e89f5d35d8877bae12faa18b7e1efe6422531419a488f9d44fc67b4ddbd048fb5f8393\",\n                    \"a25141a3771f001f9a519406e1c36babdcb90a8f31d5986dfdcb5e4519515b3070420e27869ac6103120ae75b005b50b\",\n                    \"b045a47f8f8976fc489ee79782e13fd1bc5fa682b6df4eea158aa2cb9ad313b168cecdebd79723aef2dc85cb2ac14d93\",\n                    \"b2ec089fe7af1194c317b2135d6acac70dd6fb14264014d4c2917c0f80dec29180fcce3d5a3b382024fdd3d02d2cbe97\",\n                    \"d0c1d86af7924349dedd8e4fa2a7dd4f7e263424b29f9d7de47c7f1c2f289904f6ab68fd18f95f95848dc1b5c175ad07\"\n                ],\n                \"creation-height\": 3361675,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                        \"reward\": 161437753611846449093,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.24736132015e+23,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 261349064442865578484,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+21,\n                        \"delegator-address\": \"one1yqlu8j3y6sv55nx3v987cxr209gmkqjy5vgjh0\",\n                        \"reward\": 9549283642759690402,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.525e+24,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 5.0125197479765516546989e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 6459314761850842321,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 93569592676723232204,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9335e+23,\n                        \"delegator-address\": \"one1j9g7uyg8kx5pkh82hpmuahcd6a3k347fdrg396\",\n                        \"reward\": 1.804925007750457331144e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q2v8nqnk8gflhscwl7mz2pfmwljk440dd7wjan\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kmdga276hje5cgefelakkcwgrhu7ndjfdnnzws\",\n                        \"reward\": 212215499778282463,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.792925e+21,\n                        \"delegator-address\": \"one1shtfgjgu099ygdkas8gp6akje3xnf6kw35xeh5\",\n                        \"reward\": 77105902146994201541,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 128500362140255489517,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.892e+21,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 20368468100990569423,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l4dtuj5s7sj8q34urqmyev5jjx2s6t8yp28wjx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.043e+22,\n                        \"delegator-address\": \"one1jewus8je3hfdpjrl2arkvsgd2dwnty5m4zu2qe\",\n                        \"reward\": 452299600569494578782,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kctqdpsfuexz2lefefcqyyjydw6zvr3kc9tras\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2042e+23,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 1.43954227385962244973e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.09309e+23,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 136691314808836399430,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ct3jxm4j23c0yjxw89mfj5jp8dwfxzle4eacr0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0001e+22,\n                        \"delegator-address\": \"one1utkxtz9mjja28lrtltf28w4jmuzqrn5j7hlat7\",\n                        \"reward\": 420047262964968454886,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1emggc9549mcv259z3w6fe4ptwt89fy2rzqhc3c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d6vmmq6elrx0z52zv5v7su2sykua8smaxy330d\",\n                        \"reward\": 36694567066156435002,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1545e+22,\n                        \"delegator-address\": \"one1h3szew3asdd32u7mzd9upjg78k2afdz2cl2fxx\",\n                        \"reward\": 878645465947660870152,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7e+23,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 671540262379655242754,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5633e+22,\n                        \"delegator-address\": \"one1fsqyatysv7y3dg7lg0h39kmq2qygxwx3lmm83m\",\n                        \"reward\": 56627151226714743402,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.946e+21,\n                        \"delegator-address\": \"one1j6dhuczyfxz677l33j0kkeez23whf8jpjkyftw\",\n                        \"reward\": 19533787711195693919,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1munucyh09snudfrljn6z3w43d34ujwf6fxd2gr\",\n                        \"reward\": 297821241755711359424,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 9.9839171e+23,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.8420405595e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 6521457761880278273,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 17525386676356172878,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 207539597222401959564,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 8.3e+23,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1zf239ny6pdy0twnzmuaxumvgx9ld9rlfl2a3sh\",\n                        \"reward\": 943969670689834660892,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.10754228245e+23,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 300984308475714587434,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0069e+22,\n                        \"delegator-address\": \"one1r8p9p4hnt3kx9ymvznxgfcm308md5fxwezy55d\",\n                        \"reward\": 211858951370433478621,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7937475975e+22,\n                        \"delegator-address\": \"one1myz5fpmctcqq424u42dkkmrsn8xhg9tsgduyy7\",\n                        \"reward\": 93308193149078779781,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zxucth84p9u4a9zk8f3t0rwvvgrsqgjk4z5f6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1npcp2tagsewhk4q7wy729azttw8rey9er74zrq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1299e+22,\n                        \"delegator-address\": \"one1t9a9pnyvjkz4kffhwrm6damfrd4z9a0ejrm690\",\n                        \"reward\": 363767710473865187032,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4725e+23,\n                        \"delegator-address\": \"one1qtx776yews0t80k9ppe6d2qd76clnpp2tjs8wt\",\n                        \"reward\": 1.720947441935688857187e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15gmk6l5df6aczsh0jx3hsk59kk26curq54u6gz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wsy0f9p245mugshnsud7se805htq3sram33ek0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14kr7gvrrmhvfa3p30q8tmy8nkrlqtcjpce6jqq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3e+22,\n                        \"delegator-address\": \"one1jrvn0x6xwfl35cazxp6fpxl2xx0qnxsawl5r7f\",\n                        \"reward\": 198786339480805938770,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1umwmahvkvf6pwpmw9wcsq02gjz0v0k4sss0c3r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1unz7hpen6x8kvqtee2ta2pj8ju7a6tm67c42en\",\n                        \"reward\": 11507149954408636089,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.2740808e+21,\n                        \"delegator-address\": \"one1wtel9v7gdfe6w3d8dnxjgts6gzvz3neqxcwhga\",\n                        \"reward\": 273027995418183898702,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0v6q5fl9383rhupnhhwgeqc62xy7p23znd4cz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 384269382107686630926,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1kj7s0p7mg200j6sjtljj9yv52tem9jja3qt80k\",\n                        \"reward\": 1.378283903045177524265e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 99000000000000000000,\n                        \"delegator-address\": \"one1ggmrkzgep9z9gtfr690eudzmj3y0yky44cnkjm\",\n                        \"reward\": 2830304606898658413,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dwecfk9455vh6cx9shx30qyeznzem9wum80pvk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2e+22,\n                        \"delegator-address\": \"one1ye8vxw3cmhju6cr0wwa8t26wcz7urjfm3y7zet\",\n                        \"reward\": 531450187663582480126,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcd73jcajz7wsaquzxvcjv94fere2xtqyyjz2q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.8768348032e+22,\n                        \"delegator-address\": \"one1xaw8fts5x7dxen7f82t2xfg7usykzwk83jpsfv\",\n                        \"reward\": 3.239978724042492235705e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 23135622049838313432,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.290000582425e+24,\n                        \"delegator-address\": \"one1d0w5upanuqxwwkt4eqd0uxa64mhx58xafrmvhl\",\n                        \"reward\": 6.220752205332272047029e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 1.80225573620464648379e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awzkclvn9vdennul9m7ftqdwfwftwyhuqk4yta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3090108e+22,\n                        \"delegator-address\": \"one10cg3jrdvpx76n97v9gnrx2tsashl4fu96wlwgl\",\n                        \"reward\": 2.375616089475128927763e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 78122254827243263600,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.53665e+24,\n                        \"delegator-address\": \"one1utr8dmfygm8xn2n5t4fhalhs9tagpr2l6dwpzp\",\n                        \"reward\": 230161122202974753711,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7963e+23,\n                        \"delegator-address\": \"one1th6dqkvnsc9wc023mr306yykflcqlpssmxzqp6\",\n                        \"reward\": 3.32536517169210784281e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17td8n6wa7l57gj727gl4u3z7hn7mpyftj9fhef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.27139e+23,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 451380778487687000858,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one197wwsy7fnkts6mj3258gysaeqq7qz8nqnyent0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.26644019e+21,\n                        \"delegator-address\": \"one147w9xun8eqrdg6yka7ejnr4mpjwupl4pgs9dtz\",\n                        \"reward\": 69820565121859834701,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.000870989e+21,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 54726616591056122038,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jlz369f2t09hy8pwwg85kdqqfw690rt7nfjeta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.48745e+23,\n                        \"delegator-address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n                        \"reward\": 523877740006940370115,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1670978e+22,\n                        \"delegator-address\": \"one1m43p84524lyge8z2zj8p9jlrg4wrz5qe9nazxg\",\n                        \"reward\": 565111746235071994509,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 4009817465550572417,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1g4u3hy78vux7mtqerfqechx7q7seyg6avtnq4h\",\n                        \"reward\": 386893020670674508576,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.719191104182e+24,\n                        \"delegator-address\": \"one1khpmdjyc8qc9ye5np6dpe2paqrz4e2jxymwpj2\",\n                        \"reward\": 1.411847052610553444586e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05081662919e+23,\n                        \"delegator-address\": \"one122uq95m7t63rcvy6jd8jwgf96x8hfv63q9m9hh\",\n                        \"reward\": 116046805296471340030,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+23,\n                        \"delegator-address\": \"one1l672kfy4fpvkmmg6d05unv8ln6sdq6lwq980lk\",\n                        \"reward\": 57467074927209315466,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13vwdw5xwnuyu8q92pt90akdqmne4v3w34kxxry\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fcdqc2dz9svh6zvcuck6pcgrchmmsjpva5ells\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g5cf7zpp5pfpvvhzs7vyuq0kjpkk6dzd70xn46\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1513546442542e+24,\n                        \"delegator-address\": \"one1rmzxqa5ukgge05ej6f260zry05z6sdruzju2v7\",\n                        \"reward\": 3.3186716917140017714536e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one133z76xlp2dysfzgjeuc6asf6d882cpn3m40den\",\n                        \"reward\": 55702226040305206848,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.097899572e+21,\n                        \"delegator-address\": \"one1mwhe2kjsxs3fvr8th39nhkgllcap4cplr5pdx3\",\n                        \"reward\": 59622579089564554272,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.18508945583e+23,\n                        \"delegator-address\": \"one1ka8rvmmmw4gale8mmwse2fzp0zqasy99tu2nz6\",\n                        \"reward\": 1.012087965674326097776e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jg7dty0ft0q8pk0tucmkhqjh2h4449lxx2gtjr\",\n                        \"reward\": 667434348602992317,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mmmjjq2689gl7eyf9peaj7tcu34s3a2243sf9m\",\n                        \"reward\": 12819583594875231595,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dnh7wjg8mkvru3fantlqcazsrw3ma6ucdkqvps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kdgcyarmcymllyn2ptlk97729cjndfsgqweq97\",\n                        \"reward\": 1082497520181225846,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 8593325864199096325,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one10dr00r3wrsp0v04ec7d7asy9jaw5ldp7me53nh\",\n                        \"reward\": 45913858080735052401,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hfx87k7435sqa67d7fnjtwzu8uvtwzquj7m8jm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xx6854x6xjumraghugmu97wxpe30he29lje4lc\",\n                        \"reward\": 25488927667817235830,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f4rp0r5f0sa0a7n9a8e5hzn4fy030ntt88lm7u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mn52hyl3kwd68sd90nj2h6jmy2wztxhjpqxxaf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ek6nkv3d9k62zl0kkdza9xrktvhz4j2dhsuhcg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3992745e+23,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 586588270562740808466,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18xfcqu7jf0cq5apweyu5jxr30x9cvetegwqfss\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16dvzmd33wj36tlxtqszrnpek0nq8cl3p2julxd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.49664835e+21,\n                        \"delegator-address\": \"one1xkekv8vh3y2r4q4agwfesedjs50kcgpqv8k906\",\n                        \"reward\": 14153579991086270113,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qnn5c20aymv7v3hjmewvmpewc0w8sy8hceqqaq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16lexpnvm40w7dj7u328stxdnxyzv4n6ypd9qum\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17pv4h7eatla0rlugs5g3myh7jxhqvkz8f76u6h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1780hukztd6ty8f7z6z6wye0j6hez3ds8jydg5c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1llnqqpepyjlpmhr96zhrqpf7ekgd3dhx3jpscf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r3cjxvlvjrhq3537yswks43tfprn8vzahwdu94\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4854720626e+22,\n                        \"delegator-address\": \"one157rwjephc5y9vt3wc685uqlfy62amjf0ukavcw\",\n                        \"reward\": 31794945477105531545,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19rz3el68crvtxca0esn8ywc4wy9vda7leau5dj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5327e+22,\n                        \"delegator-address\": \"one1y7e39h6z0c0jqx9vu2epx3v5d3d44nx7sqmjsg\",\n                        \"reward\": 180038149893999974938,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qh6s6258xn27pstyxul6cg9nzq33l77dn3tx4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ljkrmdhlhgkdwvre409znv95hqf4l8rsczm3j6\",\n                        \"reward\": 687437969036089972,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0000706405e+22,\n                        \"delegator-address\": \"one1ex8lpdj9tzu9wpfgupea04z3m2nh9rqyjefnx5\",\n                        \"reward\": 48327703855020890731,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lhytlknl0hwdtw0j507l8vx2n234d8wxqyvhcz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.356e+22,\n                        \"delegator-address\": \"one1e4yv58e5p8whe0q9c0dv350yhxuthumwm6yvqw\",\n                        \"reward\": 78706237912484457510,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one105e9v62p42d4h0p46euuh0xc2kxvpk0t3sayzh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jfft9hs3ed4uu38yag0y2wzp70vmpcga9xzdq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one1pds4dtf4pf35xnj7452m7hax24gfzu54y4xfms\",\n                        \"reward\": 221175262768792225340,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13c5lz8nu9e0n0jw49q4j9mezhpn5ucj4g3jhu5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13k7vlreqgy80w4kvkqknpgsvp2ux92lwf0kssa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 40170449926631212,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.4693099326e+22,\n                        \"delegator-address\": \"one1la2fefj8hfwg33ww4l2qcsv2g7zkdxxp3gethz\",\n                        \"reward\": 1.171699421427641084906e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0069993e+21,\n                        \"delegator-address\": \"one1axv7pm9duu4qygc0krwr0z4p4dzedlh5qlpqrs\",\n                        \"reward\": 11302198068994610574,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g7hu0lpmp99rawhjhh80jtrv6u42xzpg2sg2zs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gu6ftc8cva77j7n5zevgpdshk8jmk0vhhs0w2c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5009e+23,\n                        \"delegator-address\": \"one1qpczdf6s376y2qay80ustlr5k3lvtml6y4j5az\",\n                        \"reward\": 4.542600076917875891067e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one169mgllpxsz6h5dt5nzgxpy7qtkswll5qade38y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zn5axvgpx23t606xs0t59qf8xfc4fmavkh4ffc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eufv5zm8vp0jm5frdcahn3r0sfu8kzlrzpjyqg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25000550599e+23,\n                        \"delegator-address\": \"one10steweqwvh3gk4cu9v85z53ndjrt0c40e9pfsj\",\n                        \"reward\": 73361223821825959825,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.57483706e+22,\n                        \"delegator-address\": \"one1hlatxd4q8ld78djaerr4hhv0g6vcraxxluks97\",\n                        \"reward\": 85892977638682272194,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.32367495e+22,\n                        \"delegator-address\": \"one1an6ee2etedplc7sj7p45jy2s08alx35lwaye5q\",\n                        \"reward\": 90411568499132524273,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.66348957522e+23,\n                        \"delegator-address\": \"one1dh2f694yfw2tpe3zqsvkgaj0ykeustw93gdyq0\",\n                        \"reward\": 441278868941093245804,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q8y3kg3ag6mwedj5haqs9gv7jmpfjxrzca9h6m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one106k68mw4p37wq7dtl8n8uy3xc0chc24pvqz4vd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.515e+21,\n                        \"delegator-address\": \"one1pgz4xneava6hyp5xyvwwmdjgsszlx820e5dj2x\",\n                        \"reward\": 281234947759917427403,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ps0m27wyyxv7mev4s3ayzlk28ms6a95xw32ztx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.87358178729e+22,\n                        \"delegator-address\": \"one18sjjt4uwp6gqqdh7n66d9eumd6e3pg85mhsx27\",\n                        \"reward\": 118772622396852682750,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.2298e+22,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 72458815135318170308,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 6197307613207568031,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xjq4xf4uhd9fyszvm2aw63j4hvhcddn0aq4hg7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one19w8klanmgjqw4waxuv5y2ncwfz5d6f3md74t8x\",\n                        \"reward\": 19299434609359922515,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3034e+22,\n                        \"delegator-address\": \"one1gclsr6czt25s56e7dkpy7cn22096xtqwjqupcm\",\n                        \"reward\": 240447448293643764939,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.2773999958e+23,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 1.369749502749946972176e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rnh96txet085fr093p64hzr4c0fudvxzgxhgez\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1c0stsfewuu9cpna830xhcc482v28gyepfr900u\",\n                        \"reward\": 209989108223447139635,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.234898562e+21,\n                        \"delegator-address\": \"one1hga9txwry02zq3dwwp4p43ycmaz5st5ptkd3m3\",\n                        \"reward\": 21525570040830945422,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+21,\n                        \"delegator-address\": \"one1f6k0cctegv22cadjnurhspl0q4a99k6plx9tsw\",\n                        \"reward\": 174238110910345668417,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rfjslpy648xltxuw272v8q5w4lthr9m8ncpgfr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vrpmaqnzs4pzhyqyhv4rxf2952zzjvrsqjpjex\",\n                        \"reward\": 34512778439557882802,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2e+24,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 6.92259e+23,\n                        \"delegator-address\": \"one18pqt2455nl3n0qs8v5l2zfl7ez5dygwy3q8tm8\",\n                        \"reward\": 5.817889069266634149171e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sx2lu574e3xxqp67zm6x3hqds9ppnkmzf76fkc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vpslanr565n5v3qd0q7gt3j2cz8c3jj9ye7r43\",\n                        \"reward\": 7345823698159715480,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1znytkyla3279m4wgg867gfzvje8sp60max36n3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qd7hpg5de058czhl5w70cah25hq0u2raptzfxl\",\n                        \"reward\": 113964141476613566347,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.51338274265e+23,\n                        \"delegator-address\": \"one1vczn7zeflv27smts3dk7nxwxckhms3cklryjww\",\n                        \"reward\": 6.816642437406130044723e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one18tfh604zdjm74400dt8mjtl603cllcfujq2cjv\",\n                        \"reward\": 254972754088774825695,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w5qfpepheyt0lsfynd3cuarqa8ytra9mrplavw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+22,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 225917749015703869027,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sfva32ejdyuj2yh833tlufy4x8qm2kp08mdxw6\",\n                        \"reward\": 613181115900171269,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jnvncsmlxtnr9znhqqx9rfexggmuj25gmh8pn7\",\n                        \"reward\": 1261820721863626826,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.37774920545e+23,\n                        \"delegator-address\": \"one1rf732ne5z74ahp79c39jpezz07qzuwz2gtwgyn\",\n                        \"reward\": 690007531083908046238,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8087e+22,\n                        \"delegator-address\": \"one1dkkv9gqdr097e4uuyfnwwnwamfsarw0agaxgen\",\n                        \"reward\": 36782959669950407698,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13xnd5t6sns2qd6qh9rp60pw3lv47q929e9sgtq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fqxnu6yy0mfl38uctd562atrpfed6s2ayynlfc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eexqspq9vlu73pp4gse0q599xzhz7eln8lu6mk\",\n                        \"reward\": 18637285456746034,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vpm8f0a7cah730xk6xegkfgvevn3lhfxk8tp5d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1acyxv69xjgunv3z5ymnjt2w70q7rdardr4a3uz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a6s5fd6wrsym65ua2xmn8p05excss0qn7rrn3u\",\n                        \"reward\": 1200285558713657635,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 174618526518707634,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15jl96rvssq93tzwxh2y4werwmnvmehnrrnh74x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1kx5t0efz6deqcggtrvjxg58llr2agp34y3jvzq\",\n                        \"reward\": 1.319877595931041570289e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.395630994879e+24,\n                        \"delegator-address\": \"one1ksemd8htnmw9plclg8wjrqql4rnax7kqpzrfy3\",\n                        \"reward\": 2.831676862889136802054e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12hla7ydhggqcdt0au9nsn7fpen89vlz9rm686y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1al4clrykeckl04emg84w744xqupkzhf3d34c34\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149x673ga5xh58qpgr4c6r8wpqxaaptzwpjarjl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1lgmxv0qxn6vckuaayhxtlfke47a6pxf8d73avu\",\n                        \"reward\": 97763484766292791811,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+22,\n                        \"delegator-address\": \"one1mv3ta8wgdeehrsja9pv7474chmu62dyy7cfqg5\",\n                        \"reward\": 140931108947550760038,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.51e+21,\n                        \"delegator-address\": \"one19h2v4fe9hggd6w77cv36qyss0qkg073xa88srh\",\n                        \"reward\": 31499918439682967365,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.449e+22,\n                        \"delegator-address\": \"one1dcqjuekcmvhr2yj9dxn8w7ndd90zg2qxumrkna\",\n                        \"reward\": 269557025870661775208,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jm9erjgeudx44jxvpyr09u2wevfrjykuvch5kf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.243662776e+22,\n                        \"delegator-address\": \"one1d33sufcyef8k4eedfj84akatekack9suvmc8ru\",\n                        \"reward\": 41215060545625892968,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1rgl6f9qgr40a2pv95jey22pstdfmq9gsak8u9w\",\n                        \"reward\": 71703527163367024813,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14m8mtlzu6gk9557ya4nv004lew0ve2tf3kxhzp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.924e+23,\n                        \"delegator-address\": \"one1572l5gau2d7gcestc7qaxdvcsa7hj2467tpf57\",\n                        \"reward\": 3.744994120220914915402e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17zh0n602sshq3akqfrxsfpkyj7udmkx4glwy2u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1025e+22,\n                        \"delegator-address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n                        \"reward\": 864603573985266673683,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pmgre5h990fw2yn4uxkfud4l8drzvsdzr4xczg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t37kzu473luvuz99ec3mjafqpldxnvvp9nnfd6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zmhmmcsy5lytxzvr6c8s85msx5ypdkljd4k4sv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qa4cn2u9axkz545ys6mlzk37erl365xqmn3nxd\",\n                        \"reward\": 15800467619003293052,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13z3n2gqg3ptk8cgs2jfn9cp6mec0kgu7xd9ywn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12vq79k6nwv475khc7mmp83786wrlgslj0zllgs\",\n                        \"reward\": 78407614057605529700,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0a43e43kvlw2uzmmk3xv93t6gcz5mr4whr974\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3578e+22,\n                        \"delegator-address\": \"one1zdy6xmss3du3g6t8kpj5j4kvmpyp62n83gh4fw\",\n                        \"reward\": 125326717838070054593,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uevnvfzez0kk0vkc2p45208neatzsmuwn6n0zl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eq3ratczrnpct6hpn384rvy9njyzq6cparn2pp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dsqz5qn8pv58nnudvnn0ngm6f9dr3d4t8dcvtn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 14495802778130178456,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rzrwq4cmav25mewzlz77ehen27pxhktvqqphas\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.4532e+22,\n                        \"delegator-address\": \"one120levpuutak72fet5h5ycfwwasdam4ffgxf053\",\n                        \"reward\": 890805963540922707619,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.818e+22,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 157408298161413945232,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pevrcp69mk9695cl6r2lakv4427uh3rkhm3gz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kj6jtey9esdpwv4qpqsgldzqckpqe6padlp04k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1782xv62cx49zdhr474lt4emc97xnvrpt8d6yrx\",\n                        \"reward\": 31359569315473927729,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9323e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 59533862243853551353,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.300071255e+22,\n                        \"delegator-address\": \"one1aurkwpe7p3zz9k2z70xg758m26p7q5wvem5prx\",\n                        \"reward\": 198994295624592150387,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tskp6s7dx5n2wqp7282390qcpzvuy5fa3n6kgg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.15e+22,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 96227448758939745877,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15tjsjcff0mcxc76qjrspmc8ml53yg9px3d2qgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dm69hwemcpae6gdeaefkg0h9njvr977wzywrkl\",\n                        \"reward\": 327600397555040755,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10umgrh373mm7ch9u62jxg6lx9z0736w5gxhwmc\",\n                        \"reward\": 8262389466007280328,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nmq2n95gaggzvrhx3yqwm3dxtrmxy8x5p3w7rh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8e+22,\n                        \"delegator-address\": \"one1ckyzz90hwkcjv9ge2rc8qk5g42kpt2vcha7pek\",\n                        \"reward\": 1.821242948453617034279e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4668618553e+22,\n                        \"delegator-address\": \"one1vg7kky6letf237h5ux955ckqdkmhn5lf3xlvvl\",\n                        \"reward\": 1.811418892359495256591e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2e+22,\n                        \"delegator-address\": \"one19hjspe6czvrpjwagf48yg6f85jdyym9vaeftg3\",\n                        \"reward\": 124390081057921986303,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4409852124e+22,\n                        \"delegator-address\": \"one15n3hvvk4huwpp2zxtcvj3jtl76vxlpkjfhr4f5\",\n                        \"reward\": 1.015694835153421918839e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16wtdjr8nxrm0z548hg4yffqkmyw9av76e9fej0\",\n                        \"reward\": 93926233790695048,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fqcktwuvxcf807cwa86d6hfjvwyrj6tscayfk4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.78e+22,\n                        \"delegator-address\": \"one1r0tp6l9g2s4m5np99ec0ugu0kvqc58nhq2mega\",\n                        \"reward\": 1.022100607633607491899e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2652093865e+23,\n                        \"delegator-address\": \"one1j0nmr445gf35lskevtac7khtudt5vah27af2c9\",\n                        \"reward\": 134533143799469590865,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.331159009e+21,\n                        \"delegator-address\": \"one1kt957tv5v6h3ez45zpvwyyu59c2ej9dx0285qw\",\n                        \"reward\": 8043309487638324505,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05125609e+22,\n                        \"delegator-address\": \"one1jcmkvsp9evsh5whc6ads9v7edlz4wt8dj4t94p\",\n                        \"reward\": 35222808980372248973,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1qy9mum6mtp5j5u0y3ekaqn8quahvsezavxwu32\",\n                        \"reward\": 27779208238848090657,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.024195e+24,\n                        \"delegator-address\": \"one180mfv4dneefp9g74duxhspjvkmcjffstd0sj6q\",\n                        \"reward\": 3.884216105305077223987e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.1958749596e+22,\n                        \"delegator-address\": \"one1jqyqzpzn254es340qw87egtdh9v9mk3nxnt983\",\n                        \"reward\": 2.213095729631406431423e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.005e+21,\n                        \"delegator-address\": \"one1ggkud93905xkvgkquykrrn44ftzav7ztmq2geq\",\n                        \"reward\": 3784112035429104264,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1drvtd8ry50teatkmucae2tajg7ngjr7cdk02ul\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgsdhg36jdsst6hpagxxum3ncmgax5amqawptv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vu3pkw43u759zfanx6p93qm2mm9847r8kqv5m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yy96kgumhfw6tjwdkxtspju4qf0sc9ay4tf50s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one17gpf07jvactrjk6p6l67au55ap5nd3sknh8l63\",\n                        \"reward\": 385889918596938991440,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one150gdz40c4sxyfzgk8zsdgq2wj6282e9slqxap5\",\n                        \"reward\": 36064367682029191005,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+23,\n                        \"delegator-address\": \"one1983tu4snhurnned0n25jn55s4v7rmkknvqfu8g\",\n                        \"reward\": 5.452731482381696070389e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0016883e+22,\n                        \"delegator-address\": \"one1ww5utn593pfzzxxtvv2v75xvpjty3flynrerwa\",\n                        \"reward\": 33556281689311023924,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mhkkmleul6fnf3ys77perp85whyw30m8dkanq4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.8918502865e+22,\n                        \"delegator-address\": \"one1fn8hktfm3xhknn9y9ptw0wj9evcn0xzmr5cuws\",\n                        \"reward\": 557537736034942152909,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16n9hxeww8hefagsu9anaej3cn5ggt6uu8s9xqu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.859249430421e+24,\n                        \"delegator-address\": \"one1lsjmmrfte3cnteuh5377n964mrgl5tcfjgha63\",\n                        \"reward\": 1.116390743129813079511e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uclaccq744v8j9xzqhdwxncx0paduaw5ymgpz9\",\n                        \"reward\": 78103705435257050,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtttzprrpvgeuwjsvkcyz00lftpy63kjk4yd82\",\n                        \"reward\": 3.0263697942972281785309e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.2e+22,\n                        \"delegator-address\": \"one1h3c297r5erstzj2tdqcp6qnr2vtrtxwnx9g3kp\",\n                        \"reward\": 257508907992200201903,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14q7wnmtx05acwacn0kakr866qupvhzgw20459s\",\n                        \"reward\": 7422727178851068557,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.495042129e+21,\n                        \"delegator-address\": \"one1q3v0wr00vtzaz8r2zm8cw9a46urr6g2v4vljuy\",\n                        \"reward\": 90960873502495312295,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one198323cmhlxeeadj9auhpdmc4vcn8c2mv3e4eg2\",\n                        \"reward\": 363949420175416265,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.38331e+23,\n                        \"delegator-address\": \"one10dlpldqlpf27vdlcafrfj4augx47lmjms7ev70\",\n                        \"reward\": 2.528364206089799422331e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xven3mqyznvta70g4nvum0pk3pmrnyzghf72vz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qgkqpscscfp7frvq6enexlekj6tz4u6r66phy6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1khhv78nax8qgyygutvxmfawz3t4taztqv4mrdm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 734957598275767887653,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.5e+21,\n                        \"delegator-address\": \"one1yg5cuu5m8l92gsrkxm753vxe74qax3u2m620s5\",\n                        \"reward\": 117671691966966793988,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mv7g0rj2dqfnw9jgqqxa8aqea9g8dw4kay77gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d2nafxk24ufu2rw3q96am8juun9jjct346rq2v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12yctampe4hqeug668v48kd2tvm85j0u0lk9lh9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+21,\n                        \"delegator-address\": \"one12zl2qe4d0hfha6npd4yfqz4pl2tfnm8vxdx2lw\",\n                        \"reward\": 61354469932427627801,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1019e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 451575556931779816020,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tzjapdswlu93wr0mjul2vggs8x5mqqeelk2pt7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.8876540491e+22,\n                        \"delegator-address\": \"one1vywd62menh2c2ec5ygl3sklaa00u4edqy9e55x\",\n                        \"reward\": 2.306764795350885343081e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.700199795e+22,\n                        \"delegator-address\": \"one1lpy9wdzcvyek6g629zzv728lnpmxqzqyxhvpl6\",\n                        \"reward\": 626879751994741697113,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.64458679694e+23,\n                        \"delegator-address\": \"one1yn2xlw8t5ck0zazfyf7jj2s4ynz3n3wqa538sq\",\n                        \"reward\": 1.261626637463067882626e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9281350126e+22,\n                        \"delegator-address\": \"one1hwhv93pg3rvyjkugql408ta9rs2x5llyg4mja7\",\n                        \"reward\": 2.844724756550770810022e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.37152326589358032e+22,\n                        \"delegator-address\": \"one1sffdq79x3rsj3r52wmrwehltr7n6qr0w658m0a\",\n                        \"reward\": 20243775356690401653,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one17yxvhqkgcq7l6jdass56ndky38me2jntzgd8wk\",\n                        \"reward\": 2747440351481661133,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                        \"reward\": 465264289531884893710,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.72e+21,\n                        \"delegator-address\": \"one19day69t6zzqrk3yr5086v9892c9ajvkw84fegv\",\n                        \"reward\": 1807312803484991798,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6e+22,\n                        \"delegator-address\": \"one1z9uyar8g43em3ejdm779qpy5sc2uaxcfayvr7m\",\n                        \"reward\": 2.127964314397613819424e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1jnhe7t700jh7kvladwaug4uajwrhszweenfczq\",\n                        \"reward\": 2.326321447659423643426e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.502410756e+21,\n                        \"delegator-address\": \"one1255krzxrjvkqdd05jmykehrn7qn8f5av8wgaut\",\n                        \"reward\": 8988645842809617497,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8105e+23,\n                        \"delegator-address\": \"one1zr3y8tr2l5djdff5wjvtf0ec6j2shsp6rp5j80\",\n                        \"reward\": 63768397723234959842,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6m2w8t0p3de3cjleu2t2duvspas6366jtf8da\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.467e+23,\n                        \"delegator-address\": \"one1wvaxshh8c7kxda02c5pszvme564274x3uaywek\",\n                        \"reward\": 246409161961832717175,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wx7e8m39hls5m9vcdygkr00gu74trys5de5npt\",\n                        \"reward\": 35901604665431550,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ew2n5677rufu6e8n32j8pmvkgxt7gug3zajgy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.36e+22,\n                        \"delegator-address\": \"one107ljq48fq6jha5w88jaj365lkgq2u9v3hughrz\",\n                        \"reward\": 1.098023723295249029462e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zf9gchjhtjnk95h6z7cf0duu76wllfmn44mr8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rjyg5f8cq2utrawfe2hyck96ac7z67j4efgswm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ep8zv2rmwk7e6r5hg6aac7egxy3nx8tcs405q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1fnrlvje767q02th6xgln763xvplw5pswwkj77m\",\n                        \"reward\": 4.652642895318848681912e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.8e+22,\n                        \"delegator-address\": \"one1elgrh05nuesu9chyjlev8rlfexfsq4a87xtp2r\",\n                        \"reward\": 88422559105305551437,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d27l9g8gu0eywu5djnrckj56j4c3mpy0jktcq5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1geg6nmczn4wvgywxfz74e77uw9evtpzt5hx9x9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jk5uzutcyn2zyrp7natx68hz7p22gpytjk2n8v\",\n                        \"reward\": 1.086667863582757748761e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6xz73724nja8cn2c2d2gun2n5nenyr7da8r64\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.215e+22,\n                        \"delegator-address\": \"one1ya3tc2a92rdx80rr2wzh224wva0h7ud4mg44ye\",\n                        \"reward\": 565296111781239547051,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.49916e+23,\n                        \"delegator-address\": \"one15lud93j8p5q0q0ylk9m00x07w60luwsqhyc6sc\",\n                        \"reward\": 1.806204844428195271666e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wkz7xxgekjktysv3qnklfsh50x52k5g0gcymks\",\n                        \"reward\": 348413271990572510,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.061929e+24,\n                        \"delegator-address\": \"one1hqzrmytdwszq36k3r2qjz35stqtgsnpfnnrj3t\",\n                        \"reward\": 1.72128531310869514233392e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.3014e+22,\n                        \"delegator-address\": \"one10n69q6nxy87ug3h79xtc39z0rua5d3405z4jvf\",\n                        \"reward\": 1.20299661139672819351e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lkdw6ascfx4kp7k0qmc8gnkt4d0k3z476c7kya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1000000000000000000,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 10538091652200695,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1setvzlsw2ea5ncgwnj4j0grlfrk38y3pgzv6fh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l4rd6clwq6434kgc59xmygktlj2m8257plgtzk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nrdllzasmpe4yapkw336aa5dakfn387sgks8v3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.422e+24,\n                        \"delegator-address\": \"one1cl46vhd99u6rhtyuqac823a0cp3ggv293yd0kj\",\n                        \"reward\": 1.928185419934951242012e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.486e+21,\n                        \"delegator-address\": \"one1ywc9hx6fuq5phjx8gshlshn9vx6h46utu7mm7z\",\n                        \"reward\": 394823276096757292651,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5314189913e+23,\n                        \"delegator-address\": \"one1386y40w9z7aln97q3m6jqkshhzmc6xlsztw022\",\n                        \"reward\": 4.064747821334546688906e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1mw5je4ha8cgtstn378f6g4zqpkcng3rwfpukdv\",\n                        \"reward\": 316142749564989554901,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awk88qhn4wk2mj6pwkqd4utlqjcl8sqnsu4szf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pzgdvkce57c323l55l8nwkr6acrswtezlpwsgs\",\n                        \"reward\": 282138627287262020,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.97e+23,\n                        \"delegator-address\": \"one1muus26kz85zfn8lavcgxlt2n9zcxeza3d9tl4m\",\n                        \"reward\": 32849374792938690436,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.30800174219e+23,\n                        \"delegator-address\": \"one1f89ukcyjg6787xp8a2ehcwgyw66ud5at5chryz\",\n                        \"reward\": 2.1328150443780185735906e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4291614698e+22,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 45543181508454742434,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.26121429761e+23,\n                        \"delegator-address\": \"one10ayjz83f0lrawxtpcryc4xrpjhtr4a8p9aure0\",\n                        \"reward\": 1.869574797563338373513e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.25646244e+24,\n                        \"delegator-address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n                        \"reward\": 40582559298922862860,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 263588473032419175837,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wma490dp0qd5f085er2d0yj6apgajajv5j4xme\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one1ps4gky30d2y60q59ydu72l7dtch6zvvtmu6x0z\",\n                        \"reward\": 21588865991878399294,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xrctvk782mc4gx49nxl69789mu3qluj7zhtzs\",\n                        \"reward\": 42371149175242284250,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.66e+22,\n                        \"delegator-address\": \"one13j9jlkf9mtzg0n7ddh2hcrdgmgzayzsaqse42n\",\n                        \"reward\": 762170044140210615104,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 21222258294601163837,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333400000,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 1241258456,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one105nyzvqzrxlfa3h67najs8yr3q0vjmrpwh7d0c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1996282776e+22,\n                        \"delegator-address\": \"one1fxtypxnzz0vll0vtpea2m8h9utx2vpqjjsmp3n\",\n                        \"reward\": 1669367472107611161,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2616775306e+22,\n                        \"delegator-address\": \"one18cj3m04q7zwk27v2erw3ss5dakyh6xzc0kl8pn\",\n                        \"reward\": 3320114024653619339,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mrwqtg50qjgq8npv5w9tgfv4gm5lc6vd92s76f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w6eu2vs4tdcj6358jjz7x7rs6zvx2vuqmpxdkx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8153743862e+22,\n                        \"delegator-address\": \"one1y7xuplxq9ls9n0fh9rq8pehhmu24lz3e3x349v\",\n                        \"reward\": 1.29264700012125230569e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.62428486939e+23,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 414570665668957760541,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.92775939e+21,\n                        \"delegator-address\": \"one1te2tfurcvk678g9j5u920l72jdz58fr0lrkpsv\",\n                        \"reward\": 291709089971391908628,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.46795e+23,\n                        \"delegator-address\": \"one1dg9fn7ggg3l3467cxzhcd5gx3tcy63xvn29299\",\n                        \"reward\": 1.424087342599600003271e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one19jvw9uruqem0hehduv95km63947p4cvxfgnsg0\",\n                        \"reward\": 27439669835498843920,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.64e+21,\n                        \"delegator-address\": \"one1jay0mcp3fuktvzacnld07q3kmjklwttf38dz7f\",\n                        \"reward\": 258954159575349349798,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9541556469e+21,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 23872065843232641081,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one109ga287k9pkqg3en8jg2hw2r89tny663uw5vhm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l6v5djd7ss7axpfxgr9rq2v2chp3trnvhzl7aq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.115e+23,\n                        \"delegator-address\": \"one1g4upvdt9xcnkc9mr5t0nf6pvm8ez7vu5gqk0c3\",\n                        \"reward\": 682197822619271991122,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1unmae47j2w3q9vxqs8fjpa33u8eu8w5dfsuh5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.006e+21,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 94906053419409860903,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14jpg7vpzg486swvw73mqmtm4zqlx46unwfhnsa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5e+22,\n                        \"delegator-address\": \"one1n55puv7gmz74wjnskgvqeqc7tswjh04sjdyjxl\",\n                        \"reward\": 1.332624713896362265835e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one106sl5gesjwu0lk64jpntytkxaxtmlrxxufggw5\",\n                        \"reward\": 8531112597863271629,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 7.45053191e+22,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 4.61006e+23,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 761918005628003343796,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.375e+21,\n                        \"delegator-address\": \"one1h2kljdu542mrg6zjv33w9nfwt3lpxnzhn6dscz\",\n                        \"reward\": 15871260668048968187,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xmxu2t0c38gc9l9gc2dzkp7a2nh79eucuxv4g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0131e+22,\n                        \"delegator-address\": \"one1keasa5jnnjwp7u46dxz375xmdy8xqdunw8uu3e\",\n                        \"reward\": 424107049496527905110,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18l5xg4wgtl8aqjnmjx3tv5v3fp6c3x89tez3ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15y6dh6h4xm6lz9h3pf75v5jeekfwswkftr5jj8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.8503322414e+22,\n                        \"delegator-address\": \"one1vwfplktczvnlt8zht3n35v4za7wez35krwzekg\",\n                        \"reward\": 250030930533406294736,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cn93rndj40fsdstmzs4sv62ufgch2g52y8lkrw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10z6ssedgr9a46ycyy24m4czy35qmjthcxft8z9\",\n                        \"reward\": 468161202696926615,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rr5n6qvjxlyhrhnkzxtjslzffrp4trl3wtsuh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17m5k33ewe0gv0p295zh3vy95yqdsrzu3s6duxn\",\n                        \"reward\": 589780902106407702,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.30494246e+23,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 247550032450642298074,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.06724e+23,\n                        \"delegator-address\": \"one1n8cqsgwg5lz3c5cmrs7n0peulc43z9mpxh0x8g\",\n                        \"reward\": 19233278401544876137,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rngtzh253g3k62v3pg08u2zj3gvf2xd3v9a7en\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.8078148395e+23,\n                        \"delegator-address\": \"one19dreh280f8vlt4e3p7pp599hrm2d2e2akfwd6j\",\n                        \"reward\": 8.953048256806930735475e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.02810428527e+23,\n                        \"delegator-address\": \"one1gukj9y85emgwnttjvk2svar2986a4wh7wjwzev\",\n                        \"reward\": 7.898419109570550552612e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s5sqy8ufg5pegfzv6j4a5n879udsaasu2u5hdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.487518e+24,\n                        \"delegator-address\": \"one1963vpvuj9x4l5defkk4dkx8de7lutnvdr8hvdz\",\n                        \"reward\": 2.9113788841895587371955e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one127ytfzx3vqnknwj5fjq9z8ds0xtgsuhutwd4kl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one10gs0ej9wqegnds3skh9kz5unugls5tles8pggx\",\n                        \"reward\": 77264513413324046082,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.692815522e+22,\n                        \"delegator-address\": \"one1s7uz9fdnsedu5ljxf7nw5tewg52s2d9z34clnm\",\n                        \"reward\": 314263712384179375137,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8475e+22,\n                        \"delegator-address\": \"one1svw5m8w4mztmp37l7p72tkglqvfvmfqluddjcx\",\n                        \"reward\": 22836795213761524363,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vh2pxsm52m73k9vedcppmx9jgrdawevkfge9er\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xsf70cu7uuu5k6f0kpxp9at8r4dmg0sttzx40t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+22,\n                        \"delegator-address\": \"one1ewhakak5wfhjlk5aulejksp5eapqpg2pm27qvt\",\n                        \"reward\": 99202200386414948625,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one168ut7jyqxcyda7sm58naqemqv8vrh83tpt9lue\",\n                        \"reward\": 86040709367767320,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1epmjydqkspt3kev3ezefy4m88nm2dfkjanjtkr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1e+23,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 4.863936152517701458613e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gg8p84y09svpxa5xlqc36v4epwyjv8mk0cmrj5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4e+21,\n                        \"delegator-address\": \"one15whh9d8nl74d46fc9jfmfszxw8e00s4ctcrvr2\",\n                        \"reward\": 61806539519884925897,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2000899e+22,\n                        \"delegator-address\": \"one1m8364hzzjdxa77zcydy2wqkwnz24dks5k40jds\",\n                        \"reward\": 325971693008027813034,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10dc350yl5g9sqlfkphcstq4rhdzmhnyxa5mn0e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.20007959e+21,\n                        \"delegator-address\": \"one1jfswdzr7cruvpyp2t2ed5znun6uvku7ynqzq22\",\n                        \"reward\": 150005330130737867764,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qka5ahyct3k4hc6gqujedyj9xq3d68nj0ws4st\",\n                        \"reward\": 1529651064266678536,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05e+22,\n                        \"delegator-address\": \"one1qj0f0dwg4jr8lmguxafsuu4pejzcmvz0e277ld\",\n                        \"reward\": 130682655875383303386,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vcqez6s3crzmj07kfdy2jz0kd3j0s7sk5qrdye\",\n                        \"reward\": 434848277155855653,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19kytp473xph76ga5fflu4trl86sr25m7ez9ney\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s8gms2ryuzghc3v0zqcasyfx4j2pkmtuskwgn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lrequvd0kzut0mwgfpgv9yqs8973rmhnshx5kp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.577599995e+23,\n                        \"delegator-address\": \"one17yk3vcj47jdm04p3uq2yqpm4sp57vjv9utlh8t\",\n                        \"reward\": 47336203388664502722,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+21,\n                        \"delegator-address\": \"one18prt8uam55vsy23j403zykx3uvxs6f7xrs4g56\",\n                        \"reward\": 213660083305612672487,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t0vj7g9gp4tuyhgrgsgxufhfeqwlexdury0ukf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fj9k0j3ext5a63l6msqr0rnq5nlgnrl2hwj2sd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1fdmh4z4swl9cgmz7p3spulchm4sw69wvuquavd\",\n                        \"reward\": 40141816677943880098,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t29eh6egv870g44dwzx76d7awrwc04u4acmlsd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16cje0z4pswgck88eprtrd6v04jdy7n6vpcue3x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.21989e+21,\n                        \"delegator-address\": \"one1r0uhfdksp5xwvsg9yzgugz3n2ucc4re4kj8s8y\",\n                        \"reward\": 145144951049315686729,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0067437165e+24,\n                        \"delegator-address\": \"one1khau8lyy2hqesvve6wp33ful5d3yysuemy97w6\",\n                        \"reward\": 8.469240090278381540886e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.77461199e+22,\n                        \"delegator-address\": \"one1rcsp47uf3vv3v5pxg5qtv0wr0kederjw9c0mc6\",\n                        \"reward\": 810713010315964849809,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one10296elh4n0ul6g0kr9nkggzjd80wrus4ef8wwt\",\n                        \"reward\": 98455625428776082728,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.905371041991e+23,\n                        \"delegator-address\": \"one1535lajr63fwupkgdq59zv0mj9ukuty682pyh28\",\n                        \"reward\": 2.3258968571039935482898e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0633683634e+21,\n                        \"delegator-address\": \"one1prc5xaxhrwhzr6t9npwntw5jvrtjun25hkezgg\",\n                        \"reward\": 84684372268284564767,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.24358322645e+23,\n                        \"delegator-address\": \"one130d8hfdqls45qv5937pszl7pla3094tkgluhe2\",\n                        \"reward\": 1.0996733369770288327026e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16jahlu6ejrtjtc8lsqkjwstg56dw64k9a0ft4e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jzzz2qrwn62vd8p2v4ylkteyey6k9d9mnm3jpt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19x784ltvty9yyau22y4xlc5yuq3lqdu0flew7a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8105028e+23,\n                        \"delegator-address\": \"one168d7cx7r3f3el9ytytmz04vpmnlv7a7mpyqsf4\",\n                        \"reward\": 37695436326546857104,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12t4hfhh0am0jzt834yjsrg6s7m6x40whmh7rf4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.94846659786e+23,\n                        \"delegator-address\": \"one12qtcvz4yd5qa7dfdmqnxmpl75ktgnhs6jp6e72\",\n                        \"reward\": 1.248770999838404826791e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kh5pn90gclnqwm2hwe7d44nzywes4r7rxjmuah\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one134ujy0hvfu4eksfprrpawyn6szkmg74cdd6zwf\",\n                        \"reward\": 466680312199047370797,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.30056e+23,\n                        \"delegator-address\": \"one1vuw02s26lxyy8w9k3y9crfsxkq50hfs045s9yk\",\n                        \"reward\": 648925171436532122864,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n3dvsup94cxne2zeq7tymk8pheevq2weq7m4qe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cakutxh9emrat3v0gxs3ueuz3pfxtrfhmjk7k6\",\n                        \"reward\": 83390670679433136236,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v8ejrha2wa0frec26dzl7l7k7fdzndq83c89ym\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ft9sknz8cuq5sc4p9nhvuyysu2ejhsznjqntv2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14srkg3xaxywh99lstzxwq8a4lc6hr5hljudqta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.568e+21,\n                        \"delegator-address\": \"one1crnkhaczv6mu98dwpl7r85u2sqt23e5cuyfl3k\",\n                        \"reward\": 66523157229827652326,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1e+23,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 9.767494519661319998282e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one106uev9a2m4rca57h4wn9z4ec63ada7yv45cwr2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0500312216631e+24,\n                        \"delegator-address\": \"one1jnm0mmlw2rur0hjvq3nl4uw3v7r9fd3gjvzcna\",\n                        \"reward\": 7.620404568975036938502e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14x79dn9qunnputr3n0z3594ve7lla77vc3wjrr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19h6dx8xfq0xx2ck5nlfpt04m8auhgd8zj4hz54\",\n                        \"reward\": 77944814749214800587,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.8710102294e+22,\n                        \"delegator-address\": \"one1xlakwxsagmctysj7p6wrxjv0f3eq7gm9w4myf5\",\n                        \"reward\": 220840906253373679401,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8e+22,\n                        \"delegator-address\": \"one1nrd84ldj3ldtdwz5ktrcqvvekuavpeypwz3lpe\",\n                        \"reward\": 155283847433040951311,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yzw0t2u950des2ht08n0secrpaqpmvg7pkmqtj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1efg6c7xt9n2e9tmak9qmusee6xlxle6yc76ef2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ls6n0ellmennql73l5hxnvmqw2n5pkrs54qzzd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n                        \"reward\": 261906980842182653559,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one10zsqhjwjwq0wuda38f4y3d7wdymfkcrfkmezqz\",\n                        \"reward\": 7157963699779781804,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z62wq6ucttx2ksj5v3s0vk0hup7xg0yez8qkyw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pe9xaa4m7jglfvggepl6h2y5yw96cgez4af0fu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xcy78f2hs6wmxxtgm7u5gwtc73m22mm72yj0c0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1a869ad50qkw0446x3q3mhzx7fm0azx5fvcu7wk\",\n                        \"reward\": 180989807196000937545,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dlj0svnswquuzv76nsyxm3ydzkk45hnwjyxk4q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ekh606mdw0wnwxt59semqa79fg0ajgghqqf9tc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.258e+21,\n                        \"delegator-address\": \"one13eec5h4k6xw5h8up4duqzpvsdtcrypnekqjnhy\",\n                        \"reward\": 4192691903916753791,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c4jxn9c2d9uwqhnq0fqu03zj2v3qads8sk94mz\",\n                        \"reward\": 1746573432900406952,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15ad34lhszdnz7n8uvnmuzd3w0ay3vy8fdt3343\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ngc5dszhtu803cs84yxqnh48j3d9qh3p6zq4y2\",\n                        \"reward\": 1154045737765342779,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hdf03n7fdms7rakkekse7atftnl42vm299pcap\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k3sudc2y02wsphf5drmmycuej22wdhtsgraqwf\",\n                        \"reward\": 11891798783209185,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dqlljeense9cz595wnsvmkyp47dur62803x7cq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one186xg2tu7p8jt8mp074s32wys4snxzmt5e2mxy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.053582102e+23,\n                        \"delegator-address\": \"one1chyd2jpup03tyrap39xq6y8dd6xjgp6k64q050\",\n                        \"reward\": 8.478387298095446366122e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.431139991e+23,\n                        \"delegator-address\": \"one18cmmgwrwhnc4pr4jxft36yed8mgg6rz7sc074x\",\n                        \"reward\": 5.908582427590144339912e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1djx6qlsxn06le0wp8rhvg6tck5n9fcv8flje8n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.90098018e+23,\n                        \"delegator-address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n                        \"reward\": 1.4393784136648969133978e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+22,\n                        \"delegator-address\": \"one1lepx3x4qesefqs3cttj6t26hf4mgquzgajngxx\",\n                        \"reward\": 1.073617980793295301618e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1679e+23,\n                        \"delegator-address\": \"one1jgz245wkzq7j4nynkhjdjyachr05rd99fmcd38\",\n                        \"reward\": 8.950358403318963014667e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qup2xu4zj2m7aeld7z7cjkcw8fpspfaprs4tc4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ecuwsacaje5lv5fcslk8v73khhg866dymg02y4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3991e+22,\n                        \"delegator-address\": \"one12ylp56enepn6rz0z5zyvysxcjnz3tmeucvr72f\",\n                        \"reward\": 1.79180383325915983219e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one107sauhfhgt8s6lcjw8r6uml9rzylf6s2n6w2v6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05e+23,\n                        \"delegator-address\": \"one1el98y4fmcfnm9ax623rswxpdntdl6wkc7n2zd7\",\n                        \"reward\": 167356843200489162194,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.4e+22,\n                        \"delegator-address\": \"one12kkwq0tg6u67p8kp9hgsx5yqlatzmm3vwlfvvs\",\n                        \"reward\": 816853716884068280900,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.67859e+23,\n                        \"delegator-address\": \"one1tk90nrhjww9dw46vvm6gh3rljrweckcxf76jre\",\n                        \"reward\": 2.698333516299175499537e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0411092318e+22,\n                        \"delegator-address\": \"one15mdeas4ays7ypumqkncpey3qy45uaplzsstsxc\",\n                        \"reward\": 265870196254564824801,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1l94nhxwupg537n0de7fspyz0rmw78zq6ady6rr\",\n                        \"reward\": 28455922475184614569,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1kf33vtpamnr5xraq8lf88rnkeagf72payxmulf\",\n                        \"reward\": 2.851180203408449132007e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ju2tg5mcqqz2n2tjq3l8ngfdcu47gg8mwxlus8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkr4mqpee3gqeykql0cchmul4e2k5x35h9kutm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14xvqeuw9v6mqarw5uathtys6wc3r228sdyp7hg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vtulqgfjsjm2nqkdzs5u0g00jvh2tyhql5g07x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15m5p65tgwlkc3r0xqvy3fdpf7ae7hfkma5647h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.031266666e+21,\n                        \"delegator-address\": \"one18yr4x62lnecw7avdk89lk4l02dwuzv6p7qpr7a\",\n                        \"reward\": 53533754065921921242,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3164e+22,\n                        \"delegator-address\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n                        \"reward\": 8143224713783272172,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.50852237e+22,\n                        \"delegator-address\": \"one14vefngmq30m5958mgn0afd7qpv6cmzuqhvmss0\",\n                        \"reward\": 3.818984965809029846871e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hrkv9lgr33x928ccmvrf6j2arusquuvegmp247\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.56020883851e+23,\n                        \"delegator-address\": \"one1cum28uhfq77u58dq9kjkhnpuwx4regxw9p8met\",\n                        \"reward\": 2.184034920615003657163e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.233451177e+21,\n                        \"delegator-address\": \"one1yq8ucqv4cm9w5ctly3ug77nzw0ph304e5p5j3m\",\n                        \"reward\": 215496349338866094128,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qn9jwx2mrj7jx3tzls7ejhtc2n8k9r408u53gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t3833th0g8s0cgp0lvsx2x3t2szeavuryy63pd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wd5my7w0zuwxj3yhj5jda8tqxns2ghj07qm5up\",\n                        \"reward\": 813815995918632468844,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dnmp4t7hfr9jwqmlkky2hr2vwyu8gs0sr5ctkn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.302e+22,\n                        \"delegator-address\": \"one1axx0khq6c7sf8y5qed70yengk0elmqezgs7sjd\",\n                        \"reward\": 3103117903484086656,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h06ppdth964lm5229jxhzysv89q4yduk87j0kq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qkf8ayatnc64qx3x5lrlpvne858lfza7zqzssl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.06599e+23,\n                        \"delegator-address\": \"one1l977xd75dxatsuskg3p4wyk6w3fu4s2hvl8jk0\",\n                        \"reward\": 4.281422102499369218952e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.216e+22,\n                        \"delegator-address\": \"one1mp9hnvwm5tc7hjuwge6n4llarmxclget7r93rz\",\n                        \"reward\": 883255640064032290548,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7608540887846e+24,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 1.534678514513811628712e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jap4ll2acdlf4sy8cfvyal49c47ggahlsw87a2\",\n                        \"reward\": 199403055250862061,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qyyva3l4tye3yau68wh37zng7v8mqytl4myesl\",\n                        \"reward\": 243990505476437096,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2222222222222223e+21,\n                        \"delegator-address\": \"one167hy5watz30yev6pdw4wn672puf9pwxadm080p\",\n                        \"reward\": 49089102490530608071,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xy00h3gafx2aufh59gh6h8ezcs7xu479qx60s5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfztqgaqu500unnvthwv02dv7ruemqrpvvr0gj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 43790674809709711899,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.02242559175e+23,\n                        \"delegator-address\": \"one1uxsj0exy22snfdf95w7zwu2enwux2x8gskqc36\",\n                        \"reward\": 102160431723695769793,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dxp2cj58k4cnurxpm5z9n2uu60rjqlwtt25gfj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19zhpgyhd7qlcu09yswqqqdq9lkajwzqntz98rc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.02066e+23,\n                        \"delegator-address\": \"one1q4md9dlrlg9g7u6vxxunajyqm6llajudckww86\",\n                        \"reward\": 1.143426602304871843066e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1544st8jtqet9t7cjtrhhl7fgal5vx47zmkqth7\",\n                        \"reward\": 38867592183340354978,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lx34qanhz6vqkrjwvtuefnapqw0dnpnadzqq9k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tlqxc0t908dxhmc7cqnpsn70g2dlglsxhuh2rq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ntlrp4zqpvxeg64da0jmr5aqp9879kxfj5tca6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k5m6ed36nc7w9q7udfnjfuq3uw36uqu83a4cqa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.748e+22,\n                        \"delegator-address\": \"one10qeql5s0wr0qgcwxkn3kujkm0plj9vj3ycxw52\",\n                        \"reward\": 1.484042013363471095567e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wzx40csvjnx6ur6na52h7r4d7d6ftcaejsg5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1726az373v5t8rh5ym6cvvpp9xyh0dztwre204a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.107e+22,\n                        \"delegator-address\": \"one10ctsljtw26636yqr5at2fgjfxdq8ageadznvy0\",\n                        \"reward\": 2.814057254262054711921e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0302e+23,\n                        \"delegator-address\": \"one13wdexsqxsc63jkzd3lsgwrk6z8z2t89fml26f9\",\n                        \"reward\": 387722488503706004877,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.599199991e+21,\n                        \"delegator-address\": \"one1cjzgsuv7jcz2wqq8mvnuvcx5rf32d3dhvus55a\",\n                        \"reward\": 18661821627115476344,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e5ajanux2egt3nvz6jsuqdml29fl38dvh0v3qy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.23676e+23,\n                        \"delegator-address\": \"one1wfumtael9nv8p5jfth6dydazhseh9greur4l4d\",\n                        \"reward\": 8.256717482315754052161e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2428084081e+21,\n                        \"delegator-address\": \"one1jkpam6q00rgw2rs9hzch665tvjkrs5849p3axe\",\n                        \"reward\": 25320128584312805238,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7477083333333333e+22,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 9723790074018530961,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 666600000000,\n                        \"delegator-address\": \"one1muspgclumz379tgmyyzzuzlwujft68wrz8jlad\",\n                        \"reward\": 17503214834,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6415e+22,\n                        \"delegator-address\": \"one10ggqugnmnsh2j4ydvq05wz6jn72t2t642sfpgf\",\n                        \"reward\": 949560108314478172121,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+21,\n                        \"delegator-address\": \"one1rupud6s7vz82a8ldppcr4e2wc7wuqejxazsatz\",\n                        \"reward\": 74095435890301610494,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xay355zulgluakc7hmyhayme77sunh64sjglwa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6027410927e+22,\n                        \"delegator-address\": \"one1g0nr28y783vptq3gp4xa7qkrgkxj9x3pkmvuqz\",\n                        \"reward\": 5949009514504846488,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.02486e+23,\n                        \"delegator-address\": \"one1va8y04640m7tmjzv3c0hkmszremu3xsjyeghsg\",\n                        \"reward\": 1.205605488097528229914e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one135lhy9rv4ulw2tfvv6l3h95mn5r420n2rdsvt5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n7hz4jcy9ms509d3prf8393ymdgmh09vvpkvhl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1nm9datcza5wktzjgvyvwwez7ue7puwxlklna4r\",\n                        \"reward\": 917951527162815573883,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vv9tx5g809zfgygzwccsr05a8shlpcn7j6whp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mgesvhk7yhyc65mr9yardtsmgkyafxn8myfy3l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.213884e+24,\n                        \"delegator-address\": \"one1amv76s26wx8z26c9gez6le02jva5ea63rgpvqx\",\n                        \"reward\": 1.7306934918314772153946e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.029e+23,\n                        \"delegator-address\": \"one1z07k53gyypraw0r3ka6lsx64suu0muwh8mqy2u\",\n                        \"reward\": 1.579695785215874378545e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7424e+23,\n                        \"delegator-address\": \"one1lq8d9ff3hfux7978d7ael00ev6jrtgnc0hfjg7\",\n                        \"reward\": 35235512141695313822,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qt6pha5n7sr9xmfchhccxtapr7prnymyhk5t6u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3e+22,\n                        \"delegator-address\": \"one1apvzq85n7ax9dwzh47dlggk87ps3d7janugw50\",\n                        \"reward\": 887329015577676255826,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1msph8zcpfnnzf5v32vp0gux3aqylkw9nn60cr3\",\n                        \"reward\": 18774321826246745206,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n                        \"reward\": 12167920310479342047,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.069791e+24,\n                        \"delegator-address\": \"one1elun7egkk9lzlnr5r8kqh0p4gej5uk3dw4ea7g\",\n                        \"reward\": 1.993342308602328705008e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n7kyfsl7hkjfpylvu68sj3hac3t6ylhm9n7up6\",\n                        \"reward\": 162078200144891055,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.0628e+22,\n                        \"delegator-address\": \"one1c9vcf36vyxgw242rf8s45erzp0ajgrtr5sa6nq\",\n                        \"reward\": 998802174128849490815,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v9yk732v6e3reamu33zgt57thpg753vyazuj2e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.09205e+23,\n                        \"delegator-address\": \"one19f358u2al0457q4d9zfh7lvh4aeu9l2jvcjqct\",\n                        \"reward\": 3.599610259373767514452e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4674e+22,\n                        \"delegator-address\": \"one1qch57lkuudl850ner7xsytezwclzhnzztnkazr\",\n                        \"reward\": 80581601771010810941,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.082158e+24,\n                        \"delegator-address\": \"one1a0sy6uju6s3p54c7xpgrnxsztke3jjv5shsa2p\",\n                        \"reward\": 4.7202372447477596079793e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m9ucetff5lclvvthhxfsa80qy50ugxl0gtzc0g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v94se2j0mkdjfa32xtwwhcz4kxtk82mlv3xd4k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x735wv6fqlkfd6n6s27h7td3x6t8qhkpzkevxm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rez9xg8hpddswd8cc09njdlp724gdmmsg53cmh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.75411171677e+23,\n                        \"delegator-address\": \"one1azvl4jf93ndfx8886xrumqmvmta9cv453xak2f\",\n                        \"reward\": 222528633006458740150,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15twl6n78kduxv0fyv9808uk8t4n5smk2r47pv0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one147s9u5fa5lsvw87knugl47gfp32k49wnef33cd\",\n                        \"reward\": 54042460541987724581,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.577e+22,\n                        \"delegator-address\": \"one1ttswzlnv5ysk8rzfsfrv3fsz8xn0llpfx3ex5u\",\n                        \"reward\": 458408316358269523461,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.036879e+24,\n                        \"delegator-address\": \"one1yr0squtfdw2k06wmpqd5r3wqlp8dwdugzjyzh3\",\n                        \"reward\": 1.62752843124738578097e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one177tp9ns2ss2qd9k96zm57ft7fe3hq8u0xe5k4p\",\n                        \"reward\": 18393973271461097344,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1035e+22,\n                        \"delegator-address\": \"one1twwlhlkeek8necr8ujjuz9ses7r70lkvk02f2p\",\n                        \"reward\": 370916773017705359500,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.12394011073e+23,\n                        \"delegator-address\": \"one1j7ru64x7crvwaa7s85xspmyjyqq3e27efz6aup\",\n                        \"reward\": 275463249714907057554,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fu54c62wcqq2uhswlnp62kvgh6uwq4j69ke5rl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.563999802e+22,\n                        \"delegator-address\": \"one18yg8jqyp74h5t7679qzj2sk52uqgmatrjx0y8k\",\n                        \"reward\": 836252036701499061140,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13w6ngrruqzhxryell2zlc7pkv4lz602ln4tkfm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lelkq0v8ky7daytwtm46yskhzrxcr9rezemcs6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1v644e20vazwc3u2ktju8nhvv0aaynnm3ufqk0t\",\n                        \"reward\": 499511418957408930065,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wk607xfwee52l90luv295p5ha34wnwhq43utql\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.57e+22,\n                        \"delegator-address\": \"one1melnz5n9zdnnswd2phg86fafplnfeyzdqfucpy\",\n                        \"reward\": 1.257356210468077880768e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.73e+23,\n                        \"delegator-address\": \"one1pz2el9dk3yl8njzwtc0cz3l4vcmphvkepngt89\",\n                        \"reward\": 5.698681296035972984976e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.19e+22,\n                        \"delegator-address\": \"one10m3e5x9lp6splhh69fw0tfvulrxhtv60vpkzrt\",\n                        \"reward\": 450954755180865004623,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h7y8znxfcltckram228ru3y8cfpuvwmg5pnpqq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.1298e+22,\n                        \"delegator-address\": \"one17nt4c9chwp7pt0gq83ds0muyrul8c00w6hts35\",\n                        \"reward\": 70364331286413914639,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kcmct2rrvxhy0xalrjzgglcmmytdw26phzxg6v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.49e+23,\n                        \"delegator-address\": \"one1kl6wxrxhxualmrl5fshqzvs4unq5cc38esf85q\",\n                        \"reward\": 175261040543049119196,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xqfcamlmsxjcuvkurp4zvxr8eapfh7u9xypfem\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c0aau6shrtxqgenpf5ymtrspxpvw0sxj0c7hrq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.74599671695e+23,\n                        \"delegator-address\": \"one17c7aczc7vumaxw5lmxt9mh4w34lexar90qmdue\",\n                        \"reward\": 5.910289704741724850128e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1td7y4ltg6qkecmdxawltcl4fps84wl56dwvrlj\",\n                        \"reward\": 79520617961411951,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1441354e+23,\n                        \"delegator-address\": \"one1ffaq5r6zzztfshx88f02auc6mmc32d9mk9twzx\",\n                        \"reward\": 1.060616970602079347869e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19x42kdzxjfeqppjsvag3gdy3md3nmxve7stuq4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cvn9mn9zhww75ynp6a9ul8wrcg8lt6lty6wfvk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5423e+22,\n                        \"delegator-address\": \"one133rvnuneyvq5upwu2azeh6h8xx8n3ph2ztktx9\",\n                        \"reward\": 57907915941595192710,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+23,\n                        \"delegator-address\": \"one1fwkl8z3kt564zw4xw23epag678k903qz3nla46\",\n                        \"reward\": 124404929664738960089,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nffxvsrhxn94xpft9eyek7uxrympjgx0szm8ru\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.35e+22,\n                        \"delegator-address\": \"one1mzq04lpe6zq80uhp0zlnskrsnz0wcdwm7sytgv\",\n                        \"reward\": 1.236790876532819732152e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qd52q5gaef7rz2jqe3pxm9p23x2x77nhtlvvhs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6579414078e+23,\n                        \"delegator-address\": \"one1vm894jkelq5hfk55xch98aghhrrmymkj3wh9gr\",\n                        \"reward\": 9.913338197823779316015e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.31245e+23,\n                        \"delegator-address\": \"one1ygk5ccz40fuymgsepp88l6nr9wnd6w8p203gck\",\n                        \"reward\": 461516004346003480350,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0849e+22,\n                        \"delegator-address\": \"one1rqfu599geethz3qns5gagnsgnjtycj40tcs9r4\",\n                        \"reward\": 1.08106164794808213637e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.2686e+22,\n                        \"delegator-address\": \"one187cxwhsug4mhvn3e39u7ww3rf65zg45kftwmjt\",\n                        \"reward\": 3.456914669025816267835e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3808e+22,\n                        \"delegator-address\": \"one1lfatngvwgecp3gdclsa6qns7vw0244dcpvknhx\",\n                        \"reward\": 542067346526146236903,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+23,\n                        \"delegator-address\": \"one1gqvzamue2p0wa55lc90vrnwsrq4mxl9pvdhwwu\",\n                        \"reward\": 7.086440100068025075937e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1qgz99lvec53m696zzh4mqjapqfunqkc43fs22m\",\n                        \"reward\": 74594106316506194423,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rh4hg7vctf2xzkhdh403p5fmpzvamzt5ded5fy\",\n                        \"reward\": 3357731197415889257,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17ycjsfc3q5w9lpwauxg7gq9ee9vk8qyms9xztn\",\n                        \"reward\": 276849948578954583,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.406826e+24,\n                        \"delegator-address\": \"one12ttmzc7fr353epdz68xt4vyevwc390p3plymdr\",\n                        \"reward\": 4.7194098692714167924981e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h6dw8rw0c53j9dryhnp4xmmzrxr7emehq578nm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hj0ep089pnwqz4gvl6qxp4unpyd6u8xmntgx8u\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1e+24,\n                                \"epoch\": 316\n                            },\n                            {\n                                \"amount\": 4e+24,\n                                \"epoch\": 319\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.33e+22,\n                        \"delegator-address\": \"one1tz0a6pq5hnqq4scmvhku04j8yk0rmarhtu4wnu\",\n                        \"reward\": 487413481571491065528,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eqflv5wu0sldgpheflywqdk45m8g35fzyd8sct\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dxea4w0pa7v9m2ax08frgpmh5x4va5gupqcd4l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.20039e+21,\n                        \"delegator-address\": \"one16cdpf223f6ux93fw56m0zeete2vkmk60urd9zn\",\n                        \"reward\": 21424650940615969733,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x43shru04v9z7us4f0p954wrly4yv3230cc4ta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5e+22,\n                        \"delegator-address\": \"one1j0af3hsz4cy4jt03cqfkarg4we5rkxd0grxcfd\",\n                        \"reward\": 1.520718247109951688761e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.01319e+23,\n                        \"delegator-address\": \"one1f7h9e4mrnnfdn7vwp0xdhx50n66s0nd0qs0qjs\",\n                        \"reward\": 4.440001741388185518137e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1sq0jgnwl6r73h30v352jmfr9lfyy35m8vna0te\",\n                        \"reward\": 1.832381509667260893733e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.340301425e+21,\n                        \"delegator-address\": \"one1h5e29x3u0j8jjaw59mpa3jzwqs5t8ynd02nzvj\",\n                        \"reward\": 61637803278299719468,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.561e+21,\n                        \"delegator-address\": \"one1xvyfjz4ypmcwqxvd7q28xp3jwv5xy7wa85jr4n\",\n                        \"reward\": 5567953364724452397,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.21390599232e+23,\n                        \"delegator-address\": \"one1204pwu5enj73l6gew9sqr7a7wfe8w209rnzcga\",\n                        \"reward\": 955165530083046419260,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.58333e+23,\n                        \"delegator-address\": \"one1xfzszqsuch7sn052fpnw7l8lw7yzcx2j2yuj9d\",\n                        \"reward\": 1.3132055270071972783452e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.52424025568e+23,\n                        \"delegator-address\": \"one1dazcecu7hhhxy379qprmucn657kwg6fp9653jt\",\n                        \"reward\": 5.585979321597060699385e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one1q7frj9luhffqvg9hk0f4kv3xrux32gpcuyz84j\",\n                        \"reward\": 16722426250786560289,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19scw4lzgcrszqwrm3wky6cq9q5zfd0pzg23wex\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sv0s66ua6l82ng2t62fa5tlnk884n2gnrfnq23\",\n                        \"reward\": 37142335429230766,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d8q5vnw4ygqrgt0ukpkd7f70w66wvdfe9my47v\",\n                        \"reward\": 743191000057876965,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.9696e+22,\n                        \"delegator-address\": \"one1wnhm4jaq96gzk7xa0ch9alrez3lm3zuu3qaxfg\",\n                        \"reward\": 2.554193233955386522151e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mxcj56rjjra8vt969kh88pue37q0tfhhxt58np\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.255901845321e+24,\n                        \"delegator-address\": \"one1k4dg4t8z6z6xzp7vcc4qdwzs88456jjuz5d8v4\",\n                        \"reward\": 1.176235187879126998138e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhte98z8mlry6aq2ak885z7m8yvp54x84aj8dq\",\n                        \"reward\": 29249642815727185712,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rkczqp7exhwjknfcugmhgyzm7aww87ynhjsff3\",\n                        \"reward\": 29249611171685837632,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e8m4h3uca4czz9vkp3gmjfam8rh5n5pq4p53tk\",\n                        \"reward\": 31378407765605244901,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5.61105751685e+23,\n                                \"epoch\": 320\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1w82uqq7javex38m9qe2q8sw6kjsnu4g6saca7y\",\n                        \"reward\": 3.601445752436697256321e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17pysqg6242exfrul9cye3z4jqs8zymkqy4rqv0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2e+23,\n                        \"delegator-address\": \"one19ujzps78fdgks72vlqyxndhxj984qcdr56hu92\",\n                        \"reward\": 1.000269783355100142868e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.864e+21,\n                        \"delegator-address\": \"one1xuqzd8u0950vkfufylr2e8d4p5ud789x3alzf6\",\n                        \"reward\": 9062735117359565597,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.03698977729e+23,\n                        \"delegator-address\": \"one16hx27s8yqnpzpvsqrtz9ut828yt2rkqqguywty\",\n                        \"reward\": 97087977064874358841,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.2418106402e+22,\n                        \"delegator-address\": \"one13mr8sm89l0lju52swcalyavklhffamqn9zgfql\",\n                        \"reward\": 397945961311489845268,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eaf67zmhc9sjqn5ag9cjwv3zwpw0shthj6yn43\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.283e+22,\n                        \"delegator-address\": \"one1r2sk42erp6ctua03ywnm8dyqad59th7zfka8f6\",\n                        \"reward\": 371605131049439333860,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.488e+21,\n                        \"delegator-address\": \"one17pddfz8pkfy74ktn0w3g8s5rs6rdanhx2x6q5n\",\n                        \"reward\": 41275978051368682548,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.93825e+21,\n                        \"delegator-address\": \"one1nxa6safq9fmdnjuv7wrva63ytvse02rzxfaw3d\",\n                        \"reward\": 105819479820971176201,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sd69jq8flfklpfvr2pwdd59tcangfqy5zky0nn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3e+21,\n                        \"delegator-address\": \"one1ywrq5hgntum9d9vusqfcs8kkx2k2jdcruj204v\",\n                        \"reward\": 34414962277085065497,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 133333000000,\n                        \"delegator-address\": \"one1jx7wusrrnj2djdf4dus5cq07yw3fe2077j2l67\",\n                        \"reward\": 1105907340,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19hd5xwd7c5yr6yjlmfqkkmdkj0yyy3rc6pn7j6\",\n                        \"reward\": 1401722691672884596,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f3vml9060fq4s04xylew9he6x8kvsfmuqpwzx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13r5zsk8rqpdpg5tthsnkp7ghsktc8hyyg6df2a\",\n                        \"reward\": 2681226357840972534,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lq2vy64kf48ec9v49mtm4gc66j732kxyjqsv3t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuqvgn99dnglxr2u0mae0jaax9ldm6rzg27g4s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17kwh4wz3r6hsdepgdguwr80d5p6d330jn5qdmf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1918576862e+22,\n                        \"delegator-address\": \"one1nj0sa5q08qyjz2jwnkw460k2s9lttntqdk5x58\",\n                        \"reward\": 113339170701295512473,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p9xu93cks6p3tlzjyn0mdl6r3k4m37npyyjdg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333336000000,\n                        \"delegator-address\": \"one1ukrmvudspykg9efg7y42jz60g2yf3pk8tpnlcz\",\n                        \"reward\": 3309481605,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.001e+21,\n                        \"delegator-address\": \"one12u2447uclw3jms8k8zxh5d0zg7qvcv0yl9flcr\",\n                        \"reward\": 63601655319177115968,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.126e+21,\n                        \"delegator-address\": \"one1a5wskwncdpleca5lqn9h0hqnpdr560nmwgzaw3\",\n                        \"reward\": 13127908267960482783,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.62008279167e+23,\n                        \"delegator-address\": \"one18gxp5ulzqnap6wpmr843qkuvsh7gk9f42nw32u\",\n                        \"reward\": 5.364839755526484028052e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333334000000,\n                        \"delegator-address\": \"one14ut0r2v94czzncsgaw9zzlplyx33ztew4tyv5w\",\n                        \"reward\": 169656534084234034,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhxux6jx85p6d0xvkud9jqpshyex68k8yszkdy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vs945cklehzs7l6app86ym6d7c2ym6ud099l52\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1srfq7zzpnvhexsyv6r5qgrj3qwa9wyh722vxe8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h6umxzw83zq2d3j0qlnxfg2prh6peeyzpggdvh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m7dxwjx549q5t94w7c0ep0e4enucha70n0zhrw\",\n                        \"reward\": 2.2458278473263660740282e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uf2mck76qeug6qy9kejq2rjvtqlzw0uz5qx4dh\",\n                        \"reward\": 151382366039548401,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s37ayeq20mnxely7tzfaphvr7g890e2step43u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.501057127e+23,\n                        \"delegator-address\": \"one176r73u84pf97ft0qlnu4gmy9thhmykczw56c94\",\n                        \"reward\": 7.324126862254487259831e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 909090000000,\n                        \"delegator-address\": \"one1h0hh9ukt4h8h4vp8epn7z74gu8k63k95qsculv\",\n                        \"reward\": 9895560524,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g24xkdx2u2l2u0fu3v8cahwwnn6t0t3755tydw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9999e+22,\n                        \"delegator-address\": \"one148m6s5n2j27kst7genyypuedmer4jevvw8ay4j\",\n                        \"reward\": 215346659805155213724,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.973e+22,\n                        \"delegator-address\": \"one1wrxure40ykkndfqtrhjlkf4cjuyj0tvlm3zlx7\",\n                        \"reward\": 3.336608282005715995345e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gr9jcad897m45n0huttyrf2zq24wpwjx2rguxd\",\n                        \"reward\": 60492733418201366,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.55e+23,\n                        \"delegator-address\": \"one1qxhkrk4cf3qmvpl9f88j62khsmdqq6hddaa0hv\",\n                        \"reward\": 5.40300516539260927372e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1rjc3pnzdxdgghsdxvnlg386vzkuyzw66e4yvlr\",\n                        \"reward\": 34858097841241917049,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1dqm6nv6vfa8ks7mnprnchzsk6zggk9zcs44al7\",\n                        \"reward\": 341594702043710253,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xc7rc5dmvnmjrstq8vesre79hr89mu7h79v05z\",\n                        \"reward\": 5699484977850206442,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vv5hh7pw534v9qsq9wrsqt5mfg48skgkky59cz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5991e+23,\n                        \"delegator-address\": \"one1jn76tt2nfjczn2clnt5ptaessv97ehf7ua8jcj\",\n                        \"reward\": 627144067996848214367,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1940xav3v8j2z7fp9rj4xz009y2lpjgrglse2gf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19kcgd97z9adkeq7a4mpvt2ud6adtr3ynfmlmfa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4841e+22,\n                        \"delegator-address\": \"one1j3wcyd2w7ykezasz6zeulwmz97kjfu9lkhef3a\",\n                        \"reward\": 517329030061881823070,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k78r9j0fu3qnh8vygwhw2etx5ngzz6l8ew85mr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vegzurdx7vgpw4te5jwdvyvx4qsgdy3htk4ncv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one136q778e0jhfaug9f3n8m95wa3p2hyeapm8t7g5\",\n                        \"reward\": 38352441624328381120,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16wacanj8kresz99jea9wp8qtutfp8g4hf9et28\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.73470670002e+23,\n                        \"delegator-address\": \"one1943a79kdy85wv6q0nst7dhtv2pykz28mlc8y3d\",\n                        \"reward\": 51618052377849407984,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.4e+22,\n                        \"delegator-address\": \"one1lyud6xd329q0z0z7a6w6v7qdsrmynvs8hqueuy\",\n                        \"reward\": 3.059625476241975495167e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j3frzp0l0ex0zhp4ft7w6kp9n8rmnj5962gasr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.512e+22,\n                        \"delegator-address\": \"one1jsgz9kufll5nhkaweraesqyugzl2e0zq7amckz\",\n                        \"reward\": 99894037520213053492,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rswee3lkns8ldsplrj2tyzumuewjpz48vexfgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.49113024059e+23,\n                        \"delegator-address\": \"one147qjhymu29u8pqn026xw58clawr8h4de3mgc07\",\n                        \"reward\": 2.573229627626151626462e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17yn8w3sl28m9fmcsjvsvsn78tjs7pqww2xtyzh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.61585103449e+23,\n                        \"delegator-address\": \"one12frku6ue384mze6x3hcmyqc8w5f6xetlgec7qz\",\n                        \"reward\": 22843736762484978077,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1ag7qa7tpd0gy2ksjzdrmkrnxtw39a6uv0aemjf\",\n                        \"reward\": 22447920996872214,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.685e+23,\n                        \"delegator-address\": \"one1h2xk4srqlg3amnpvqr0tz09c3c00yasmwkx7sk\",\n                        \"reward\": 998142071325680570253,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.30838e+24,\n                        \"delegator-address\": \"one14z84r4a4rhl3n09u0kra222vev4sh03k9f52jl\",\n                        \"reward\": 6.6538577020547066321335e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1e+22,\n                        \"delegator-address\": \"one1yms3yzl9d8jcgqdk0fx8hasn4k4zuaaw0rshu5\",\n                        \"reward\": 98229315887259548471,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10kyhy9w9fq940gdszk0sn4wjxmsxcdt3c3ee9n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.49275e+23,\n                        \"delegator-address\": \"one1rz5t87ege9mcmadfl593sdm4psntpjqqvmuwyf\",\n                        \"reward\": 1.8593211783910575571481e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ture622cf95u0hvurzap0ssfv4qzm0pped7qud\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.115e+22,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 93293795044111454740,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2994363636e+22,\n                        \"delegator-address\": \"one1hdszu9neuf3m5ahnfpkdmpfzx62azr7yasux7l\",\n                        \"reward\": 331169212719057008976,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ecd34guufzmz3244mvrymu5nmkqpu9zh7acfhg\",\n                        \"reward\": 645502840420856267,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1dt8rv8haed2qhj5qsr8cjazs746j02c65g52zr\",\n                        \"reward\": 1.130584065745405702536e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.95563999837e+23,\n                        \"delegator-address\": \"one19ylhvmuka4uel3e8hla3dvadayujseftezee2w\",\n                        \"reward\": 1.986064063056059135193e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.63599982e+22,\n                        \"delegator-address\": \"one12x8ax0s2jh6zxpvzgjnlexaffqx8gjvkygkav2\",\n                        \"reward\": 284317732620063643720,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6936805492e+23,\n                        \"delegator-address\": \"one1apscztfl2nvx0lz49zxqdm6lmhkxa90wylgjag\",\n                        \"reward\": 823668772713653138496,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16lrjwy2y0025ydsmwc0a92jdvwpmq20rjkpny9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.000000793653e+24,\n                        \"delegator-address\": \"one1dtnwdj0umv7r0zn5styglj6npksmstsk8krm4x\",\n                        \"reward\": 1.3495776726748680547595e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.24e+22,\n                        \"delegator-address\": \"one1dl4w49xl533rlnk4am8f5nmasc888syjlfqrnj\",\n                        \"reward\": 57668203622805246466,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.32190698119e+23,\n                        \"delegator-address\": \"one1e6katpdllsnqqxvx0gysw4pjaetwxqhjx5ms7e\",\n                        \"reward\": 6.935899678144577951181e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10t4lxpdrc6pn87a5rsjcsk3e6uw6kkqlen2yfy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d60pue8upt6fjezlllqk6jy8xwa2v8qpt7g73r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.489376749395e+23,\n                        \"delegator-address\": \"one13zdsyuqnmqh8005mr0xrp2hmdwq48hd5a02940\",\n                        \"reward\": 505512949559375167333,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+21,\n                        \"delegator-address\": \"one14q3fcd98sksujugh8m8p9f8wfktuj2g23j0x83\",\n                        \"reward\": 53403920123488594359,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18zqm22gzqfl36aeu2sl3kqr0xng0m8527jhmy8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9000000000000000,\n                        \"delegator-address\": \"one10vey9cj3f6jrxkr4ffds5h5zcffftjz5l96kjf\",\n                        \"reward\": 274169999729127,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9999999e+22,\n                        \"delegator-address\": \"one16z7w95lr95qhr9phs0ldhellt5fudyjueglnmn\",\n                        \"reward\": 1.668872470481565049593e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.403e+22,\n                        \"delegator-address\": \"one1gcexg4vtvts9daclw4npa59ttcrfxywaqfgh3y\",\n                        \"reward\": 461671119365396182689,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.85410286e+22,\n                        \"delegator-address\": \"one15ya7226833apar3v0rf9uettwhu5dlngjlzlrt\",\n                        \"reward\": 71740659454696076816,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.89047993e+22,\n                        \"delegator-address\": \"one1y2yscyrvyc0ufrv7hwur097ejy2rpwdhakfwlc\",\n                        \"reward\": 1.60926111440991100676e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1e+22,\n                        \"delegator-address\": \"one1v9u59kn6n4pvrvm6qc6ynpag30y6lnh9xh9cm4\",\n                        \"reward\": 729594337964292462103,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one127la8ga6u7xh9n9qtagu5k45gq673v9wwz8lx3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.27e+23,\n                        \"delegator-address\": \"one1wsxgy4txwn9d5vvutvkqfa9snh3lmwltcdpf0c\",\n                        \"reward\": 828258497443980781885,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00000353729e+23,\n                        \"delegator-address\": \"one19808ds2v8ugpkszk8hfgn6zs7jm0rfnndq8tud\",\n                        \"reward\": 1.179303368753285053901e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 121066035065329052652,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfgwkf2lney0r2sq4hsy3vhpvwcxf33qpurtpj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d5x28z4hdfzklecellg5nw5as037w8fef52c72\",\n                        \"reward\": 385089666094174227149,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18tfdjlj2ya3q48s0xynjjs44jpcq2u4q3mtcpn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1athys8vztd2gwkt20w0k48kmywhxle0j3u6q0w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.3047e+22,\n                        \"delegator-address\": \"one1r4trdct8ywcfs5l0ptuguuh8sa6q0dnpuxdu85\",\n                        \"reward\": 453614968888340679053,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.888e+22,\n                        \"delegator-address\": \"one1332yy5mq5kjtgvg3cnsj2v6a2ml04mdksvu5wa\",\n                        \"reward\": 2.557911677748583481281e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1ns7j3ylr96c4fqnaeacny9qf7ufzz489q6v0g5\",\n                        \"reward\": 59102966820582786876,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9hnyw8demj8n5r8xv5d05j2wlfpzxj52vm4nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hrxguavlwkmrjl6xdeh3hjkk85fsej8kg8nm6l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ff0hq4v00kz3g8h0tje83x3yv9ja50nresxp7g\",\n                        \"reward\": 109075864805351526,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v7enx2hqelf0wqqt99avqqx5f4wljs443y5az5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ydlj0qtzepwxkg4z5kcnyu7fycswlal84ztw47\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16hxl0yxn3wfy8t0nezu8rqlvh9hkfvz4yz7m2t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1twuxldpnwcafdu025jd7aa5r7we4j29ndtafuk\",\n                        \"reward\": 1172171859146637567,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6991e+23,\n                        \"delegator-address\": \"one12v0yyge8m3hxujkxtakm0epznu5tyk33zgh65e\",\n                        \"reward\": 1.459178281036024047917e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.00457072294e+23,\n                        \"delegator-address\": \"one1hu8dqr7glfengcnw2sv7vxzcc25h3art4crd9v\",\n                        \"reward\": 131742012783027661313,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1upd4z4s0ngz6uajvp9z0wzwp7jx39fjjdn0k9h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.99385963854e+23,\n                        \"delegator-address\": \"one1e8p4uyaahv6ckjz89leyzegzl2mw57zm80xqtv\",\n                        \"reward\": 7.100163091528785700766e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fvk8tcpn8dxk7vcy86u6lsc745dcs2tel6k7fq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one18886pfha5x9ds0ucssklqjzmvlwpzsptfy8cwq\",\n                        \"reward\": 3525352786925299945,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g3sk53sj00a3n452h0fy5ymvh7nfn3s9nf2hvs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d0cdatalst607xazutqs3u799wrad45w5xxv25\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17080g7a6w40j972t7lxyhd6wvaeavldz3a5mun\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one17vyvjlensmz43hv5asgyndd36vwsv4hcg5txvk\",\n                        \"reward\": 698251463122601981143,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.045e+24,\n                        \"delegator-address\": \"one185dmtk76av7swgwxkv8kaucravz5w7c5fkzzzl\",\n                        \"reward\": 1.6250096485998006092272e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h3ph3m00tap0rlwyn7x2u6lx6akedspcwdtqxa\",\n                        \"reward\": 985492339788218495,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9063e+22,\n                        \"delegator-address\": \"one16ux6wruhe7vzl44kqdq77hp04ytl6elx7rxeqt\",\n                        \"reward\": 2.976626756514166882025e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s4604lg40q9tvzaaf3wp9rtr3txzl2796p6dgf\",\n                        \"reward\": 14528760248971149349,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gtzu5yvtmxttds0t8hw2q4a9pk68w6gscjgzpr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.953e+21,\n                        \"delegator-address\": \"one1ss3wnhlrxxw7an0ywrjr6xcxh9epu0ygft0cz4\",\n                        \"reward\": 178874646250656929028,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1ad4lgx4ke5wu9tlcqpz0hkw4aspah465kserez\",\n                        \"reward\": 7.511953899322064985629e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.77e+23,\n                        \"delegator-address\": \"one1hnnmfc7q8d6ruy7vndjgypyd4duensz7ra3aek\",\n                        \"reward\": 4.331370067412144114213e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ge659dk07lxyhnsfe7us3lc2sdv66h5lwvgenu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.05166e+23,\n                        \"delegator-address\": \"one1vpxnh5ax8sde959gxgnc7ttylzf05xpp0t06ng\",\n                        \"reward\": 3.898467333021452634132e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r5skhssc54snf5a0h90czrkx9dmcllxlxgstj9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1zanz6rxvzm6j7sgewt54x6qant3grn74rt6lwd\",\n                        \"reward\": 39396641414790558702,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one13eh8wsk8wa8ag96qjrdrgh2g8ecx8vpwc6q73t\",\n                        \"reward\": 3.266690452646884099007e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12kvy5medu2rj4qt3ltmjj0lyndrhm87eq2lkcf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13r2e6rfdllvatljvhkunrhygwd76dx2cj06rfe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.226e+22,\n                        \"delegator-address\": \"one170jx8j4k0vpc38e5jeznm5sur3ese2ppv6ltp9\",\n                        \"reward\": 607027246065352515150,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1kdkgd9vgjefdf8ts5g3whxx07e72e54pgkcurx\",\n                        \"reward\": 844917264995243284683,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.95e+21,\n                        \"delegator-address\": \"one1v3xr35lspk4y7ewsdv0g93r7e6wxrscmeuyyzv\",\n                        \"reward\": 34899574516921289643,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.753e+22,\n                        \"delegator-address\": \"one16uz96dtnm0e9e9j4telgn95sqhtey2zg32j8lw\",\n                        \"reward\": 2.700820467060629383036e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10d3qqqxegdexjyzvyewa5krhgkcgl57xs6y9gm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.3354868726e+22,\n                        \"delegator-address\": \"one1xvdgg5r97vd775mguawzjgsq28x8nmyda048ce\",\n                        \"reward\": 2.242248805184244664689e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0999995e+21,\n                        \"delegator-address\": \"one1r9m98elzdeljz7exlnc60adftzkk2ug2w8yqgw\",\n                        \"reward\": 33503920996188612091,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kx3pf6nryqg0r7qdph0jehh6ax3zr0uhfeev2m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ywfagpszmdnmms9r29nl4rprer7r6nwwgx867c\",\n                        \"reward\": 2626993497571181996,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6333e+22,\n                        \"delegator-address\": \"one16cdt48q05ryx3ykakmen77d8l6lm8xgv8m48uj\",\n                        \"reward\": 367688841312278251784,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9wxfrhkrzv9n8ycg482xvkf50mw720zhr37l3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grpk6706ct68pwcqr3vjw60xcuwjkerau7d9ww\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one1g75kqpkszhcal3qrnx982mj2rjq0rwhkfy3uu4\",\n                        \"reward\": 15335389624669324358,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.24e+23,\n                        \"delegator-address\": \"one1cegkuk5ytsgkj5j9fh4j5dr9huy4j2gexhg5q4\",\n                        \"reward\": 1.6101460245228075867049e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n9ugplqsgrlyv9rcfzr8wcxshdt0rha78zj80z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+22,\n                        \"delegator-address\": \"one1nsycmjwwe0fcdtzd4a3tgadfw76jxkuyhzsp4f\",\n                        \"reward\": 51655508308916236208,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kktvnf93p2trhdynvu6t8p8mnuefzdmrdyusm7\",\n                        \"reward\": 200950123155871846,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.603e+22,\n                        \"delegator-address\": \"one1uq66y79kzgjgfxxed0jspr8kewmqeac59zern3\",\n                        \"reward\": 259394341823433155922,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.96833963105e+22,\n                        \"delegator-address\": \"one1t0eety376umvd4cucuqvh0d9tsamgdgvrpe2q7\",\n                        \"reward\": 216089279150209335556,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13fgk3aqmmqp7s4cv7m6ugl5fa08hwneekul2fe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ruvdpen8z83l3dg5lh8ady904zksvgemwn4sr3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.575161313e+22,\n                        \"delegator-address\": \"one1tuehepfs75w9mpfe5lr5vucl0qhszcd0s7rwss\",\n                        \"reward\": 611546012078593709552,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nja6y9fkj852pqz9edrsgpvklvuh6eu42hlldz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z63t53093vs0jt8xhvhqqt3qnycykq4qqydmvx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.612e+22,\n                        \"delegator-address\": \"one12deatk5yn3zwuzcru3wtkgq2077ndcdss4j200\",\n                        \"reward\": 19902314461607588233,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.555999e+21,\n                        \"delegator-address\": \"one1qj438200j8w9cvsnlkwnua29pfvn3tn56wy4hw\",\n                        \"reward\": 22041309113661922933,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.648e+21,\n                        \"delegator-address\": \"one1xwzad7aha0h77hulz0uc7uzmsqrjl858xj9h45\",\n                        \"reward\": 21873095553516794997,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dehtnvz7yf6v8d9jj972ytdfd5xg3um9wm2rl9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hyhgtt0pnu2luquwqupj2s7rnq43hrcxvvkez5\",\n                        \"reward\": 8952780086787157298,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.16660625e+22,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 69683358551124258700,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jjg9xmafmh56eaeg42uuftmf4cc44zc5swhu4m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1f5ddkra7wfkez7lav4p79u390gnj7sv85funzu\",\n                        \"reward\": 20303270724530239493,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dtr8sw98sfc738v8vl3w06v8kgjp8c3yhrr0qs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1smwukalcufqlstaa0t48vkaxlykeu8gmhzuf2g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one108acxe4v8jacnvzpvy5laufmhw0a5rd8d7zsjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.056e+23,\n                        \"delegator-address\": \"one18pduzpm6lqukv868fsnhqkr4xr0rzgnmfdqsv9\",\n                        \"reward\": 746315783121858727239,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1928kphh8zhavhvm93m9j3hkj7vqvz5a5200e36\",\n                        \"reward\": 1.085223035014861433735e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.401245e+22,\n                        \"delegator-address\": \"one14nw56r2apv8wlljmg6pjjr2dtsz6w6jhqtzm8h\",\n                        \"reward\": 173155472936520608945,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one12xk2yqnla9y5qn420dgjj73pc7jzmgptktlg82\",\n                        \"reward\": 46648839029948731704,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.02994895e+21,\n                        \"delegator-address\": \"one1k8n464s84pzwfydgwf7kwtgryvya476f0dsq20\",\n                        \"reward\": 104713281065087188982,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ln66zgvc2krv9v7hqauws45ktnal6jmws2c0fa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9447e+22,\n                        \"delegator-address\": \"one1d286u4sn9sm5n8ramlng87nysp5eaf6thd98tm\",\n                        \"reward\": 809620561027632849377,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.026221595795e+23,\n                        \"delegator-address\": \"one15wfkyq4maxpk2nczl9z8uwedfzwq8fl96u7rkf\",\n                        \"reward\": 983950126107974696736,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5503814319e+21,\n                        \"delegator-address\": \"one1fc0jllw4tztz83x3dp6sncav8dmh5wxnhq3axx\",\n                        \"reward\": 109528604808385690377,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.6663e+22,\n                        \"delegator-address\": \"one12w5e84ulqjgz23vjufhmpsrhaamccsjw97zend\",\n                        \"reward\": 12720350064230640481,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1f2ctrtwl3cwz50recdg52lalk7elnseaf8p2n5\",\n                        \"reward\": 15786390965895411420,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vegus4ekc6pjys9rf8krqx2xsva9rf4ed3rdcu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.242954442967e+24,\n                        \"delegator-address\": \"one183s627gqnz3p50xv0lp2vtk76mmn7rhred4p64\",\n                        \"reward\": 2.2420588514727971676113e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2421e+23,\n                        \"delegator-address\": \"one1lj96hqnfjpvmxcs3tgktende4axtc4wwsrsjj7\",\n                        \"reward\": 2.068108308351274480617e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one158p7lac9hay7ktsmw5mr5umf947krtnwglw2q9\",\n                        \"reward\": 36340577797965973093,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kaj7pduptrqjwwaa0s3jejwexh45uhc9tqrs23\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5120923584142857e+22,\n                        \"delegator-address\": \"one18yv5m65wa7wrknfmh2jsh3pcst2z0h3698vu3k\",\n                        \"reward\": 191979089040903242015,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.710306e+24,\n                        \"delegator-address\": \"one173aj6q5daans2nklgu5phdezfaeelnqp29jwky\",\n                        \"reward\": 8.1107831057146144859982e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.09489995e+22,\n                        \"delegator-address\": \"one1c0mmep92nvzgx5ccjt33v7ag2mw59660yj0tjl\",\n                        \"reward\": 846262792535863853699,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1aw687flqnwqatnhvdaw5ee9wefkxwujqqwz32d\",\n                        \"reward\": 400553298490512071012,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1xj6sfxtx2rvzcz25yrmvte9tdmw0xg0leq84k8\",\n                        \"reward\": 1.063829847721701398894e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.39014e+22,\n                        \"delegator-address\": \"one1zw4ajxzpald54unm855yfam64pyfu0lv3nytfa\",\n                        \"reward\": 368586245140162851760,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ezj0qu6xe084l4d0la726vsqqe9cclhv2xqy59\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.263018873e+22,\n                        \"delegator-address\": \"one1j66v7px9gufh32fyv0c3l7zjz3r0fe9683arh9\",\n                        \"reward\": 22067516542729982684,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.30000998e+23,\n                        \"delegator-address\": \"one1xs8xv5mz4nn7qf5w3sj69skhwjphcpdnz38fmc\",\n                        \"reward\": 1.976768886561103310375e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 974905934437538250,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sswgusrka65z3f80dq8rnsv9cey2k0me5ky7na\",\n                        \"reward\": 9950058839644619135,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0788e+22,\n                        \"delegator-address\": \"one1ytd3vrref5wd56agj672rqy3dq82ladc05rlhy\",\n                        \"reward\": 131414656910743787735,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.78283e+23,\n                        \"delegator-address\": \"one1luqxaz8zz2ec3cneqnjdlznfg880zhp2hzgqx7\",\n                        \"reward\": 3.389920742407537162686e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cm7g89x5j0y7f0mges28qtsen92wqr0vqurl5l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r65rv2n79nx6m3en8aqzsd0m9xz3x4a4w465gw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1skx4v8wf4jv9v4fsllfdxg4rnw8fj7tkal8p85\",\n                        \"reward\": 436574641174477315879,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one12cwc8q4r2c6wl6a797ksxgc0njs8j4yshavkky\",\n                        \"reward\": 2.752534464834405027489e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one1tvxurnzczfwq97jethcn5vjqye7ckpvv83cmnl\",\n                        \"reward\": 3.987655203747987903615e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.29e+21,\n                        \"delegator-address\": \"one1lp2qr8pu63t5yx4dxvwfle4ks7l8mqn5r4g3ls\",\n                        \"reward\": 11882499889959885478,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16fzlvw20gxm205hfj25f3jltysxkg2h9mt82su\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tq054362ng0lupwn0de80edae4lp50fxlgtvqt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.61e+22,\n                        \"delegator-address\": \"one1t9esngd9elsxhkuek8x4zyk95ek3jecmkmpwtl\",\n                        \"reward\": 162638721961646166134,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.92084e+23,\n                        \"delegator-address\": \"one160anzdjc5skrfqde0lt5gh7tpeyv5ex2d5nh8e\",\n                        \"reward\": 95499242230890180208,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kcs06488ce87raaekqedz3xqchugfs0evw3xzd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 3121583002232083921,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.109776173761e+24,\n                        \"delegator-address\": \"one1lfexg0e97xts8nfu476dulkcxtasv3wgf2nwtl\",\n                        \"reward\": 10180056842355767648,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.8e+21,\n                        \"delegator-address\": \"one1fxd7p7de28swl3phf4w98eu2v45hjkr6gx70ac\",\n                        \"reward\": 5770187821613121286,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1mm2cxctwn63dp4ptv893kftay38rhtlnttpn8u\",\n                        \"reward\": 14660286627421933364,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one19a6uzszz40rr6xn3kjslt2y4t23e2r4w7n2lkz\",\n                        \"reward\": 84187883437610630880,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+22,\n                        \"delegator-address\": \"one1t2e02y5g9m64uydeae6xh3m8w7038h7tg7kpar\",\n                        \"reward\": 15528118137324960130,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.345e+22,\n                        \"delegator-address\": \"one1xfuukfk4a72e2a9hqh2vmv55duvguv80sxm5tg\",\n                        \"reward\": 2434823575256922305,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.03e+21,\n                        \"delegator-address\": \"one15hfl60gqeh9uh8yt49lkcc8jnqvpwl35pp6fl2\",\n                        \"reward\": 8496736719751057632,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5406929133e+22,\n                        \"delegator-address\": \"one13gnpvmhvla85v30qmuyzzk63xcvkm0uqgpwylp\",\n                        \"reward\": 23130865905016321205,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.225e+21,\n                        \"delegator-address\": \"one1nkvxkx9sten30aq6ak3ky8ae6ual9y2uuxkmn6\",\n                        \"reward\": 7262032508351666519,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.522982588019e+24,\n                        \"delegator-address\": \"one1ghaqydlkyda0pfy02hfmugsle7tw28yw427wyh\",\n                        \"reward\": 564629532643256296449,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.929521961e+22,\n                        \"delegator-address\": \"one1v0qlufxkf94h9v4dkw4ke9fghsnj4v77v8d3sl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"A few nodes in the cloud, running just by themselves. You are welcome to add some funds, we'll validate them for you! :-)\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Solitaire\",\n                \"rate\": \"0.005000000000000000\",\n                \"security-contact\": \"solitaire.validator@gmail.com\",\n                \"update-height\": 5358071,\n                \"website\": \"https://sites.google.com/view/solitaire-validator\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 14537,\n                    \"current-epoch-signing-percentage\": \"1.000000000000000000\",\n                    \"current-epoch-to-sign\": 14537\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"6311311720000000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.115969153382637769\",\n                \"blocks\": {\n                    \"signed\": 1038200,\n                    \"to-sign\": 1040169\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121546023296117467\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123885758917940452\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125204994983275794\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.122251317365722998\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121916761623594104\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121067239721527628\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.120473540854620297\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122731028819507776\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119374747900951386\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116907835901325547\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117483725958900688\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116696426916380594\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119265340980978875\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119812929912047497\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120625227556590965\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117395974809284869\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118764607903709821\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120290877447651959\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118358096586817122\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118746681366813287\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.116742570494185861\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.117620852706190978\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116477479455038072\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.116048160861278959\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116573880344687180\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116728840184483830\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116687023724744378\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114638491246793360\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115920178936630873\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115461323807247170\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115969153382637769\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 16474,\n                            \"to-sign\": 16475\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16417,\n                            \"to-sign\": 16418\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16429,\n                            \"to-sign\": 16429\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16746,\n                            \"to-sign\": 16748\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16439,\n                            \"to-sign\": 16440\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16411,\n                            \"to-sign\": 16416\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16997,\n                            \"to-sign\": 17000\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16433,\n                            \"to-sign\": 16433\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16416,\n                            \"to-sign\": 16416\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16455,\n                            \"to-sign\": 16455\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16437,\n                            \"to-sign\": 16442\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16616,\n                            \"to-sign\": 16618\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16528,\n                            \"to-sign\": 16528\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16745,\n                            \"to-sign\": 16746\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17511,\n                            \"to-sign\": 17519\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18493,\n                            \"to-sign\": 18506\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16693,\n                            \"to-sign\": 16703\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16524,\n                            \"to-sign\": 16527\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16563,\n                            \"to-sign\": 16564\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17821,\n                            \"to-sign\": 17821\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16479,\n                            \"to-sign\": 16481\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16503,\n                            \"to-sign\": 16505\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16527,\n                            \"to-sign\": 16528\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17163,\n                            \"to-sign\": 17163\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17658,\n                            \"to-sign\": 17658\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16979,\n                            \"to-sign\": 16979\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17745,\n                            \"to-sign\": 17746\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17837,\n                            \"to-sign\": 17837\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17891,\n                            \"to-sign\": 17891\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 19294,\n                            \"to-sign\": 19319\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.22215049234944058167982e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.688843624367257328906e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"cc5f9acbe434aacf87b6059571452c558eb8519f1788dbefc8c589c75580a304fe7e4546166cf7712da37d1aa284d215\",\n                            \"earning-account\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                            \"effective-stake\": \"6311311720000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006591690739504378\",\n                            \"overall-percent\": \"0.002109341036641401\",\n                            \"raw-stake\": \"6311311720000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 6.31231172e+24,\n            \"validator\": {\n                \"address\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                \"bls-public-keys\": [\n                    \"cc5f9acbe434aacf87b6059571452c558eb8519f1788dbefc8c589c75580a304fe7e4546166cf7712da37d1aa284d215\"\n                ],\n                \"creation-height\": 3361827,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.26304e+23,\n                        \"delegator-address\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                        \"reward\": 41123916933645443615,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+24,\n                        \"delegator-address\": \"one1a5fznwvnr3fed9676g42u7q30crtmmkk5qspe9\",\n                        \"reward\": 1.04825698076836411818664e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one162nx454ej6rp0wjag2f8czcayruwrf33xuvhj0\",\n                        \"reward\": 3131731836959559620,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 10000000000000000,\n                        \"delegator-address\": \"one1p07j8kyhxqs7a978wynf7n925k5aalgj7q47kc\",\n                        \"reward\": 62349841472299,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 1.554514199537021703602e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 864516314008714797,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 6263159913058863910,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0077e+21,\n                        \"delegator-address\": \"one1a05xxp5eq5e83xu6teuvczcx62cutrt970wq5t\",\n                        \"reward\": 62635161889859172627,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 10000000000000000,\n                        \"delegator-address\": \"one10qflexda9j2ky0nt3mgjv3hq23ead8rgvj6rml\",\n                        \"reward\": 335490190813269708,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 43996905790319232714,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Nodo validador de la comunidad hispana de Harmony\",\n                \"identity\": \"19b1ab590f36803a3eeaa11958edccd4e6d515a6\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.250000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Nodo de la comunidad hispana\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"hola@harmony.barcelona\",\n                \"update-height\": 4612912,\n                \"website\": \"https://onehispano.org\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.671925942245144461\",\n                \"blocks\": {\n                    \"signed\": 62233,\n                    \"to-sign\": 63176\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"1.129565938298883483\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.332341019243020796\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.671925942245144461\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 2.3679533325814249195116e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1h2vnc52gdwqa5w6z4gwtrdgsgq8f5fj7aev3f2\",\n                \"bls-public-keys\": [\n                    \"8545a95789a936cdf34851295be8611ee1fbdde8c75b99f70e80b29f704d7a92325c6cc89f7ad2ed9951064622693911\"\n                ],\n                \"creation-height\": 3361912,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h2vnc52gdwqa5w6z4gwtrdgsgq8f5fj7aev3f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15lud93j8p5q0q0ylk9m00x07w60luwsqhyc6sc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lcw9gkm4xuwrpqyjfqgz4zf5fduxrrqexnp4hf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n24e0eqg0ajwf2ehtvy0fw02ruvu4955ks27xg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z250uy4fvkzwxvkjz30s26rwgwwezvdtvpwygf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ausldvnqxmarafdcswmp5drtj85ak35qw4xud5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcd73jcajz7wsaquzxvcjv94fere2xtqyyjz2q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zxucth84p9u4a9zk8f3t0rwvvgrsqgjk4z5f6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wsy0f9p245mugshnsud7se805htq3sram33ek0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 513288730696258967,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fnyhmt5998e78nx57leg4an5req5htaux0fq26\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Channing\",\n                \"identity\": \"Coff33Blak\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Coff33Blak\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Channing\",\n                \"update-height\": 3361912,\n                \"website\": \"channing@harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 28924,\n                    \"current-epoch-signing-percentage\": \"0.994225216554379211\",\n                    \"current-epoch-to-sign\": 29092\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"13309227296375600950311000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.094113661435761291\",\n                \"blocks\": {\n                    \"signed\": 3526670,\n                    \"to-sign\": 3574294\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.095995000945759880\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.096103307573805157\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.096331235132334017\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.094173197571490969\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.092541036729549477\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.094007720977542528\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.093004769460516371\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.094376233564913250\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.092470510280440782\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.093310500199284182\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.090704188715726819\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.091643833581653096\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.093770330914942897\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.092908889603975985\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.089866105693253858\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.094170576619279724\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.093085435669123235\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.092775089852625123\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.093758934159445365\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.093593872441621511\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.093502869512426431\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.096083032163845572\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.092545326870948833\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.090855595735841363\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.092845267475022661\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.093256803455886998\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.091053003633819064\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.092002599150827903\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.091942817071954395\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.093080620276287231\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.094113661435761291\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 32832,\n                            \"to-sign\": 32962\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32648,\n                            \"to-sign\": 32852\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32730,\n                            \"to-sign\": 32858\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33327,\n                            \"to-sign\": 33500\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32727,\n                            \"to-sign\": 32880\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32721,\n                            \"to-sign\": 32854\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33863,\n                            \"to-sign\": 34004\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 31709,\n                            \"to-sign\": 32872\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32678,\n                            \"to-sign\": 32834\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32792,\n                            \"to-sign\": 32908\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32715,\n                            \"to-sign\": 32978\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33041,\n                            \"to-sign\": 33234\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32838,\n                            \"to-sign\": 33054\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33265,\n                            \"to-sign\": 33490\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34734,\n                            \"to-sign\": 35080\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 36807,\n                            \"to-sign\": 37050\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 31689,\n                            \"to-sign\": 33438\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32844,\n                            \"to-sign\": 33068\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32972,\n                            \"to-sign\": 33112\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34958,\n                            \"to-sign\": 35652\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32766,\n                            \"to-sign\": 32960\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32706,\n                            \"to-sign\": 33014\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32786,\n                            \"to-sign\": 33044\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34130,\n                            \"to-sign\": 34316\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35162,\n                            \"to-sign\": 35320\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33826,\n                            \"to-sign\": 33956\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34838,\n                            \"to-sign\": 35492\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35507,\n                            \"to-sign\": 35694\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35680,\n                            \"to-sign\": 35780\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 38510,\n                            \"to-sign\": 38668\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 5.01408001364093829489083e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.761278931092840078049e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6f7c7997c84f2332b86966beb38728a5bb7555a3363ed1e65071e941ba44f49b6681e8b9d00bcdd66ddf6eb1f0be6c8e\",\n                            \"earning-account\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"8280256500000000000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.760784629008372435551e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8fd5c4406e6dc3b3c6d10b36d6b7c81887a77e32e968c3af7f591dfc8a611c1550078d390714d49934aeb52e7f879116\",\n                            \"earning-account\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"8280256500000000000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.6561607399919e+25,\n            \"validator\": {\n                \"address\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n                \"bls-public-keys\": [\n                    \"8fd5c4406e6dc3b3c6d10b36d6b7c81887a77e32e968c3af7f591dfc8a611c1550078d390714d49934aeb52e7f879116\",\n                    \"6f7c7997c84f2332b86966beb38728a5bb7555a3363ed1e65071e941ba44f49b6681e8b9d00bcdd66ddf6eb1f0be6c8e\"\n                ],\n                \"creation-height\": 3361982,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.2e+22,\n                        \"delegator-address\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n                        \"reward\": 895941285848335549642,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.7065e+22,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.1e+24,\n                        \"delegator-address\": \"one1p5kuwu2un8sy9e9357khct545zwuems88z482c\",\n                        \"reward\": 1.115490972772933478146e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fvk8tcpn8dxk7vcy86u6lsc745dcs2tel6k7fq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19gdlu0ehprg6vhcdzlamemdegfjpx4r4q9qln0\",\n                        \"reward\": 443457444978647070,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 9.0920003808746705756716e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1000000000000000000,\n                        \"delegator-address\": \"one10vey9cj3f6jrxkr4ffds5h5zcffftjz5l96kjf\",\n                        \"reward\": 23780316064587793,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1588j47yhfdn89pm56g0r0scj487hu8ggvgv3da\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9hnyw8demj8n5r8xv5d05j2wlfpzxj52vm4nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10d3qqqxegdexjyzvyewa5krhgkcgl57xs6y9gm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 733778866082038416,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.355e+21,\n                        \"delegator-address\": \"one1kt957tv5v6h3ez45zpvwyyu59c2ej9dx0285qw\",\n                        \"reward\": 6055479101946677466,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2157e+22,\n                        \"delegator-address\": \"one1lfkva4pwfau4ynu6rvkzr82a2edlhg3kwa4lkw\",\n                        \"reward\": 8516974041375421509,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.094399919e+21,\n                        \"delegator-address\": \"one17uhgr367pxcxhmga8dc5hgzg82qca34vzj7tne\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Nodeasy.com, 助你进入Staking时代!\",\n                \"identity\": \"AB006A79DBD8FC57\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Nodeasy\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Nodeasy.com\",\n                \"update-height\": 3387499,\n                \"website\": \"https://www.nodeasy.com/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"1.376657007627364201\",\n                \"blocks\": {\n                    \"signed\": 40315,\n                    \"to-sign\": 40835\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.903516395599900943\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.376657007627364201\",\n                        \"epoch\": 187\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.5095871547130267376252e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one18je40sxd9s6awtgx4akhuda8d75km3663eep37\",\n                \"bls-public-keys\": [\n                    \"6de45f627c2416213cf28848b75ce4cbdba8fb0b33c4e85a47252d0cbebdb6a35f8bad164b6016ea64abafbad481908a\"\n                ],\n                \"creation-height\": 3362251,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18je40sxd9s6awtgx4akhuda8d75km3663eep37\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xyamghtfkrar30wexpszautjkz3d6c0y5k5py3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12kvy5medu2rj4qt3ltmjj0lyndrhm87eq2lkcf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kjncp7r9er5cuvnxxwuw9xquwsgr4q6uqggr97\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"https://t.me/harmonymason\",\n                \"identity\": \"Mason\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.150000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"CryptoMason\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"@valentincrypt\",\n                \"update-height\": 3391583,\n                \"website\": \"https://t.me/harmonymason\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.334409708153497518\",\n                \"blocks\": {\n                    \"signed\": 48282,\n                    \"to-sign\": 65536\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.686278696556447373\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.334409708153497518\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.7130779268170232432824e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1h2t0k0g9fjqh249w5pddv9wuudm8d9cj4nzyw4\",\n                \"bls-public-keys\": [\n                    \"b0e780ca7a889f8c8c29debf16f02f48370ec17161e70787b7e7ba621fedd7bd674c309d72cece5692072d39a8ab2490\"\n                ],\n                \"creation-height\": 3362324,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h2t0k0g9fjqh249w5pddv9wuudm8d9cj4nzyw4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lncya8swehqpd3vl8xadwcaye7hh80px40rrs0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Original FN Operator: high uptime, 5% max fee\",\n                \"identity\": \"[IDENTITY]\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Vnode Foundational Node-4.95% FEE\",\n                \"rate\": \"0.049500000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3473811,\n                \"website\": \"https://staking.harmony.one/validators/one1h2t0k0g9fjqh249w5pddv9wuudm8d9cj4nzyw4\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 43608,\n                    \"current-epoch-signing-percentage\": \"0.998694606664376503\",\n                    \"current-epoch-to-sign\": 43665\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"19717523088176633332999999.999999999999999998\",\n            \"lifetime\": {\n                \"apr\": \"0.119790293887450307\",\n                \"blocks\": {\n                    \"signed\": 5283240,\n                    \"to-sign\": 5308743\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.123054457397013508\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122097749433570177\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125786376234972248\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.120153386399518917\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120910807098744279\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.120271665610063400\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.119705465555771675\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119148703794494417\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117911421154819479\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117847421765515417\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.116141093147140173\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.118994723099063842\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.122179064506259469\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121237155483075387\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.118161646132782593\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119960502357609433\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119880066737321372\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121211104287563676\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120961191093565382\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.117297637130468758\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.118964947818568212\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120066579404901439\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.119844842090201758\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.120474452769950601\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117743959300142976\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120779536342344851\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118338747507929529\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117112260782483821\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118389647897154319\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119983859791324258\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119790293887450307\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 49124,\n                            \"to-sign\": 49446\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49242,\n                            \"to-sign\": 49272\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49287,\n                            \"to-sign\": 49293\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50083,\n                            \"to-sign\": 50253\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49221,\n                            \"to-sign\": 49344\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49116,\n                            \"to-sign\": 49245\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49506,\n                            \"to-sign\": 50958\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49236,\n                            \"to-sign\": 49272\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49161,\n                            \"to-sign\": 49233\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49344,\n                            \"to-sign\": 49368\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49230,\n                            \"to-sign\": 49440\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48861,\n                            \"to-sign\": 49854\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49509,\n                            \"to-sign\": 49578\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50169,\n                            \"to-sign\": 50220\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52497,\n                            \"to-sign\": 52632\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 55548,\n                            \"to-sign\": 55587\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50082,\n                            \"to-sign\": 50145\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49530,\n                            \"to-sign\": 49605\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49672,\n                            \"to-sign\": 49695\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53421,\n                            \"to-sign\": 53499\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49335,\n                            \"to-sign\": 49425\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49413,\n                            \"to-sign\": 49494\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49473,\n                            \"to-sign\": 49542\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51322,\n                            \"to-sign\": 51468\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52860,\n                            \"to-sign\": 52950\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50814,\n                            \"to-sign\": 50895\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53169,\n                            \"to-sign\": 53232\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53458,\n                            \"to-sign\": 53538\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53612,\n                            \"to-sign\": 53673\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 57821,\n                            \"to-sign\": 57942\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 7.19850262430177024825606e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.807284166067902747617e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"02760cadc6ef3d3c1f8b66adbe182ebc252b451178efc168e856870311c8a7005c7060d28ea72c6c7adfab606989f413\",\n                            \"earning-account\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                            \"effective-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"group-percent\": \"0.007089920124132836\",\n                            \"overall-percent\": \"0.002268774439722508\",\n                            \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.807284166067902747617e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bd579128ecf1606ec4700e31f1d6f88dbcc45506dd9e94461c8dbd102b44c5dc69ab762c7ec6d5332dbf24658bb4418f\",\n                            \"earning-account\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                            \"effective-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"group-percent\": \"0.007089920124132836\",\n                            \"overall-percent\": \"0.002268774439722508\",\n                            \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.807284166067902747617e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3a16916352fb68352c4b266a594a2ec823b473c11e5a175401096597cccf19c8978859dda1718f2b2ebffcd41cea6d8f\",\n                            \"earning-account\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                            \"effective-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"group-percent\": \"0.007089920124132836\",\n                            \"overall-percent\": \"0.002268774439722508\",\n                            \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.9717523088176633333e+25,\n            \"validator\": {\n                \"address\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                \"bls-public-keys\": [\n                    \"02760cadc6ef3d3c1f8b66adbe182ebc252b451178efc168e856870311c8a7005c7060d28ea72c6c7adfab606989f413\",\n                    \"bd579128ecf1606ec4700e31f1d6f88dbcc45506dd9e94461c8dbd102b44c5dc69ab762c7ec6d5332dbf24658bb4418f\",\n                    \"3a16916352fb68352c4b266a594a2ec823b473c11e5a175401096597cccf19c8978859dda1718f2b2ebffcd41cea6d8f\"\n                ],\n                \"creation-height\": 3362826,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.82764e+24,\n                        \"delegator-address\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                        \"reward\": 8.5920512296672403744619e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.009361991e+22,\n                        \"delegator-address\": \"one1sh5sw3907e92l2q0hj0ggg0qr6nwtk9hrn854q\",\n                        \"reward\": 367151427647288123771,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 133333000000,\n                        \"delegator-address\": \"one1jx7wusrrnj2djdf4dus5cq07yw3fe2077j2l67\",\n                        \"reward\": 1002461466,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 1.10693111869301156931928e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1940xav3v8j2z7fp9rj4xz009y2lpjgrglse2gf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1qztpmas5pxn4srlynkrxea5ck9m9zcfdmtklq6\",\n                        \"reward\": 1.502533333209437945122e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.398e+21,\n                        \"delegator-address\": \"one1q8y3kg3ag6mwedj5haqs9gv7jmpfjxrzca9h6m\",\n                        \"reward\": 36648037000118611046,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one122uq95m7t63rcvy6jd8jwgf96x8hfv63q9m9hh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1wec2k54hfe5s4aksjwd3tpdvxuj72wtpsnre40\",\n                        \"reward\": 61587090615294883900,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1snm00zd3vw927vsxavpnnd0fs4mmv00s9g6nms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.785055514875e+23,\n                        \"delegator-address\": \"one1j8mzv4nu9rd32fyx6wt2qujcql384xn52u33tt\",\n                        \"reward\": 156603175704522602551,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nja6y9fkj852pqz9edrsgpvklvuh6eu42hlldz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.093146e+24,\n                        \"delegator-address\": \"one1d4muf0q7n6tu77skew2s2wklpzqvypqp0f3udq\",\n                        \"reward\": 1.3575079983828333079893e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z63t53093vs0jt8xhvhqqt3qnycykq4qqydmvx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ahxlcwawlalnk35weehcg0rfvv0tgt33ga6058\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9837478999e+22,\n                        \"delegator-address\": \"one1wdywjvuakhtdh67lpw8vxhq9g8538rztepwykz\",\n                        \"reward\": 2.141755817744430884709e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xzsj7q7anzzc6mc9jplgt2h3492t5w3y4zpqza\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 115297422708719987335,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12s6hf5tc5k2pue866x2ywes9zndqm9zv7la24u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.90243778e+21,\n                        \"delegator-address\": \"one18cj3m04q7zwk27v2erw3ss5dakyh6xzc0kl8pn\",\n                        \"reward\": 2404316497321350816,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"StakeServe.com\",\n                \"identity\": \"StakeServe\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.500000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 3e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"StakeServe\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"contact@stakeserve.com\",\n                \"update-height\": 4126631,\n                \"website\": \"stakeserve.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+21,\n            \"validator\": {\n                \"address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n                \"bls-public-keys\": [\n                    \"0af5465ec9943035adf21475a2f00d50f651c6d6cf274e623c60ffed72ca42aa1430e5bcbef8b5ee9b01238154f52a84\"\n                ],\n                \"creation-height\": 3362836,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m36wepgrykuwuufhe0s450rnzkp5jmkde4udqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"A Turkish guy providing you validation services on Harmony blockchain!\",\n                \"identity\": \"TurkishGuyInDE-NodeONE\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"TurkishGuyInDE\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"info@turkishguyin.de\",\n                \"update-height\": 3374755,\n                \"website\": \"TurkishGuyIn.de\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1k2e5jgkgd4d5sg3ma362hmj77pt8tqvpjug4tk\",\n                \"bls-public-keys\": [\n                    \"e07739fcefd80e178bd293b3dba994a70526d6f75aef93f76fa65cd512b956fad02bfae13dc02c660dbcb8d8ae45ac08\"\n                ],\n                \"creation-height\": 3362930,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k2e5jgkgd4d5sg3ma362hmj77pt8tqvpjug4tk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Validators of today, Auditors of tomorrow\",\n                \"identity\": \"5736C325251A8046\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.300000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+29,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"AUDIT.one\",\n                \"rate\": \"0.150000000000000000\",\n                \"security-contact\": \"security@audit.one\",\n                \"update-height\": 3362930,\n                \"website\": \"https://audit.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 8404000000000000,\n            \"validator\": {\n                \"address\": \"one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu\",\n                \"bls-public-keys\": [\n                    \"5694348d4dd619648baf2829d0baff765563061080861ee8db43a4e316dc574fbbc5778f53c5762c5f6caa90701a1611\"\n                ],\n                \"creation-height\": 3363533,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8404000000000000,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e2whthzfvwq86cyevg3xzgj6ztps58c5vx6hna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12kvy5medu2rj4qt3ltmjj0lyndrhm87eq2lkcf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Beauty is in the eye of the beholder\",\n                \"identity\": \"elderorb\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Node of the beholder\",\n                \"rate\": \"0.009900000000000000\",\n                \"security-contact\": \"elderorb@gmail.com\",\n                \"update-height\": 3363533,\n                \"website\": \"https://en.wikipedia.org/wiki/Beholder_(Dungeons_%26_Dragons)\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1s34smmhr9acsnk57ammyf06m3au2pqaewxm5t4\",\n                \"bls-public-keys\": [\n                    \"96011943c19cd210a5d0e7113f1113c05c5b53dac200ef1b6ccb1431e248337a0ed2af25b22c99021f5842b28f03a88c\",\n                    \"8da986af386c1f7df29680ea1f86521dbd056c7013d317c8d20e2a8643fa4d211afb0a260a675baea4393d1fecadfc00\"\n                ],\n                \"creation-height\": 3363734,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s34smmhr9acsnk57ammyf06m3au2pqaewxm5t4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"https://t.me/harmonyoneblockbot\",\n                \"identity\": \"zergtengudev\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"ZergValidator\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"zerg\",\n                \"update-height\": 3669350,\n                \"website\": \"t.me/zergtengudev\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 101438,\n                    \"current-epoch-signing-percentage\": \"0.997992955667932548\",\n                    \"current-epoch-to-sign\": 101642\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"41953628332866999999999999.999999999999999994\",\n            \"lifetime\": {\n                \"apr\": \"0.117517781735523301\",\n                \"blocks\": {\n                    \"signed\": 14918075,\n                    \"to-sign\": 15232398\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121789678478108058\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122554815430486931\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124103284837214706\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125367990908674903\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.122663722031242974\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.128687819998813152\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121464957822009752\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.120062426342966621\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.120060199620204743\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117453521709939446\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.120856084690427186\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115319714693337923\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119523795768862052\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120674431557697708\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.121731769351842195\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.115575031667996231\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118403683809533415\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119801971839093667\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120146152344716446\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.119828420425680104\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119181492973318125\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.118890157722897864\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.111700564829738146\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118629988896320141\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117413407522045495\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118626939554195696\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118498081049498324\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117104335734867641\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118582555100787218\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117517196559034650\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117517781735523301\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 114817,\n                            \"to-sign\": 115052\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114547,\n                            \"to-sign\": 114824\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114722,\n                            \"to-sign\": 114868\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 115867,\n                            \"to-sign\": 116144\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114769,\n                            \"to-sign\": 114912\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114535,\n                            \"to-sign\": 114816\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 116899,\n                            \"to-sign\": 117152\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114645,\n                            \"to-sign\": 114884\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 107491,\n                            \"to-sign\": 114816\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114681,\n                            \"to-sign\": 114972\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114291,\n                            \"to-sign\": 114920\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 115334,\n                            \"to-sign\": 115624\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 115033,\n                            \"to-sign\": 115264\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 115715,\n                            \"to-sign\": 116136\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 118962,\n                            \"to-sign\": 119228\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 122648,\n                            \"to-sign\": 123176\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 115465,\n                            \"to-sign\": 115964\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114965,\n                            \"to-sign\": 115260\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114941,\n                            \"to-sign\": 115408\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 119948,\n                            \"to-sign\": 120436\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114818,\n                            \"to-sign\": 115076\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114919,\n                            \"to-sign\": 115172\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114970,\n                            \"to-sign\": 115264\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 117452,\n                            \"to-sign\": 117804\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 119373,\n                            \"to-sign\": 119784\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 116851,\n                            \"to-sign\": 117068\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 119722,\n                            \"to-sign\": 120136\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 120261,\n                            \"to-sign\": 120500\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 120300,\n                            \"to-sign\": 120716\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 126055,\n                            \"to-sign\": 126428\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 2.480770851462996824022923e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.63706402950034433325e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"064a5352bc38accc647cdd10e6b6f091458d2c85a996a27c9fb9dd075920412e07c1db3c6989043d27aebbd86e1d9f98\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006598203077576936\",\n                            \"overall-percent\": \"0.002111424984824620\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.636803288407976479985e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4542fda471c1c8fe5b7770a78dd96b927bb3a96c227c31aee258f41a38210c7e459e564c01aaa112616f0bead2288e88\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006598203077576936\",\n                            \"overall-percent\": \"0.002111424984824620\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.63718179349557837393e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0d5b80dc2ce0212ff0a843b007e7e9a8845ea0ca6702a87a1492e63c99088ef60f08d95f4290cae6ba31e08aee355684\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006598203077576936\",\n                            \"overall-percent\": \"0.002111424984824620\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.600011780094201451077e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4a017b97577cc281915d97de38d741281c6beda42bf24f9d44bc100e86c7fc749951f87f61ba74a53dcd04409a7f1215\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006259630228553863\",\n                            \"overall-percent\": \"0.002003081673137236\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.599648589405642917438e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f0c2ed95d5f41301a689dcf6a3271bdfbeba45e235e71056c1dc67e0b91eafab85a09333441afdeb3b2acc5a5f984391\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006259630228553863\",\n                            \"overall-percent\": \"0.002003081673137236\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.599882575347091467497e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"be78abe18e82e488afdb76ad93ab5bf7879af26d7100fbcf863a4932da0fa7d635fb92c6e64c6bd6f0516f1d80e72491\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006259630228553863\",\n                            \"overall-percent\": \"0.002003081673137236\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.599668016235368669208e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e6ee4dd21bbafeccfd88c393577d15a2c4dc52f2b78e3582038f40b49c2bac84da4c6959f8a0628372a0dcacd592cc85\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006259630228553863\",\n                            \"overall-percent\": \"0.002003081673137236\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 4.1953628332867e+25,\n            \"validator\": {\n                \"address\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                \"bls-public-keys\": [\n                    \"064a5352bc38accc647cdd10e6b6f091458d2c85a996a27c9fb9dd075920412e07c1db3c6989043d27aebbd86e1d9f98\",\n                    \"4a017b97577cc281915d97de38d741281c6beda42bf24f9d44bc100e86c7fc749951f87f61ba74a53dcd04409a7f1215\",\n                    \"be78abe18e82e488afdb76ad93ab5bf7879af26d7100fbcf863a4932da0fa7d635fb92c6e64c6bd6f0516f1d80e72491\",\n                    \"e6ee4dd21bbafeccfd88c393577d15a2c4dc52f2b78e3582038f40b49c2bac84da4c6959f8a0628372a0dcacd592cc85\",\n                    \"f0c2ed95d5f41301a689dcf6a3271bdfbeba45e235e71056c1dc67e0b91eafab85a09333441afdeb3b2acc5a5f984391\",\n                    \"0d5b80dc2ce0212ff0a843b007e7e9a8845ea0ca6702a87a1492e63c99088ef60f08d95f4290cae6ba31e08aee355684\",\n                    \"4542fda471c1c8fe5b7770a78dd96b927bb3a96c227c31aee258f41a38210c7e459e564c01aaa112616f0bead2288e88\"\n                ],\n                \"creation-height\": 3363793,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.2801772125e+22,\n                        \"delegator-address\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                        \"reward\": 1.8996440876187450468725e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.81865e+23,\n                        \"delegator-address\": \"one15j7475xvnvm3eccr82mmjjsnnpnqwv9hha4n32\",\n                        \"reward\": 1.137089583718806280156e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.543940560742e+24,\n                        \"delegator-address\": \"one164g0gx65emt0a6lwpjjnqfd4d3jcpvv5ae4h0t\",\n                        \"reward\": 3.2320835082074998583492e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t9nch5t4hu4qng3jwe6pq5jsd5zwz0wnwfq4sg\",\n                        \"reward\": 9.708654531606883654261e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1s9urj5w46gy3sxq0ezpyxmh0qr8cjawe97dvvu\",\n                        \"reward\": 55199391927337285042,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s87yrnavq8d4d23grdh8md7qr7jctmexpmqy27\",\n                        \"reward\": 230023249708528265,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 1.159949775120974845505e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0321e+22,\n                        \"delegator-address\": \"one1vgll7h2a4xj0rxm4zjr5wuq9qlcf67n8aulm6s\",\n                        \"reward\": 271216291551629310544,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 4754392135046554244,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 2.85609953939776565305415e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+21,\n                        \"delegator-address\": \"one1jkpam6q00rgw2rs9hzch665tvjkrs5849p3axe\",\n                        \"reward\": 21663541397446583157,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one16x0e9p4gcjgrpjy3pmud8y8q6pu5vsxqcdepqg\",\n                        \"reward\": 1268341106443752983,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gef0jlqktwlzyhkwmvswujgflq3y0uy8jazk4q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one139ujmnlqdradgs9rmzwtpnk0n5yyxe86quj7pe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"We are an experienced blockchain team based in San Francisco and Nepal. We guarantee you to get maximum returns and have high uptime for the node.\",\n                \"identity\": \"iBrizLovesHarmony\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.800000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"iBriz-Validator\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"harmony@ibriz.ai\",\n                \"update-height\": 3400823,\n                \"website\": \"https://ibriz.ai\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.492039577863181746\",\n                \"blocks\": {\n                    \"signed\": 80999,\n                    \"to-sign\": 81920\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"1.133315876406568270\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.735011690268374527\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.492039577863181746\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 2.5722511614235130772896e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1fzh923dkauvyye7w68nc38j2dw54gldu5mheaz\",\n                \"bls-public-keys\": [\n                    \"bbe138408ff5551e7fa64bfc065dd841614459d0373af72d8686a2ad78f0278ebd639d20c64f3efbc746cba16d85df10\"\n                ],\n                \"creation-height\": 3364004,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fzh923dkauvyye7w68nc38j2dw54gldu5mheaz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 906342279568875198061,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7lxuqkg3sedxz9j6a4v2axxmrdhhr45d2ckv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one150gdz40c4sxyfzgk8zsdgq2wj6282e9slqxap5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8dt4hz56jzksjaw7vayf8d4n5k5tj5heagnpw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19u0l4vvzhqntlyefjgtxlcmnml99et7jk5nm86\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ly97t6qs4waps55m588wf228mvz3ka08avhs8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv3e6dycywtc6u3xz9kxvg87mnwgykjc5cuga0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sdp4lyruf8ruk2x3xyyremdaq2ck0xxw9n53x5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s4rypls26kmzg03dxkklmpwhmv8u4nlh6vqkdv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14uzsrvucmxx5wwkx46r9a6mpqgtjlrchelw5pp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zgmd5s6fyv9rm2vuf3augqf3ucnp9a2j0h09u3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zzhwus03x3j3fgtust0v07k7rf583rrp84zdet\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"If you are staking on this validator, sorry for not being able to have enough stake to get elected. Feel free to undelegate and delegate to another one. However, if you would like a validator with the same care, please check out my public validator at the website\",\n                \"identity\": \"Harmony-FN-CL1\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.050000000000000000\",\n                \"max-total-delegation\": 5e+25,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Chickens DECOMISSIONED Validator - Stake on my public validator! - 🐤\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"cmliu@ucsd.edu\",\n                \"update-height\": 3440371,\n                \"website\": \"https://staking.harmony.one/validators/one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.636257838530536779\",\n                \"blocks\": {\n                    \"signed\": 10416,\n                    \"to-sign\": 16384\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.636257838530536779\",\n                        \"epoch\": 186\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 3.3514209453304658288e+21\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1xsf70cu7uuu5k6f0kpxp9at8r4dmg0sttzx40t\",\n                \"bls-public-keys\": [\n                    \"58d7eec172ab9e9d994dd8ebd9c473252ed7ba6a2bc9cbae7f835a3dac74363a72e94e83d5ae176b164c8d2e5be74984\"\n                ],\n                \"creation-height\": 3364063,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xsf70cu7uuu5k6f0kpxp9at8r4dmg0sttzx40t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"mc1\",\n                \"identity\": \"mourgos\",\n                \"last-epoch-in-committee\": 186,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+23,\n                \"name\": \"mourgos\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"Dog\",\n                \"update-height\": 3434000,\n                \"website\": \"515.ventures\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.646535551840267008\",\n                \"blocks\": {\n                    \"signed\": 62313,\n                    \"to-sign\": 63176\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.563727492136581963\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.894455878998170050\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.646535551840267008\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 2.8382761655495599817248e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1cfpfse8amkdalscvywfl28cd9u7zq8c0k0gg8y\",\n                \"bls-public-keys\": [\n                    \"0eba555e9afc890a3966ed54a08a084d785805450b1364791ce6c3ac19a9abec2077672f414767b9826f50a9d9ab9699\"\n                ],\n                \"creation-height\": 3364146,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cfpfse8amkdalscvywfl28cd9u7zq8c0k0gg8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6cfkvgjyxw7l89urs25rqe57mkx304und53de\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12kvy5medu2rj4qt3ltmjj0lyndrhm87eq2lkcf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uevnvfzez0kk0vkc2p45208neatzsmuwn6n0zl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v9yk732v6e3reamu33zgt57thpg753vyazuj2e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wzcne5z5k8lvjytun84pd0cwwsn9j3z5h04u4p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Sharing is Caring\",\n                \"identity\": \"None\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Harmony Hodlings\",\n                \"rate\": \"0.030000000000000000\",\n                \"security-contact\": \"None\",\n                \"update-height\": 3364146,\n                \"website\": \"https://harmony.one/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1df49l0afjgltkaheussp8e7y708ac9zuyfpfle\",\n                \"bls-public-keys\": [\n                    \"193286206a62931b59483b2fe86992ebdaaecaecdb4b5372bab3c0f869a8bd16ea0378b113de4b1fd97a6082b7e65498\"\n                ],\n                \"creation-height\": 3364156,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1df49l0afjgltkaheussp8e7y708ac9zuyfpfle\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xsf70cu7uuu5k6f0kpxp9at8r4dmg0sttzx40t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"mc2\",\n                \"identity\": \"Orestis\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 9e+22,\n                \"name\": \"orestis\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Dog\",\n                \"update-height\": 3376619,\n                \"website\": \"515.ventures\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 29092,\n                    \"current-epoch-signing-percentage\": \"1.000000000000000000\",\n                    \"current-epoch-to-sign\": 29092\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"13309227296375600950311000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.100114048613068666\",\n                \"blocks\": {\n                    \"signed\": 3587141,\n                    \"to-sign\": 3591758\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.102208572157150796\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.102466793335083785\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.102642669402713367\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.100590456317670620\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.100135521667635073\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.100207728573517805\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.099185323559129722\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.100773317734173568\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.098969185513354377\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.100045444167855869\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.096884860915070407\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.099270704057746646\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.099954822984929286\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.099302020916305880\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.100729486909652804\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.100647317403278667\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.099837071331686695\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.099167166532363069\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.100154277973798861\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.099906772103058716\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.100070432820538085\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.102319571075517554\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.098638262487503669\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.100007862261486355\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.098933594564917399\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.099365154167536863\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.097075156246991107\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.098075031703233841\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.097798717627078212\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.099257060593925322\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.100114048613068666\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 32962,\n                            \"to-sign\": 32962\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32852,\n                            \"to-sign\": 32852\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32856,\n                            \"to-sign\": 32858\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33492,\n                            \"to-sign\": 33500\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32876,\n                            \"to-sign\": 32880\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32852,\n                            \"to-sign\": 32854\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34002,\n                            \"to-sign\": 34004\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32871,\n                            \"to-sign\": 32872\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32821,\n                            \"to-sign\": 32834\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32908,\n                            \"to-sign\": 32908\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32978,\n                            \"to-sign\": 32978\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33231,\n                            \"to-sign\": 33234\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33051,\n                            \"to-sign\": 33054\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33487,\n                            \"to-sign\": 33490\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35080,\n                            \"to-sign\": 35080\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 37048,\n                            \"to-sign\": 37050\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33434,\n                            \"to-sign\": 33438\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33064,\n                            \"to-sign\": 33068\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33104,\n                            \"to-sign\": 33112\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35639,\n                            \"to-sign\": 35652\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32950,\n                            \"to-sign\": 32960\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33014,\n                            \"to-sign\": 33014\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33039,\n                            \"to-sign\": 33044\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34312,\n                            \"to-sign\": 34316\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35308,\n                            \"to-sign\": 35320\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33949,\n                            \"to-sign\": 33956\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35484,\n                            \"to-sign\": 35492\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35694,\n                            \"to-sign\": 35694\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35780,\n                            \"to-sign\": 35780\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 38667,\n                            \"to-sign\": 38668\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 4.96220635549633417206892e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.771617923002647326458e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"eb37778ff56f77889fba694d66dccfa722f9801b49b9a33cda83367aa04e85aa89c8503f3270022f67ec765ebb552816\",\n                            \"earning-account\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"7796224637159500000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.771617923002647326458e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5a76dea3da90cda648ac99912d3ea71f7688341cc6d05c48b91d460c6ce23b58aba59516dd0165af65112b5f63c64e12\",\n                            \"earning-account\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"7796224637159500000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.5592449274319e+25,\n            \"validator\": {\n                \"address\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n                \"bls-public-keys\": [\n                    \"eb37778ff56f77889fba694d66dccfa722f9801b49b9a33cda83367aa04e85aa89c8503f3270022f67ec765ebb552816\",\n                    \"5a76dea3da90cda648ac99912d3ea71f7688341cc6d05c48b91d460c6ce23b58aba59516dd0165af65112b5f63c64e12\"\n                ],\n                \"creation-height\": 3364199,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.193e+23,\n                        \"delegator-address\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n                        \"reward\": 4.112261127706394212448e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xc3fye0n84z55wwhfa2czgcv546e7mygwfpa2y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 8.2035580520316267358106e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nagf403dvd0l02cnc7hvaz8s35yz3n5zfuynee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 85187315310442104643,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0149274319e+22,\n                        \"delegator-address\": \"one1m7zzkhlc9hzcka8xgept3tqpwf96d2xss7vkge\",\n                        \"reward\": 191756780159095706487,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3e+22,\n                        \"delegator-address\": \"one1ssupsze083l67cqwmt40f853nre45v4w4hdta9\",\n                        \"reward\": 261956745317216118353,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Ubik Capital is providing highly resilient and secure staking service for different blockchain projects\",\n                \"identity\": \"UbikCapital\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 1e+29,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"UbikCapital\",\n                \"rate\": \"0.200000000000000000\",\n                \"security-contact\": \"support@ubik.capital\",\n                \"update-height\": 4016436,\n                \"website\": \"ubik.capital\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1c8e309nvdydaa737n92k73cxrv5xhnha69h8gx\",\n                \"bls-public-keys\": [\n                    \"9b45759a815a6c87a4caaa39db768c922a24b99bf6ef6240f39e114ed376d1213bc03d3b9d555dc2ffbc298059d22008\"\n                ],\n                \"creation-height\": 3364403,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c8e309nvdydaa737n92k73cxrv5xhnha69h8gx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ddvyyt49cxcm3g75s6ydhxqmhdasvlzayxqwz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"TH Node\",\n                \"identity\": \"Addict\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"UMARU\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3364403,\n                \"website\": \"https://t.me/bitcoinaddictclub\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.338259159448956980\",\n                \"blocks\": {\n                    \"signed\": 122246,\n                    \"to-sign\": 122609\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.800116349022580229\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.202182386592177557\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.720091888835289610\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.349300612008104872\",\n                        \"epoch\": 189\n                    },\n                    {\n                        \"apr\": \"0.344961488313027327\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.338259159448956980\",\n                        \"epoch\": 191\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 4.8210779206510654459712e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.80217294712e+23,\n            \"validator\": {\n                \"address\": \"one16yvnyrac2nfaapm8tyraesa7khtg3d9tr786pv\",\n                \"bls-public-keys\": [\n                    \"7d0edf66aed2a8a8e6f8a7d3454e3bcd5fd27bbb860d7aace6c81668298ca61805311f807fa3288020fdd30797ae5611\"\n                ],\n                \"creation-height\": 3364460,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16yvnyrac2nfaapm8tyraesa7khtg3d9tr786pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n24e0eqg0ajwf2ehtvy0fw02ruvu4955ks27xg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qtx776yews0t80k9ppe6d2qd76clnpp2tjs8wt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1umwmahvkvf6pwpmw9wcsq02gjz0v0k4sss0c3r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.80217294712e+23,\n                        \"delegator-address\": \"one1qqszruyzk5szh0yqs3fln35rcsgdgzknrgxreh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g4u3hy78vux7mtqerfqechx7q7seyg6avtnq4h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vyppmyy5menfw6zagwj620y4cka8yn8yw2txj9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mwhe2kjsxs3fvr8th39nhkgllcap4cplr5pdx3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one122uq95m7t63rcvy6jd8jwgf96x8hfv63q9m9hh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dnh7wjg8mkvru3fantlqcazsrw3ma6ucdkqvps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jfft9hs3ed4uu38yag0y2wzp70vmpcga9xzdq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1axv7pm9duu4qygc0krwr0z4p4dzedlh5qlpqrs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1daf4g7ulu9hd6tr8wa78sz6pdj5ef59lv7vj72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3v0wr00vtzaz8r2zm8cw9a46urr6g2v4vljuy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ew2n5677rufu6e8n32j8pmvkgxt7gug3zajgy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jm9erjgeudx44jxvpyr09u2wevfrjykuvch5kf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14tjgzzar34cz0avfqa4e2hh2s375ajeadzgdu9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v9yk732v6e3reamu33zgt57thpg753vyazuj2e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Blockchain validator in PoS consensus.\",\n                \"identity\": \"C95430604CCE11FA\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Validator.Center\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"validatorcenter\",\n                \"update-height\": 3407822,\n                \"website\": \"https://validator.center\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 58143,\n                    \"current-epoch-signing-percentage\": \"0.999295338924790320\",\n                    \"current-epoch-to-sign\": 58184\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"24791155580011500000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.116663160661318866\",\n                \"blocks\": {\n                    \"signed\": 8342942,\n                    \"to-sign\": 8412171\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121624871368072958\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121823371951681743\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.122030146679627166\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125590877886110968\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.119074603217238332\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124513352451031911\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123216987772452951\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119227359954801995\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116153427014727559\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117367580133539080\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.113794465081261108\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115883712741344595\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118345307873325386\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.117635805238532309\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120100317112470521\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118691467911676540\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120628666039991223\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119834338336493766\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121064257041288347\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120765209088235968\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120950251871366093\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.123065337434884881\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116341478777908757\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117835463823040269\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116287139016755262\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117256592392179607\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117160689475780491\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117096013902012413\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117752501300554395\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117424233371035055\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.116663160661318866\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 65842,\n                            \"to-sign\": 65924\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65624,\n                            \"to-sign\": 65704\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65669,\n                            \"to-sign\": 65716\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 67000,\n                            \"to-sign\": 67000\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65760,\n                            \"to-sign\": 65760\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65708,\n                            \"to-sign\": 65708\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 68008,\n                            \"to-sign\": 68008\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65744,\n                            \"to-sign\": 65744\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65668,\n                            \"to-sign\": 65668\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65504,\n                            \"to-sign\": 65816\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65956,\n                            \"to-sign\": 65956\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66468,\n                            \"to-sign\": 66468\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66108,\n                            \"to-sign\": 66108\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66989,\n                            \"to-sign\": 66989\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 87687,\n                            \"to-sign\": 87688\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 74112,\n                            \"to-sign\": 74112\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83587,\n                            \"to-sign\": 83587\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66136,\n                            \"to-sign\": 66136\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66224,\n                            \"to-sign\": 66224\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 71304,\n                            \"to-sign\": 71304\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65920,\n                            \"to-sign\": 65920\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66028,\n                            \"to-sign\": 66028\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66088,\n                            \"to-sign\": 66088\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 68645,\n                            \"to-sign\": 68645\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 88300,\n                            \"to-sign\": 88300\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 84890,\n                            \"to-sign\": 84890\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 88726,\n                            \"to-sign\": 88730\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 89230,\n                            \"to-sign\": 89235\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 89450,\n                            \"to-sign\": 89450\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 96669,\n                            \"to-sign\": 96670\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.223223196264662207241067e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.649278083402373332087e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1e09f6ede6b7cca5d2c53a2b6de6ea70a8ca1b4d2fbbeb8758c599afd74cfa8964842de85b7b783b7cc86fb6ccb11312\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"group-percent\": \"0.006453049979440027\",\n                            \"overall-percent\": \"0.002064975993420809\",\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.648816049785977160601e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"42fa89ee6e6296133ac05bbfd8c95976540ef369683864f0aaa3c7f0f5390046d077a3f4156e51654ba8c14234654c12\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"group-percent\": \"0.006453049979440027\",\n                            \"overall-percent\": \"0.002064975993420809\",\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.649156348852990029183e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3db51e1ab47e33b2eea18327a19ab3ce4e0496636d88c16d08b2e78f6e4d161a5a75e117fd696353ef4be9f67f0e0a96\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"group-percent\": \"0.006453049979440027\",\n                            \"overall-percent\": \"0.002064975993420809\",\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647846010442130874165e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4e0f36a24c1df21024587a4ece5b1c57ed20d636f9da0146f875260205bf20eb324763cbda6d1aa70d46baf5d4886a96\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"group-percent\": \"0.006453049979440027\",\n                            \"overall-percent\": \"0.002064975993420809\",\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 2.48258925800115e+25,\n            \"validator\": {\n                \"address\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                \"bls-public-keys\": [\n                    \"1e09f6ede6b7cca5d2c53a2b6de6ea70a8ca1b4d2fbbeb8758c599afd74cfa8964842de85b7b783b7cc86fb6ccb11312\",\n                    \"3db51e1ab47e33b2eea18327a19ab3ce4e0496636d88c16d08b2e78f6e4d161a5a75e117fd696353ef4be9f67f0e0a96\",\n                    \"42fa89ee6e6296133ac05bbfd8c95976540ef369683864f0aaa3c7f0f5390046d077a3f4156e51654ba8c14234654c12\",\n                    \"4e0f36a24c1df21024587a4ece5b1c57ed20d636f9da0146f875260205bf20eb324763cbda6d1aa70d46baf5d4886a96\"\n                ],\n                \"creation-height\": 3364486,\n                \"delegations\": [\n                    {\n                        \"amount\": 7.00051e+24,\n                        \"delegator-address\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                        \"reward\": 1.063945334849474758609e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.730576e+24,\n                        \"delegator-address\": \"one12saruhnv9f63dqhuadjq3vhqm3nwyw2ac40uyz\",\n                        \"reward\": 1.118741358742479289596e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.623e+22,\n                        \"delegator-address\": \"one1y2fser5hnp4jjsx05p8jteywrg355etrqztdhh\",\n                        \"reward\": 43632594730176338971,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.154e+22,\n                        \"delegator-address\": \"one1pguavz8dfngxljfj83nlyzd3nyqjrgz5mckyd8\",\n                        \"reward\": 35831340071175066201,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.023e+22,\n                        \"delegator-address\": \"one1vklnap0x0p78j6250u4a50ejtyhlzcmv5tyenq\",\n                        \"reward\": 33652895653472231452,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.412e+22,\n                        \"delegator-address\": \"one199l790dlwvkesd6ve4luke9996gmamznt26n0f\",\n                        \"reward\": 56760914594251769650,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0985e+22,\n                        \"delegator-address\": \"one1x45ddvdp97zst9z6wtvjakuju3f3hu8a46rju6\",\n                        \"reward\": 34910698593012478304,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.356e+22,\n                        \"delegator-address\": \"one1uuh3pg50ynspntw5mpzsw7wg0ccruzsshumxn3\",\n                        \"reward\": 39186999468495616396,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5985e+22,\n                        \"delegator-address\": \"one1wue9zu2y0wg249g8erkpkrjqk5zhu7sd3s62u8\",\n                        \"reward\": 59854586830502766881,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1005e+22,\n                        \"delegator-address\": \"one1xu34r3fk4qrh3edx3cxtnc67dn6sf0jefuvsst\",\n                        \"reward\": 51572344026033309396,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2885e+22,\n                        \"delegator-address\": \"one19sky9qmd502gr0cvqr3xggp0a2rxs9tcw4wxkt\",\n                        \"reward\": 54700612152631676946,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1884e+22,\n                        \"delegator-address\": \"one1v8fny0p2munnheffq2v2j3xwmd845jqngzdydx\",\n                        \"reward\": 36402419588358710584,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0544e+22,\n                        \"delegator-address\": \"one1a5ph0zsp0hcng5hkualk7l7fjjcgg2kltuersu\",\n                        \"reward\": 34174152731099708493,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0985e+22,\n                        \"delegator-address\": \"one1mt0gpmr7cwwclh0s04ee86h8xnwyhq8hemv5nf\",\n                        \"reward\": 51543446479408950944,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0265e+22,\n                        \"delegator-address\": \"one17vad4afh4pxrya9hvdqamssf6nn7zp5ukntz22\",\n                        \"reward\": 66982115786817933492,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.012e+22,\n                        \"delegator-address\": \"one18uwy6lhhf4n64u5mhhjvz597a2vu2uv2uancmt\",\n                        \"reward\": 83377990605624197127,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0166e+22,\n                        \"delegator-address\": \"one16zgqx8hvxmdyvm47vq7c09k3e4h9836y5288le\",\n                        \"reward\": 33548208140418796247,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5874e+22,\n                        \"delegator-address\": \"one17tj2jjehdlg8xfgp48xpeyqur2qf6nvs88jvyu\",\n                        \"reward\": 59664266856693312073,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1595e+22,\n                        \"delegator-address\": \"one1zc4jhrn0864ph923gdtg27uvljyprs6mcnyz9l\",\n                        \"reward\": 52555394746141041725,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.176e+22,\n                        \"delegator-address\": \"one1cr8qrjl6khac9d5auyslvxln864vmqd5xll2zh\",\n                        \"reward\": 69462470904479791263,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.356e+22,\n                        \"delegator-address\": \"one1ncs6wtan7n0fs4dg2ldvywt8926nguwwxxvs6w\",\n                        \"reward\": 39188245398167541904,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0233e+22,\n                        \"delegator-address\": \"one1nt53xanw4aalm72jeak99ypajvhkc3j2qpk980\",\n                        \"reward\": 66920372153720065560,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3165e+22,\n                        \"delegator-address\": \"one1urxe5d9cw2q6zuwq5wlxz53rmw6g8n3xld55fg\",\n                        \"reward\": 38529593464944175581,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2861e+22,\n                        \"delegator-address\": \"one1uammf8cp39hd8edtn5sw6s3yfx7c0a25hn0p2n\",\n                        \"reward\": 38023154144781413115,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1493e+22,\n                        \"delegator-address\": \"one165ja8ftjlthqcdxr9wevelktv9xe0wtu6srmn7\",\n                        \"reward\": 69011035937174260810,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5136e+22,\n                        \"delegator-address\": \"one19y0zvux7kwt98dey605ndc8dh74vp7hdrehnfw\",\n                        \"reward\": 58436853439169746999,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.383e+22,\n                        \"delegator-address\": \"one1nkgvlnmqyd0cejhfswenz56uzy2t9pp059nlhn\",\n                        \"reward\": 56264167765297314755,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.151481e+24,\n                        \"delegator-address\": \"one1h5mrdlsg4vuvhruuj04nxaxxetm5rk7kqvl7zg\",\n                        \"reward\": 3.578147261888378128208e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.801969e+24,\n                        \"delegator-address\": \"one1wtukty43wext8zyvq0q3l2n33e0antyvmqfn6v\",\n                        \"reward\": 2.994543500908789479141e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.49243e+23,\n                        \"delegator-address\": \"one19ag5tkh36d5c0metjayes55wk2ze86f0e69y5k\",\n                        \"reward\": 1.246257627966369046013e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.12921e+23,\n                        \"delegator-address\": \"one1w6k3ff6p3hgmuswcryhqlnvwc7n82waf9jsdpk\",\n                        \"reward\": 853151994766939252632,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.00165e+23,\n                        \"delegator-address\": \"one1wqevs0kcr6zl2hqedxdqx9wvkq9ycnyj29yjed\",\n                        \"reward\": 499260004051824831913,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.19532e+23,\n                        \"delegator-address\": \"one1egz5pp8e5739fdwtev98azz8qf9nyg84mx4suv\",\n                        \"reward\": 365136588272324232389,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.10232e+23,\n                        \"delegator-address\": \"one15md8frh5z3em2waflqpf7sxjvz2tmpn3ywyj8z\",\n                        \"reward\": 183339482328172687859,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0154e+22,\n                        \"delegator-address\": \"one1qtjk0fxzctnugdw50pmkwrpwykrqgw0tj8zpq4\",\n                        \"reward\": 116678690441953978594,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3562e+22,\n                        \"delegator-address\": \"one1kfxfgsadnen9zkk9qkghsz5wmmxqsc8dglyqan\",\n                        \"reward\": 39187003277739704163,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.75e+23,\n                        \"delegator-address\": \"one17ytdqfkpth7mnf56la5n03s0zevwt6l05np8qg\",\n                        \"reward\": 291040977735452085250,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.78099601634e+23,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 428909601283174130991,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rezpx3tjmp2yzgn3kl8tgaptrdzv3dg4tcy8kn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1458e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 1512930358716429617,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.845e+22,\n                        \"delegator-address\": \"one1uty6xd9zmatpc8geqves5l56kxea8qa2dwf7nn\",\n                        \"reward\": 82392512546880680101,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5345e+21,\n                        \"delegator-address\": \"one1h7dzamwjvfyt8zfjgnuxx247uuplj3fyns7gpg\",\n                        \"reward\": 26162147493379475867,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nja6y9fkj852pqz9edrsgpvklvuh6eu42hlldz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1xwzad7aha0h77hulz0uc7uzmsqrjl858xj9h45\",\n                        \"reward\": 22258203372476321801,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.24e+22,\n                        \"delegator-address\": \"one1ln66zgvc2krv9v7hqauws45ktnal6jmws2c0fa\",\n                        \"reward\": 9270111680459186003,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.00001173e+23,\n                        \"delegator-address\": \"one1kv9cu6x5c4apnlx5unf9elx0mnp078fgcmek69\",\n                        \"reward\": 1.431606941193686012987e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1jy0uvsvx6kkv7pg3xl65sywf4875d3fasw4qde\",\n                        \"reward\": 155353634616414467810,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n                        \"reward\": 248437300922039361915,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1w7hs5qwxqwdlevjcq604rfqe63fx6rpve8vp5p\",\n                        \"reward\": 919582744024034359,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.846e+22,\n                        \"delegator-address\": \"one1yqftrr97w9cw0cq4ktzvvchwvv75su0u7m9rs5\",\n                        \"reward\": 63974694791472852073,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.496e+22,\n                        \"delegator-address\": \"one17spyuvu0j5x84jdfm9g2ken3exf5c9ymxzkg45\",\n                        \"reward\": 58151532155666054520,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.487e+22,\n                        \"delegator-address\": \"one10jztlk059ktxje72tufp0lddx86mf6euzw8gc8\",\n                        \"reward\": 58000599194995868138,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5884e+22,\n                        \"delegator-address\": \"one12c56j6xqvqazdjlpwd34xx206skxknmjf6yy89\",\n                        \"reward\": 59686591463825460412,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.649e+22,\n                        \"delegator-address\": \"one1sd5h6k0nady0ts79rkyzzkm0fqtz7z6kdmygrr\",\n                        \"reward\": 60692633953628945575,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6452e+22,\n                        \"delegator-address\": \"one1uv6jzqqjk9e9uvrtkykma8tazgytug4dkthp9d\",\n                        \"reward\": 60639068289111757490,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1993e+22,\n                        \"delegator-address\": \"one1h32w4rhr6p2gv3t8pae5tqadn38d83re9lu8u6\",\n                        \"reward\": 53220251193020222269,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.746e+22,\n                        \"delegator-address\": \"one1kslq2trt3fd3xtssl5f9dtutpdq8nsf8r9cmwv\",\n                        \"reward\": 62313267197575576007,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.823e+22,\n                        \"delegator-address\": \"one1rwyp7a3ffkx43v0wynt8xcw35f0wwhyax24vhm\",\n                        \"reward\": 63592784722306518112,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2494e+22,\n                        \"delegator-address\": \"one1ypvgxde7rxwnw2cwwwd7cc9ugwytc33tuhan4j\",\n                        \"reward\": 54050226282122924213,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9649e+22,\n                        \"delegator-address\": \"one1w8s5f52wvptcn54jxu4re2mhr00l0p02t4hfqc\",\n                        \"reward\": 49316833672887023435,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5673e+22,\n                        \"delegator-address\": \"one1ecdxwl9svchez2hn7p476lp9wkmf6uf28fvnmw\",\n                        \"reward\": 59335630846311626636,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3089e+22,\n                        \"delegator-address\": \"one15as23rrc2d9l8ckstfh7dn6wpwhe3lvjv3p8nd\",\n                        \"reward\": 38403592136167079052,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2869e+22,\n                        \"delegator-address\": \"one1f06m2u2cecehh6g973f6s0gdrjyq76jcyhhrsc\",\n                        \"reward\": 38036863132480871650,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7649e+22,\n                        \"delegator-address\": \"one1wndshweha50cfl3vvsl7c3ukf3mxdxmrrq5v2n\",\n                        \"reward\": 62629652420048274341,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.864e+22,\n                        \"delegator-address\": \"one185kygtd02u49qeg35pcx886n0x2ape4e0wj03a\",\n                        \"reward\": 64276832885339124358,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.974e+22,\n                        \"delegator-address\": \"one13xpwh0zs2d3rrn5ka9qqyv676xduz6us35ag0p\",\n                        \"reward\": 66105959381517748679,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.974e+22,\n                        \"delegator-address\": \"one1ujhmgnqj5k0a93z6psgnjwkqwljftg76f9msnh\",\n                        \"reward\": 66103857800653473647,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.964e+22,\n                        \"delegator-address\": \"one15eyw36cwa9sdnhja7awnjvclw5zxeapjgc5g76\",\n                        \"reward\": 65936119412202602719,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.47468e+23,\n                        \"delegator-address\": \"one16gxfc8h0mtf4f0e7zejjqu5t83havud56ddesj\",\n                        \"reward\": 244954179882010729058,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+22,\n                        \"delegator-address\": \"one1d9a7vgsz28g7eavjcnetfkkxa8yga2mu4dc28h\",\n                        \"reward\": 173610302776208392586,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14njp96l2ev680t8mmvymtnxkmeaxq0y2vfcnr7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8465e+22,\n                        \"delegator-address\": \"one1jskuuqtrq49xlljzzqyspvm2w5jzjnltf4nvy3\",\n                        \"reward\": 63979621576637245470,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4965e+22,\n                        \"delegator-address\": \"one1ujeumt9vrclyaw9ugtuq2w0he9q22c46p6wy23\",\n                        \"reward\": 58156150895824416174,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4875e+22,\n                        \"delegator-address\": \"one1mcexwatg2ym6lkfmtt5zfa7j53e27yl5xa2tuj\",\n                        \"reward\": 58005227277864031604,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5889e+22,\n                        \"delegator-address\": \"one1yhxeh489puwtwsnwudvx07z3qc0ykljs7yk83d\",\n                        \"reward\": 59700601848393780484,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6495e+22,\n                        \"delegator-address\": \"one1yxywf7fh77c7l8dwk75flsvj8d68lc2tc8ggva\",\n                        \"reward\": 60708026865336937629,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6457e+22,\n                        \"delegator-address\": \"one159lf8ynp4cfevxngawfwfqvd9pslakjlv2jk0a\",\n                        \"reward\": 60642887363825431467,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1998e+22,\n                        \"delegator-address\": \"one1lsqyj9q0c0kau846ynkh09g6pd80adsqltua66\",\n                        \"reward\": 53224620306550383227,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7465e+22,\n                        \"delegator-address\": \"one1dw06q3jyltt0qdlg3cmuz60qrgnqu304r6ze2e\",\n                        \"reward\": 62316961538299962447,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8235e+22,\n                        \"delegator-address\": \"one1u30t44cvhh0np0wpjfjts4h8vnahyuef49shva\",\n                        \"reward\": 63597057870342430949,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2499e+22,\n                        \"delegator-address\": \"one1dhpv24q2h6kenwkr68mrwmzz3mp89df7h2yk29\",\n                        \"reward\": 54054533046286256974,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9654e+22,\n                        \"delegator-address\": \"one18pgn409ajle8wkgvfukqmuvmvfah29g3tyv9tl\",\n                        \"reward\": 49321491317499052698,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5678e+22,\n                        \"delegator-address\": \"one1jvc8zyx5szxnfjgxyfgzx52qee3jke3a3juywv\",\n                        \"reward\": 59339544987504022451,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3094e+22,\n                        \"delegator-address\": \"one1hnzhrh7udq33w7zr04x20w9ka4lhmkd3kfg93y\",\n                        \"reward\": 38415979515771743073,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2874e+22,\n                        \"delegator-address\": \"one1xazs55rqgtgn3n4a6a0wmwdpr7dvt2r8c66q5r\",\n                        \"reward\": 38048808337497391438,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7654e+22,\n                        \"delegator-address\": \"one1tucwrd3fjkhc9t8dh4lkgd7rqsjds7tqpwskvm\",\n                        \"reward\": 62632659948210675400,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8645e+22,\n                        \"delegator-address\": \"one1s4t5j82vzjhdmx3mn556ytvj0ldqgvrfjkf5cc\",\n                        \"reward\": 64279700484388277709,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9745e+22,\n                        \"delegator-address\": \"one1u29jdhqqedpqe4asemlfahnjh8jg3cnyg6k5g8\",\n                        \"reward\": 66108671768190383339,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9745e+22,\n                        \"delegator-address\": \"one1dtscrxy5lgmqvfj9sd6zldkwhag25m2q3lm3pg\",\n                        \"reward\": 66106569922909794227,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9645e+22,\n                        \"delegator-address\": \"one1ygxefn06gqzdj9d0900nxmc09mf0hs24q7qqxe\",\n                        \"reward\": 65938845460384800108,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1967e+22,\n                        \"delegator-address\": \"one16v2ndsnd5tqa9zm4hpux8er8ggt2qgrcca4pfw\",\n                        \"reward\": 69276880284897794620,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tf6um60tpngwrvvdtwa4x88mynre36amjxm2yy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.69e+21,\n                        \"delegator-address\": \"one1rfjslpy648xltxuw272v8q5w4lthr9m8ncpgfr\",\n                        \"reward\": 19156635550424587391,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.055555e+23,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 12164287443990945082,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1u97te20xm0j4tj554gawe7yzpa5yhlh3086vsj\",\n                        \"reward\": 52065507359490056,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3538053775e+21,\n                        \"delegator-address\": \"one18zceqzg64tmdxwcwv9qp0nptl2u2yhtnjgnar0\",\n                        \"reward\": 13849332899850721915,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1a5j09n5v2l87u8j0l0c9vuj26zaqvsg5spxjdx\",\n                        \"reward\": 2129062240317528655,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WeAreONE family. Stake your ONE with us\",\n                \"identity\": \"WeAreONE\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"WeAreONE\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"WeAreONE\",\n                \"update-height\": 3364486,\n                \"website\": \"https://harmony.smartstake.io/val/72\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n                \"bls-public-keys\": [\n                    \"34bc81a9924b44618e5227bdd69cbb4d9354c4d0bab1ec8092ddb64ea479b9ed76ddc346abb9480b7feca8a76b418a0f\"\n                ],\n                \"creation-height\": 3364493,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"chip-monkey-on-telegram\",\n                \"identity\": \"SIMnode\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+23,\n                \"name\": \"SIMnode\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"chip\",\n                \"update-height\": 3364493,\n                \"website\": \"https://staking.harmony.one/validators/one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 202459,\n                    \"current-epoch-signing-percentage\": \"0.994093154343962055\",\n                    \"current-epoch-to-sign\": 203662\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"81338258100405499999999999.999999999999999998\",\n            \"lifetime\": {\n                \"apr\": \"0.117433009314050495\",\n                \"blocks\": {\n                    \"signed\": 27204135,\n                    \"to-sign\": 27780914\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121967923391558255\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122212500462157724\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.119390223439768196\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.119988081859215162\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.119362435331242906\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.123752153613978976\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121360562376267815\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119396540498240721\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116922263720833630\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116165018029543782\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.114991428818732529\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116573411994580495\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.117764369555132434\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.118641105112945493\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.118640257195730050\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117808281958047441\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119639258154419046\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120182408136660529\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120073135278927273\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.119572093933460104\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.118780672533867636\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120899136818173787\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117073279487681370\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117605497225882113\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.115821706805458183\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117845236917914346\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117154221500323676\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.116123861659954297\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117537327509397752\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.112961722761225770\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117433009314050495\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 229316,\n                            \"to-sign\": 230716\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 220288,\n                            \"to-sign\": 229920\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 228551,\n                            \"to-sign\": 230018\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 233045,\n                            \"to-sign\": 234498\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 227594,\n                            \"to-sign\": 230208\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 228188,\n                            \"to-sign\": 229862\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 232715,\n                            \"to-sign\": 237924\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 228393,\n                            \"to-sign\": 230020\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 228188,\n                            \"to-sign\": 229798\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229434,\n                            \"to-sign\": 230372\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 228194,\n                            \"to-sign\": 230604\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 230503,\n                            \"to-sign\": 232648\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229114,\n                            \"to-sign\": 231376\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 231807,\n                            \"to-sign\": 234404\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 243059,\n                            \"to-sign\": 245500\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 257029,\n                            \"to-sign\": 259298\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 231822,\n                            \"to-sign\": 233978\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229159,\n                            \"to-sign\": 231454\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 227185,\n                            \"to-sign\": 231870\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 247680,\n                            \"to-sign\": 249586\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 228884,\n                            \"to-sign\": 230694\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 228485,\n                            \"to-sign\": 231036\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229449,\n                            \"to-sign\": 231284\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 238422,\n                            \"to-sign\": 240220\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 242731,\n                            \"to-sign\": 247172\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 236009,\n                            \"to-sign\": 237618\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 245844,\n                            \"to-sign\": 248432\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 238928,\n                            \"to-sign\": 249812\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 240207,\n                            \"to-sign\": 250470\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 269633,\n                            \"to-sign\": 270496\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 3.964664645198635295473382e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.550589559195262811482e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"887dd858614da4b6f81b3f5039334be0fc7efba7cd2ec3f9f2cc070df734b09b4889092bb0097beafafa581361bbb88d\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006067978377263998\",\n                            \"overall-percent\": \"0.001941753080724479\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.549501546020879540335e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f8229098ef64c6412a05623bc9bbe1a8d5788d992f411378add8201da818b0339b642c06b83494cd804fcafb1d365315\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006067978377263998\",\n                            \"overall-percent\": \"0.001941753080724479\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.550256936981087644063e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a19ebc874d122fcdd3e809f5e2d08317f96093d96ff401e7a7648641e8ea290539095b8963f67792e01766dc0c82c995\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006067978377263998\",\n                            \"overall-percent\": \"0.001941753080724479\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.55072838165375483699e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3aa1b10f749b926ce116ed55fe87e948a45b748b7450427973f936444f504ce3bb69f74cbb1eb5507bb2949adcac1405\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006067978377263998\",\n                            \"overall-percent\": \"0.001941753080724479\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.530805342201043900177e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"75b30e36db669855515207d26c85032b8124e602e230f61af1f83d359652ed2c75fb644ffd5c03414207ef54208acc96\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006049160130843564\",\n                            \"overall-percent\": \"0.001935731241869940\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.532248035639849442856e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d26aba7946b7c6233139c9a3eb59b76f690ae17100b588b7fcf1797b5d6a56194a45d7e1da8452c80b71d454bb7fc906\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006049160130843564\",\n                            \"overall-percent\": \"0.001935731241869940\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.532866172403748931732e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"07f91bb48ee0ea1176a9b81ac05172e283bd2123d31f7e0217da201d6e928b2ebdb0be246dae53ebe4455205b169068a\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006049160130843564\",\n                            \"overall-percent\": \"0.001935731241869940\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.530568393177870195151e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"663d4bc56f2755ca00c8dc7a7802d5913a1b9642b87a34f986e6cd56963c590dbdb4c2fcb1fa0acdc3f0b3f399b04486\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006049160130843564\",\n                            \"overall-percent\": \"0.001935731241869940\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592219241947449651959e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0a62f4f4e25aad7ac77845b5e5242570637d7918768ffc20b69629e918c1bb154c78c196c563b419dcc8070db187190b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.587903472477206359568e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c87565824a5046abebf7a4f608d1456a75623177e89d6537de8148c6c4d5793d00f234cafc7ffc9a5ba666f7825e0883\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.587160160593735202743e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a12729cb8a958ec2ee376f223b47f04bfe7b002e180a4aecddbdb2023ca3b59ba3bcae1c58fbdab18cf45dae3c1a5697\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.589971754974850168433e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"87724e5c55dc0b0494657d46ce42f934863481aeccb2ee5dff9216b37a0bdf4e92532e20c6b6559f77a4f62a5c4a9797\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.588228105104664347151e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8a38e74bc302f0cd1a200c2f6edc2184c3af577a6f07456f19af063940994d803012da53a399fc15279682e743bf520b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.593642400879572866834e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"43ba875e76d9cc1b40fae255865f426de64a7ece1b4caaa9954747c3c766894de034f372e825cb09313a9ba588b6d68b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.13382581004055e+25,\n            \"validator\": {\n                \"address\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                \"bls-public-keys\": [\n                    \"663d4bc56f2755ca00c8dc7a7802d5913a1b9642b87a34f986e6cd56963c590dbdb4c2fcb1fa0acdc3f0b3f399b04486\",\n                    \"07f91bb48ee0ea1176a9b81ac05172e283bd2123d31f7e0217da201d6e928b2ebdb0be246dae53ebe4455205b169068a\",\n                    \"75b30e36db669855515207d26c85032b8124e602e230f61af1f83d359652ed2c75fb644ffd5c03414207ef54208acc96\",\n                    \"d26aba7946b7c6233139c9a3eb59b76f690ae17100b588b7fcf1797b5d6a56194a45d7e1da8452c80b71d454bb7fc906\",\n                    \"0a62f4f4e25aad7ac77845b5e5242570637d7918768ffc20b69629e918c1bb154c78c196c563b419dcc8070db187190b\",\n                    \"8a38e74bc302f0cd1a200c2f6edc2184c3af577a6f07456f19af063940994d803012da53a399fc15279682e743bf520b\",\n                    \"43ba875e76d9cc1b40fae255865f426de64a7ece1b4caaa9954747c3c766894de034f372e825cb09313a9ba588b6d68b\",\n                    \"c87565824a5046abebf7a4f608d1456a75623177e89d6537de8148c6c4d5793d00f234cafc7ffc9a5ba666f7825e0883\",\n                    \"887dd858614da4b6f81b3f5039334be0fc7efba7cd2ec3f9f2cc070df734b09b4889092bb0097beafafa581361bbb88d\",\n                    \"a19ebc874d122fcdd3e809f5e2d08317f96093d96ff401e7a7648641e8ea290539095b8963f67792e01766dc0c82c995\",\n                    \"3aa1b10f749b926ce116ed55fe87e948a45b748b7450427973f936444f504ce3bb69f74cbb1eb5507bb2949adcac1405\",\n                    \"f8229098ef64c6412a05623bc9bbe1a8d5788d992f411378add8201da818b0339b642c06b83494cd804fcafb1d365315\",\n                    \"87724e5c55dc0b0494657d46ce42f934863481aeccb2ee5dff9216b37a0bdf4e92532e20c6b6559f77a4f62a5c4a9797\",\n                    \"a12729cb8a958ec2ee376f223b47f04bfe7b002e180a4aecddbdb2023ca3b59ba3bcae1c58fbdab18cf45dae3c1a5697\"\n                ],\n                \"creation-height\": 3364622,\n                \"delegations\": [\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                        \"reward\": 2.1084174633310712090517e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cewcy70uhevgpq0hcgvx4mcy3cpehl39qj0nej\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1yjdswahfmscu08e2cd2s0xq0vmvvh4z4ry4kkw\",\n                        \"reward\": 56942400736016486053,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1aqwsvn5jjy8xuj65aw83dvrl9ys5eds9afvvhk\",\n                        \"reward\": 73868349000612902594,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 4646823407431396209,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 5.55474116731576657414374e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yy96kgumhfw6tjwdkxtspju4qf0sc9ay4tf50s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+21,\n                        \"delegator-address\": \"one1mnle2dce6p9jj6vzuma8kz2cv5zmdcxl5dtlph\",\n                        \"reward\": 24353272049238393533,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16295hjtqyr0z22swaqthv7mvmvn2gltnj5gera\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+21,\n                        \"delegator-address\": \"one15gy23g6x8rlnhyzf76e7kzz6ue7a7ejx62t3uf\",\n                        \"reward\": 24353272049238393533,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1knvmmmcgv96zmwj7r9ps8uakwxunuk8deyjy8w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8430971398e+22,\n                        \"delegator-address\": \"one1f0h3c2zf2twsryd2fcv22kzmqu4dpnaye39mxf\",\n                        \"reward\": 246827359326884189954,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tvyc82shy2twq6lcu9l6rkp335revqj80f2has\",\n                        \"reward\": 13578896312254901209,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 500000000000,\n                        \"delegator-address\": \"one163kgcjkd8k68d272lgprfhz83e24xncczw22xk\",\n                        \"reward\": 219926233985070585,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 1237174430788126501,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1a05xxp5eq5e83xu6teuvczcx62cutrt970wq5t\",\n                        \"reward\": 61450724058378806488,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.173229485e+21,\n                        \"delegator-address\": \"one18yv5m65wa7wrknfmh2jsh3pcst2z0h3698vu3k\",\n                        \"reward\": 24943717478521545190,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.276053899522e+24,\n                        \"delegator-address\": \"one1fta8pe7j5xntgff4msjlge3amkuh0jpqzq9whg\",\n                        \"reward\": 95666919476246503166,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Validator run by HarmonyNews.one. Now with 100% uptime on 3 instances with backups and 2FA protection. Rest easy knowing you are earning. HarmonyNews.one champions this project any way we can. Support community media and decentralization by delegating with us. Go Harmony!\",\n                \"identity\": \"Community\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HarmonyNews.one ☝️\",\n                \"rate\": \"0.119500000000000000\",\n                \"security-contact\": \"contact\",\n                \"update-height\": 4780214,\n                \"website\": \"HarmonyNews.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 101483,\n                    \"current-epoch-signing-percentage\": \"0.999970439272411958\",\n                    \"current-epoch-to-sign\": 101486\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"37272905135686576179699999.999999999999999995\",\n            \"lifetime\": {\n                \"apr\": \"0.120182810025854738\",\n                \"blocks\": {\n                    \"signed\": 9235311,\n                    \"to-sign\": 9277875\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122745888993146905\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121604849429157386\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123731433598531499\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.133859690605595157\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.134279268028569346\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.138459378657896296\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122995044138851713\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117456478578868000\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121797863824954432\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118821886938611548\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.126038534876312628\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114659200993894145\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121109603086226514\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.122546395039878201\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.124413950626102722\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.114297184859785596\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118543194685221983\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120234271040060948\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.123054402579125356\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121903555524760492\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.124106803064695808\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121335010061717463\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.123051643185684799\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122692580487744416\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.119148755724404645\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121854514881765729\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.121275151736078184\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.121068542232689455\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122525832911706228\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120969614149164638\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120182810025854738\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 114687,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114681,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114685,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114675,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114680,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114679,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114677,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114683,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114685,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114687,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114676,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114579,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114600,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114640,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114651,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114642,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114633,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114645,\n                            \"to-sign\": 114688\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 114655,\n                            \"to-sign\": 114694\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163799,\n                            \"to-sign\": 163840\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163833,\n                            \"to-sign\": 163840\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163828,\n                            \"to-sign\": 163840\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163834,\n                            \"to-sign\": 163840\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163824,\n                            \"to-sign\": 163840\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163800,\n                            \"to-sign\": 163840\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163785,\n                            \"to-sign\": 163853\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 181492,\n                            \"to-sign\": 181574\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163834,\n                            \"to-sign\": 163838\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147451,\n                            \"to-sign\": 147454\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 131066,\n                            \"to-sign\": 131066\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.101002671313149235687123e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.454735126957493289028e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"742e7f9c7981dfd9040dec06014c8f0dbbb1f117871ed97b0dd5f497e264aaedf9673c835062e26793ff4c0438978e94\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"group-percent\": \"0.005862048341212300\",\n                            \"overall-percent\": \"0.001875855469187936\",\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.454735126957493289028e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bb9ebc1cc84331ddfcd16aee4fc361de910b7a30a931b9c10a14d069ea308e85717595e915a8536ca78931c88f1a2b98\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"group-percent\": \"0.005862048341212300\",\n                            \"overall-percent\": \"0.001875855469187936\",\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.454735126957493289028e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"440bb29c6c3669419befd3de2b53c69fb51ae916b9b023384b557ac5163ae8edbceb0b73e79be904ded2de879f609d80\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"group-percent\": \"0.005862048341212300\",\n                            \"overall-percent\": \"0.001875855469187936\",\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.454735126957493289028e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e14c69d87d586a3285de3c9c7c345580049d2652080210878cce1535076183fd454ae2a3e85461a513db6b7c1d471c04\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"group-percent\": \"0.005862048341212300\",\n                            \"overall-percent\": \"0.001875855469187936\",\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.454735126957493289028e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a1db364436316e10329d311c3bb538a2ac676da43c222e6c16dc147375b34be00000c0872745b2cb33d11c58ca478c10\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"group-percent\": \"0.005862048341212300\",\n                            \"overall-percent\": \"0.001875855469187936\",\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.454735126957493289028e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4eeec0a689bcef30dc3916f20400d94ade5fd5cb10abf5a866301d430cad912e26e3621edad95cec194fb43bbea4d610\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"group-percent\": \"0.005862048341212300\",\n                            \"overall-percent\": \"0.001875855469187936\",\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.454735126957493289028e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c84875782fd5dd9bc92a57b7d516992e2c3a6408b3f6dc8c3f5c188ab7dd1878007f18b748cb51894b38ba13f3404090\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"group-percent\": \"0.005862048341212300\",\n                            \"overall-percent\": \"0.001875855469187936\",\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 3.83032183856865761797e+25,\n            \"validator\": {\n                \"address\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                \"bls-public-keys\": [\n                    \"bb9ebc1cc84331ddfcd16aee4fc361de910b7a30a931b9c10a14d069ea308e85717595e915a8536ca78931c88f1a2b98\",\n                    \"4eeec0a689bcef30dc3916f20400d94ade5fd5cb10abf5a866301d430cad912e26e3621edad95cec194fb43bbea4d610\",\n                    \"742e7f9c7981dfd9040dec06014c8f0dbbb1f117871ed97b0dd5f497e264aaedf9673c835062e26793ff4c0438978e94\",\n                    \"c84875782fd5dd9bc92a57b7d516992e2c3a6408b3f6dc8c3f5c188ab7dd1878007f18b748cb51894b38ba13f3404090\",\n                    \"a1db364436316e10329d311c3bb538a2ac676da43c222e6c16dc147375b34be00000c0872745b2cb33d11c58ca478c10\",\n                    \"e14c69d87d586a3285de3c9c7c345580049d2652080210878cce1535076183fd454ae2a3e85461a513db6b7c1d471c04\",\n                    \"440bb29c6c3669419befd3de2b53c69fb51ae916b9b023384b557ac5163ae8edbceb0b73e79be904ded2de879f609d80\"\n                ],\n                \"creation-height\": 3364840,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                        \"reward\": 1.4560476338430727136756e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13a8dddzhr9zmtnqw4mk8500ec72fyh8hfawhv2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.922e+21,\n                        \"delegator-address\": \"one1kung63grzslftjsumaa0kayt5ae43p4x2puvhj\",\n                        \"reward\": 29351138626416600328,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19cuygr776f7j9ep97hjm0np9ay6nus9w5msy0n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hch48y73sra2g0fr8waaglgv2gmr3634s7dh7y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13fnskkve55zhqr3nwrmxp2f8yxyjxagpwhf7xh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.9396e+23,\n                        \"delegator-address\": \"one1350xc25urlz3hzej95j2yne2n8uakkctjj28yr\",\n                        \"reward\": 1.601560827620584284193e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xay355zulgluakc7hmyhayme77sunh64sjglwa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m8364hzzjdxa77zcydy2wqkwnz24dks5k40jds\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sd69jq8flfklpfvr2pwdd59tcangfqy5zky0nn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 133333000000,\n                        \"delegator-address\": \"one1jx7wusrrnj2djdf4dus5cq07yw3fe2077j2l67\",\n                        \"reward\": 1081516522,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 1.4690008965633342530323e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ut0r2v94czzncsgaw9zzlplyx33ztew4tyv5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 284352533551537444143,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.04965e+23,\n                        \"delegator-address\": \"one1km7cvmy6da8l7cj22htqtm9phs85auajepe8kv\",\n                        \"reward\": 290253337867590972064,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12vq79k6nwv475khc7mmp83786wrlgslj0zllgs\",\n                        \"reward\": 81254967089827606951,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ekqjas85d6d9axn9mapgr3dr9c5kc503qcsdkd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7364327603333333e+22,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 9538832196585905172,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.6940756015e+22,\n                        \"delegator-address\": \"one12frku6ue384mze6x3hcmyqc8w5f6xetlgec7qz\",\n                        \"reward\": 7961245257477292871,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.024e+21,\n                        \"delegator-address\": \"one1nj0sa5q08qyjz2jwnkw460k2s9lttntqdk5x58\",\n                        \"reward\": 4260923541609713610,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dxea4w0pa7v9m2ax08frgpmh5x4va5gupqcd4l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 22902029806316460481,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7925e+22,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 163676041873762831566,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.99999995e+22,\n                        \"delegator-address\": \"one16cs7wrpk38rzrrajm2cvnxgsua2gees5lhzz27\",\n                        \"reward\": 1.604333900971692556823e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00009e+22,\n                        \"delegator-address\": \"one1ptals0gsldvgshff7q873xjua8jfltfnuxcejj\",\n                        \"reward\": 9444307553602656521,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1588j47yhfdn89pm56g0r0scj487hu8ggvgv3da\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0033e+22,\n                        \"delegator-address\": \"one1084sfh0nyrzgkgce0jly93h5g8tw4ryxxj2gvc\",\n                        \"reward\": 100285499832018557513,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 38417368028613889875,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.2710181975e+22,\n                        \"delegator-address\": \"one15577y74ukma69edtjcew2t0hd979cxv0vjslzm\",\n                        \"reward\": 31896693711694864260,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.36114e+22,\n                        \"delegator-address\": \"one1mcpjxwtn335yvfjlqsng9tm0pk8770p8zr76py\",\n                        \"reward\": 717273312697933107763,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16lrjwy2y0025ydsmwc0a92jdvwpmq20rjkpny9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0393e+24,\n                        \"delegator-address\": \"one1fql5kv8nrenxcnx3cfdyjegvvs2knpwz3a37sd\",\n                        \"reward\": 3.1858748057333773539334e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.327829e+24,\n                        \"delegator-address\": \"one139ah94e2sra36mgyz5q5d4v6g5f3zsj5yh92qa\",\n                        \"reward\": 2.643408772714412396341e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g4k8j5a0d032duwk4ns9qcv0lgrtr8370t2s7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.002e+21,\n                        \"delegator-address\": \"one1v9yk732v6e3reamu33zgt57thpg753vyazuj2e\",\n                        \"reward\": 17002619929266672546,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.104e+22,\n                        \"delegator-address\": \"one1n4r89yzg9c94scmfv9r86xput99ghjam9fvnsr\",\n                        \"reward\": 283524753352860434020,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lees0cc4dxv9xdr7qv3mm4gwfrdjacfxzxm244\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grpk6706ct68pwcqr3vjw60xcuwjkerau7d9ww\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fl3ua65mgtpy6l95f6wlghavm6548gucxffh22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12kvy5medu2rj4qt3ltmjj0lyndrhm87eq2lkcf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xgul4a4keudecfvf3gq2l7w3x0xjs23hjcmgry\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one183ecdj4g2lam3e0xyfexxyv9c2p6q30clpxl07\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14rvqdjt38rhpufm5uxxzrr2aqap8qhzvkc7qsa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yk6ntuxxpmxxauk42qkrglfar4e7eekv0t0tgr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17z53h6m843kn3vqayktwvy4yvaj8wqc6fpthh3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vegzurdx7vgpw4te5jwdvyvx4qsgdy3htk4ncv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mv7g0rj2dqfnw9jgqqxa8aqea9g8dw4kay77gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one177qf9g53mmdtrx4x46nmy0dvax7u9fy0qqw8yp\",\n                        \"reward\": 3561590544760232232,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wdcnlus7yw06l8dxv5jw3pz3mjvsv45pdpnu55\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eufv5zm8vp0jm5frdcahn3r0sfu8kzlrzpjyqg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f2ctrtwl3cwz50recdg52lalk7elnseaf8p2n5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.97e+22,\n                        \"delegator-address\": \"one1hgseh96cat9qe4gt0mn37k7mgjdhnep9m4zayu\",\n                        \"reward\": 95310521345874893787,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.458e+21,\n                        \"delegator-address\": \"one1dztpmj96q2f7rmu8gl8hne8k2z84s8tjmmcj4q\",\n                        \"reward\": 113173308824677155094,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q2v8nqnk8gflhscwl7mz2pfmwljk440dd7wjan\",\n                        \"reward\": 18849026947790282993,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.80795522952e+23,\n                        \"delegator-address\": \"one1npjcsmeuuxu0zp3mt00ja5puy60swjj40657va\",\n                        \"reward\": 46231658568993671289,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16jahlu6ejrtjtc8lsqkjwstg56dw64k9a0ft4e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.493e+22,\n                        \"delegator-address\": \"one14edl47lnhr2gnehv5hgpuyrrhy6dr29djylkcc\",\n                        \"reward\": 219683754689943846735,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1llxf209y0f8sqnud993m94udvewpje25e2tjq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j27vqe08swhr7wrdlu9v2dv4rn0sdthfa2fjwt\",\n                        \"reward\": 2327922436357357976,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gzk6r9zljse9kcctxzugk7p24hql2rvp5k03f3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.297e+21,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 15013488553307830922,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one19kcgd97z9adkeq7a4mpvt2ud6adtr3ynfmlmfa\",\n                        \"reward\": 5876829762129325890,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.000116993e+21,\n                        \"delegator-address\": \"one1adyd3udxj05yutue6c2x4gk6m76hgn843as87r\",\n                        \"reward\": 21456175855907106672,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.9263e+22,\n                        \"delegator-address\": \"one12w5e84ulqjgz23vjufhmpsrhaamccsjw97zend\",\n                        \"reward\": 12576548615296544037,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.14e+22,\n                        \"delegator-address\": \"one1ln66zgvc2krv9v7hqauws45ktnal6jmws2c0fa\",\n                        \"reward\": 9426931344111168579,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vvzs26vyafzgh0603j5vv4a2f8j4wutq7tade9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pe9q4myhu7ydcwx55xzhc3ttfrrg69dyty90nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mj3y90738fejzp2xcag5wkha4amqz6vym3w6f7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 192254663633511590,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.15e+23,\n                        \"delegator-address\": \"one1rpfvk200f2jl4a53nmu7qfqjg5m6vfaj493ypx\",\n                        \"reward\": 1.0147492796393243971025e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6186716666666667e+21,\n                        \"delegator-address\": \"one1pzj6mqp82kyjaanep3c28km67mwvdks6jvldrj\",\n                        \"reward\": 6407247217867231194,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.63433e+23,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 139286393038354335679,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wjrlr8asttn09za4lcq07zs4yf0920xr0amfpw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10gknxpjn5feq04jan9nkup6wd0jg4tra08dtef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hf0kue5sl8kn5yvdqwajvjfxjd7llppkr8njcn\",\n                        \"reward\": 703055943695404065725,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cm7g89x5j0y7f0mges28qtsen92wqr0vqurl5l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.5554e+22,\n                        \"delegator-address\": \"one1luqxaz8zz2ec3cneqnjdlznfg880zhp2hzgqx7\",\n                        \"reward\": 1.22313843062103847181e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w8m5dt0tys3ep2upxcavcmewrux64nl39rz5sm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one10fdf7yf25krval0px6tckml32g2ur05kqs3eye\",\n                        \"reward\": 12488096714941494520,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1lp2qr8pu63t5yx4dxvwfle4ks7l8mqn5r4g3ls\",\n                        \"reward\": 190402800031207419036,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kmc8tch430wh39anme4eskwhwfkjlrcqmz5gel\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.4575e+22,\n                        \"delegator-address\": \"one1k9nvefx0znyg4jrpvcj6mzphecxqmqa398d5nc\",\n                        \"reward\": 73106695333116330230,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.084e+22,\n                        \"delegator-address\": \"one1uvs7fsfaear8gxfczgvn69yrxm4ffclxqde8g8\",\n                        \"reward\": 121655019640459195709,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1889hh7sdy4myne4gr7ys5v3ms4anz9az6nzew6\",\n                        \"reward\": 2.168061587963311208637e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1dehtnvz7yf6v8d9jj972ytdfd5xg3um9wm2rl9\",\n                        \"reward\": 1.519802425273981019159e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 110039666995951831076,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12v440thmnyjmfvmk483m3khwa9ffmp5fzt47fq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 44387148952149593633,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1e+22,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.5e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 109268718190519437686,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one16vqd7y7hset6spy7qf2jt4gka3d9d8wyrhfues\",\n                        \"reward\": 272649311411497840468,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one16kld4j2r6atw7lues7tj36qdd9rd2cumhp4tkq\",\n                        \"reward\": 1638375809697528164,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1ex9a46773wtsj455lsjykdmn8al6uqalgnlhmz\",\n                        \"reward\": 4.544155190191629152702e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.80769e+24,\n                        \"delegator-address\": \"one1tvxurnzczfwq97jethcn5vjqye7ckpvv83cmnl\",\n                        \"reward\": 1.1343026914027873522865e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1ztuftx554sf84a5gvpzap7dcaa72srjy4wzws0\",\n                        \"reward\": 1397600908350381,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8780170831078e+24,\n                        \"delegator-address\": \"one1apuealayrtv3xa002m3yr7hwwca8cuny2jg6wy\",\n                        \"reward\": 169405970729316661988,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1ka4shjasftw2hm6et2m46zeppce2gw5z9dxkg9\",\n                        \"reward\": 416608502961245532578,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u0pezjgzxxemesagrztml62dkmr5vkfy3edhd7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 374126894644033369186,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 999990000000,\n                        \"delegator-address\": \"one15fy3rp6rnfx5em94jsy7se9jmhl6xrczpdtpyd\",\n                        \"reward\": 2778859289,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.55988666666e+23,\n                                \"epoch\": 314\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.029063208535e+23,\n                        \"delegator-address\": \"one14zmfx50m5ecjugrqnqd2362kygmwxgu3r6my40\",\n                        \"reward\": 13541040765737342249,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.1425e+22,\n                        \"delegator-address\": \"one14xl659xzvhwn7yj0s9pfjulm8l226zvdzcq8hm\",\n                        \"reward\": 211053917807798405177,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qh6s6258xn27pstyxul6cg9nzq33l77dn3tx4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.30091e+23,\n                        \"delegator-address\": \"one1sdcv5w7rvwdnf5cqxve48sdggcsrrgmcy2yydk\",\n                        \"reward\": 70616671607792424718,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 21714338727111745184,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.04516862909e+23,\n                        \"delegator-address\": \"one1twzqd42taqua2r7auwsxzwcrucfwp9uu58tq35\",\n                        \"reward\": 698725425771202435963,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 48221970865786342708,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.049e+21,\n                        \"delegator-address\": \"one1j8mzv4nu9rd32fyx6wt2qujcql384xn52u33tt\",\n                        \"reward\": 5563602445736478436,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 142857000000,\n                        \"delegator-address\": \"one1nmh2hevu7k6st8slncyt3wjvw4smxaan7ja4pc\",\n                        \"reward\": 324047870,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05687e+23,\n                        \"delegator-address\": \"one1k58pe8q8wwvvetkaenk8a6dpr47t94rszl2p59\",\n                        \"reward\": 376586172287715604637,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one17m9vyy3rcm8cqqxutw55vg9cmz60j8ke68edrf\",\n                        \"reward\": 35949250364843699630,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05877325e+24,\n                        \"delegator-address\": \"one1mgesvhk7yhyc65mr9yardtsmgkyafxn8myfy3l\",\n                        \"reward\": 179746251824219645895,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1zfu2gqn6serwp8swaa0j0yss6qun06mmlsl3uk\",\n                        \"reward\": 16433608361082622288,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1dk3u4rctk9fllz9p2z0ue0k79c23vhf4ahhs64\",\n                        \"reward\": 2255882798141562668,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one1dh2f694yfw2tpe3zqsvkgaj0ykeustw93gdyq0\",\n                        \"reward\": 19028410274168183661,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8e+22,\n                        \"delegator-address\": \"one13t5t6ux85rlmchyqq9sw6ktvgxvwmmpzxfqf9v\",\n                        \"reward\": 46907422608389615280,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+22,\n                        \"delegator-address\": \"one1v4v4grnxa4m0l9wl4pnhg2dyaarmcwj47s49cz\",\n                        \"reward\": 214069615584391871944,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.126e+21,\n                        \"delegator-address\": \"one1z5wq66xu2nr6zvydxj6mkztnfxasxfgy3yly9e\",\n                        \"reward\": 2334752048198147906,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1522ur28jke9njewuf0aw8j32v028wr9n8qd64e\",\n                        \"reward\": 57409859527652389,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.06e+21,\n                                \"epoch\": 321\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 3.32112506e+21,\n                        \"delegator-address\": \"one1s9nvnugmrtpeu4jp8er6jv5s95605jkkhtajae\",\n                        \"reward\": 5885964811353179407,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.012602881e+21,\n                        \"delegator-address\": \"one19mgrah864dfrr2ydukjmz0r5ls554rcmjq54c2\",\n                        \"reward\": 4434305622618555976,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.736e+21,\n                        \"delegator-address\": \"one12v7lp2qa3y4u7cszumk9p0v4q8zwdclyjv9n3p\",\n                        \"reward\": 3386434989942176950,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.037264169e+21,\n                        \"delegator-address\": \"one1jxktghsf3yx05mrlya7mch7l0n3u24rf430v2n\",\n                        \"reward\": 895453394983708269,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4e+22,\n                        \"delegator-address\": \"one1epcj5u9nqmsl08hzygrvma0ccd8fkp2ly83gxn\",\n                        \"reward\": 46617327363899973524,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6638e+22,\n                        \"delegator-address\": \"one1tj7snelqf8y3mp8mjlw88tchs9c8flwr362ks5\",\n                        \"reward\": 22996154931843844777,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one193rjfmhvf9yyynu44e82txjzwthz0jfemnszd9\",\n                        \"reward\": 56412217177939167433,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8e+21,\n                        \"delegator-address\": \"one1uzk9kwzf2ndhh05mk6205yqy8k9sdf88ewew6x\",\n                        \"reward\": 835190969791062951,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+21,\n                        \"delegator-address\": \"one1attf8aszp7na0j3mgac38sdecma5ml5yky056w\",\n                        \"reward\": 1303026134933684328,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one179msjf4nprp6wg75assrtd5rafmf0rq3hhervz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"I'm Catana and I'm ONE of Harmony longest running validators. I was there in the day ONE of the mainnet... I was there in the day ONE of the open staking... I will be always here!\",\n                \"identity\": \"@Uaericc\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SoftNode\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Catana\",\n                \"update-height\": 5243671,\n                \"website\": \"onevalidator.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1w63l464zvpr8r2j3778gluzqyaqte47ylmvse9\",\n                \"bls-public-keys\": [\n                    \"0069bbea7ca14d4ba22fc0fb06a447c0e6c10fb469a9bfc05d05c83b0a71b116f0695a3541c4068eabb574c0d8204197\"\n                ],\n                \"creation-height\": 3365119,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w63l464zvpr8r2j3778gluzqyaqte47ylmvse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1khk3l6vwtghj73an76xnanmdrnqej8uwvmjxrz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"\",\n                \"identity\": \"Tea\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Tea\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Tea\",\n                \"update-height\": 3365119,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+21,\n            \"validator\": {\n                \"address\": \"one1grry5e0s8qxpdgcrrqssqd6rlga3nnmclzn0d6\",\n                \"bls-public-keys\": [\n                    \"f0fe0ac7b97d3dbffab4590863a8aada86b7e1189d115b37e3fbde4fa69df15f4bbd271725d30700f3fe750d9226108a\"\n                ],\n                \"creation-height\": 3365120,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grry5e0s8qxpdgcrrqssqd6rlga3nnmclzn0d6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"I won't love you back.\",\n                \"identity\": \"a duck\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.800000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Scrooge McDuck\",\n                \"rate\": \"0.200000000000000000\",\n                \"security-contact\": \"@the_talking_duck\",\n                \"update-height\": 3365120,\n                \"website\": \"null\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one10qn232e3r5ertg2s7797uceq9jfxeuz8guazx0\",\n                \"bls-public-keys\": [\n                    \"0c2c7cf6f23d0afcc81b07b96ec97750794a477f13606b99543558c7615d054209c518d6d2c3542db37c9bacd00d4704\"\n                ],\n                \"creation-height\": 3365239,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10qn232e3r5ertg2s7797uceq9jfxeuz8guazx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n9at5vm0wwkh2zj6ldtgp5aqe0tsnx7ymnglp6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"***It was time to make money! Delegate to us for a easy staking experience***\",\n                \"identity\": \"OSP\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.020000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"OSP-Ukraine\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3365239,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1gawz79t5m2rkucndc9uag9zkn937jjevy84uvn\",\n                \"bls-public-keys\": [\n                    \"fd3d3c28c0f4ae92161ca35b6f3a9820cf55db8a6feedd90164d07a280ed1454599be3e4e23db10925e46fe753975c8c\"\n                ],\n                \"creation-height\": 3365376,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gawz79t5m2rkucndc9uag9zkn937jjevy84uvn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18txx6kdter6vn7h8400tcjz3kzsr5753k8rqrm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"We are a group of blockchain engineers with experience on EOSIO. Let’s Harmonize.\",\n                \"identity\": \"ATX Harmony\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 2e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"ValidATXer\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"validatxer@tokentheory.io\",\n                \"update-height\": 3365376,\n                \"website\": \"https://www.tokentheory.io\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1wf8dzkk2f53hpkgd2vc3t8k5ydw8e6qf7j6043\",\n                \"bls-public-keys\": [\n                    \"a5da1cebf89e7495b9585353eac2111817f5ebc1c71c96f203e3524c318e98bf34156cfe909acc21122b66a91828d197\",\n                    \"c549b31d2cb5a7ad3fb9c563d11e0d24633c4ad0a8487b04002ab64311d87b89e0f1cbab19b3b74daf4a6969501e2a8f\",\n                    \"883bd6ad80888478b92591a607e291826fbce567160ff36584566d460c13fdf9c49707804574599921b1d5a2264e7985\"\n                ],\n                \"creation-height\": 3365645,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wf8dzkk2f53hpkgd2vc3t8k5ydw8e6qf7j6043\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \" Low fees \",\n                \"identity\": \"Mark999\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"MarcoG. low fees\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"Mark999\",\n                \"update-height\": 3423580,\n                \"website\": \" \"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1k8w926t84ymzukfv5lye3jsxsjxanlp5erx5mw\",\n                \"bls-public-keys\": [\n                    \"225c11a1dcf7c77cc5e25934e28e50ac4acedda752cc8335d55745696ff2a8d7d5cf54f18dfd377a4e966473d7100c84\"\n                ],\n                \"creation-height\": 3366195,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k8w926t84ymzukfv5lye3jsxsjxanlp5erx5mw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Validator Node #5\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1.734637e+24,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Binance\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3368416,\n                \"website\": \"binance.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                \"bls-public-keys\": [\n                    \"1b2e211b1de64c5421c2389f98a6af6459033815d5825ffb0df99c94fa96d20f115a7426a0b014507596c22e84ef7d00\"\n                ],\n                \"creation-height\": 3366309,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one177ty3kcr9y6p4wuh6uqklx6vw3ydplnu5xmx8s\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"VALIDATOR MOVED. SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3366309,\n                \"website\": \"https://staking.harmony.one/validators/one177ty3kcr9y6p4wuh6uqklx6vw3ydplnu5xmx8s\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+21,\n            \"validator\": {\n                \"address\": \"one15u9e82r46acp9v9z66qypulpcck43ptttfej0f\",\n                \"bls-public-keys\": [\n                    \"6db9f5fd834f4eeac30af0db0942934256b2b8ed4f08cb30feb0b17d87e3606ebf8726e9f756193cb0766210a0e19210\"\n                ],\n                \"creation-height\": 3366357,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15u9e82r46acp9v9z66qypulpcck43ptttfej0f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs and https://staking.harmony.one/validators/one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.990000000000000000\",\n                \"max-rate\": \"0.990000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3366357,\n                \"website\": \"https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1ey87xtfdydd2kqm47zm7f094f3sqar9ltej2rl\",\n                \"bls-public-keys\": [\n                    \"166450d25e7429e732ecc755308e8615d19aa27ee497483c20b2f5f1f993c973b8d450bd56a430aa339189fdf247de0c\"\n                ],\n                \"creation-height\": 3366385,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ey87xtfdydd2kqm47zm7f094f3sqar9ltej2rl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs and https://staking.harmony.one/validators/one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.950000000000000000\",\n                \"max-rate\": \"0.950000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3374716,\n                \"website\": \"https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one146wfttjmdw9k8vptkahh444vjft8szvtn09pks\",\n                \"bls-public-keys\": [\n                    \"3070dd1062e3aa2e57740094f6dc8a06e39b31a0eab615dded2969c4bef42683f8763d77a1191b660d0de346cd5e9c98\"\n                ],\n                \"creation-height\": 3366459,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146wfttjmdw9k8vptkahh444vjft8szvtn09pks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs and https://staking.harmony.one/validators/one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.900000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3366459,\n                \"website\": \"https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.0001e+22,\n            \"validator\": {\n                \"address\": \"one19zt89ps0mgeuvkslkduplt8hysk93c73svft67\",\n                \"bls-public-keys\": [\n                    \"3494f33907a9b015f1ef244336ff5fc38b679ef86c0e05c55228c73d4bbf5a207a49b695bacef447cf4b1e8516eb4a80\"\n                ],\n                \"creation-height\": 3366483,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0001e+22,\n                        \"delegator-address\": \"one19zt89ps0mgeuvkslkduplt8hysk93c73svft67\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"TBD\",\n                \"identity\": \"Architect\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Matrix4\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"TBD\",\n                \"update-height\": 3366483,\n                \"website\": \"TBD\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one17sesxr0jq6srusgm7wyu7zutdpl6n32k4kfaey\",\n                \"bls-public-keys\": [\n                    \"98802ce3374da03a865fbad322a2506320bc67ef23bf736054687336825847365e6df114bfa5e0d468114a3db539aa98\"\n                ],\n                \"creation-height\": 3366495,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17sesxr0jq6srusgm7wyu7zutdpl6n32k4kfaey\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs and https://staking.harmony.one/validators/one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.950000000000000000\",\n                \"max-rate\": \"0.950000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3366495,\n                \"website\": \"https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\",\n                \"bls-public-keys\": [\n                    \"469356f887564c1c3b9ad7fdcffb7ed803970c3e8329a1a61fe1c6b25163a08a9f2dafa5a5d942c8b9f9dfd4c21a5214\"\n                ],\n                \"creation-height\": 3366538,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one177kcfufknjq9vxnqcy2vu45wjghmy6j6um4zpj\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.950000000000000000\",\n                \"max-rate\": \"0.950000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"VALIDATOR MOVED. SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3366538,\n                \"website\": \"https://staking.harmony.one/validators/one177kcfufknjq9vxnqcy2vu45wjghmy6j6um4zpj\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                \"bls-public-keys\": [\n                    \"22849c6b66e7888685c94781d0608ed8254646de58a98bd5e2cdd4a2da3518a9aea6653f9edce7e23500b5dd62ad5415\"\n                ],\n                \"creation-height\": 3366834,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Professional One Validator on behalf of Harmonybanking.com\",\n                \"identity\": \"Harmony Banking Validator\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1.001e+22,\n                \"name\": \"Harmony banking sys. 1.5%\",\n                \"rate\": \"0.015000000000000000\",\n                \"security-contact\": \"contact@harmonybanking.com\",\n                \"update-height\": 3374611,\n                \"website\": \"harmonybanking.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.127239021760739507\",\n                \"blocks\": {\n                    \"signed\": 483302,\n                    \"to-sign\": 489196\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.887680070166607990\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.311456130453109510\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.402894525235896181\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.354574278159117652\",\n                        \"epoch\": 191\n                    },\n                    {\n                        \"apr\": \"0.165014528633514817\",\n                        \"epoch\": 192\n                    },\n                    {\n                        \"apr\": \"0.157244984437732270\",\n                        \"epoch\": 193\n                    },\n                    {\n                        \"apr\": \"0.150738813825323448\",\n                        \"epoch\": 194\n                    },\n                    {\n                        \"apr\": \"0.150737080342886760\",\n                        \"epoch\": 195\n                    },\n                    {\n                        \"apr\": \"0.140853312155237459\",\n                        \"epoch\": 196\n                    },\n                    {\n                        \"apr\": \"0.138366629154755637\",\n                        \"epoch\": 197\n                    },\n                    {\n                        \"apr\": \"0.127239021760739507\",\n                        \"epoch\": 198\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 1.57188005677351348235004e+23\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one128c4wclvc3udu09fs2cdrhlxczh42yzuhlcu7u\",\n                \"bls-public-keys\": [\n                    \"afbb0926f25a3c277cc9bfa0da02ec8c36c73afed561073631d363cd74b6489648ce7e1cde467ee03b9ac24df28e3b13\"\n                ],\n                \"creation-height\": 3366889,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one128c4wclvc3udu09fs2cdrhlxczh42yzuhlcu7u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149x673ga5xh58qpgr4c6r8wpqxaaptzwpjarjl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one162nx454ej6rp0wjag2f8czcayruwrf33xuvhj0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"emasset 2 nodes 4bls keys per node, 2 t3small machines\",\n                \"identity\": \"emasset\",\n                \"last-epoch-in-committee\": 198,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+28,\n                \"min-self-delegation\": 1e+23,\n                \"name\": \"emasset\",\n                \"rate\": \"1.000000000000000000\",\n                \"security-contact\": \"support@emasset.com\",\n                \"update-height\": 3366889,\n                \"website\": \"www.emasset.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 43424,\n                    \"current-epoch-signing-percentage\": \"0.998390582609095507\",\n                    \"current-epoch-to-sign\": 43494\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"19694806076427867423000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.119871827206916636\",\n                \"blocks\": {\n                    \"signed\": 5633538,\n                    \"to-sign\": 5716823\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.128066074517233666\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.122518971319482988\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121478069607158983\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123868958144334452\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.119199179715439207\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120498201392810360\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.123344646839541777\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.117075931039007606\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117443632316369303\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118248512526214046\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117066016496765358\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.118588636335428884\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116548148957775899\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120539590414533114\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120480549113125594\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119046811680916748\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116953560946420949\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117814009348726545\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.053312251642125432\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.119070552598297524\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121460959791458229\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.118843946580905869\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122921076852020858\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122489779874891739\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118567286545771077\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121359492899573905\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118886661802356999\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.119960229086609573\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120536288892581717\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120724160907943965\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119871827206916636\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 49033,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49055,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49064,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48955,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48997,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48962,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48921,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49075,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49102,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49032,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48991,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48865,\n                            \"to-sign\": 49146\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 20\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 22243,\n                            \"to-sign\": 49864\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50984,\n                            \"to-sign\": 51472\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52939,\n                            \"to-sign\": 53442\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49351,\n                            \"to-sign\": 49814\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48942,\n                            \"to-sign\": 49454\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49004,\n                            \"to-sign\": 49514\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51574,\n                            \"to-sign\": 52050\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48942,\n                            \"to-sign\": 49334\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48894,\n                            \"to-sign\": 49380\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48995,\n                            \"to-sign\": 49412\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50143,\n                            \"to-sign\": 50696\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50823,\n                            \"to-sign\": 51684\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49807,\n                            \"to-sign\": 50314\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51065,\n                            \"to-sign\": 51872\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51280,\n                            \"to-sign\": 52076\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51555,\n                            \"to-sign\": 52166\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 54665,\n                            \"to-sign\": 55012\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 7.49418698130069476304832e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.792919176269323204638e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c83de3a015e1727a3683b487ae46ec6ed7137d59c8d001f493f098b4402e39833e794a2fd7f482ed90a7c0ad274ec50c\",\n                            \"earning-account\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                            \"effective-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"group-percent\": \"0.007227442509008913\",\n                            \"overall-percent\": \"0.002312781602882852\",\n                            \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.793047524442914954796e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"54e176df47fdf17c32c996ed028bf50ccd1e4d7c051dc73131b0541f40ee5169c1cf64f530b5e4c590c2188686590f0c\",\n                            \"earning-account\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                            \"effective-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"group-percent\": \"0.007227442509008913\",\n                            \"overall-percent\": \"0.002312781602882852\",\n                            \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.792910178421728581951e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bdbfe3ebd8ce4146a62353f7554e404c8a61c5ff5ce0f90a93406e878302f5f8a975ff51d5cfd59d27e1fae7d9e9ff80\",\n                            \"earning-account\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                            \"effective-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"group-percent\": \"0.007227442509008913\",\n                            \"overall-percent\": \"0.002312781602882852\",\n                            \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.9694806076427867423e+25,\n            \"validator\": {\n                \"address\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                \"bls-public-keys\": [\n                    \"54e176df47fdf17c32c996ed028bf50ccd1e4d7c051dc73131b0541f40ee5169c1cf64f530b5e4c590c2188686590f0c\",\n                    \"bdbfe3ebd8ce4146a62353f7554e404c8a61c5ff5ce0f90a93406e878302f5f8a975ff51d5cfd59d27e1fae7d9e9ff80\",\n                    \"c83de3a015e1727a3683b487ae46ec6ed7137d59c8d001f493f098b4402e39833e794a2fd7f482ed90a7c0ad274ec50c\"\n                ],\n                \"creation-height\": 3366908,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                        \"reward\": 6.657736068376032681268e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16m5r7awa4y2z2cyage4cns4uejxx8rn0gw77ug\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jpxwmkc4ad7p0p66ya6vl3c379qwhuywqrq95v\",\n                        \"reward\": 117116730971849907087,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d0974tslprzkxgsatc8ahaxxa2p8phvpgnahjx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 1.28546944814566074822582e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ekqjas85d6d9axn9mapgr3dr9c5kc503qcsdkd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t29eh6egv870g44dwzx76d7awrwc04u4acmlsd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10d50kxuc5v3rfwqh82kk6ff2uljnerpjqn7jrk\",\n                        \"reward\": 205080037412915239,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1au5qazcfe9lvwdx3spu4kk83pssch5rk4c9de5\",\n                        \"reward\": 865391207883283498,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18rvny8rmfcxjnchgj42g0sghxpu978z0mjhjnq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 909090000000,\n                        \"delegator-address\": \"one1h0hh9ukt4h8h4vp8epn7z74gu8k63k95qsculv\",\n                        \"reward\": 9030852458,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ka8rvmmmw4gale8mmwse2fzp0zqasy99tu2nz6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d6vmmq6elrx0z52zv5v7su2sykua8smaxy330d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+21,\n                        \"delegator-address\": \"one1mgf7d75g3uklf3vxaxzmj9u60lhvd4d9wsjdld\",\n                        \"reward\": 73113949811132791,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5e+22,\n                        \"delegator-address\": \"one1lyud6xd329q0z0z7a6w6v7qdsrmynvs8hqueuy\",\n                        \"reward\": 1.922079246655516426336e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 657454765908718087,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n2svngry0vw2880jexagzd33pdk5kwlwq6hrta\",\n                        \"reward\": 442071851982617964,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 500000000000,\n                        \"delegator-address\": \"one1588j47yhfdn89pm56g0r0scj487hu8ggvgv3da\",\n                        \"reward\": 2323329263,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.88900068589125e+23,\n                        \"delegator-address\": \"one13zdsyuqnmqh8005mr0xrp2hmdwq48hd5a02940\",\n                        \"reward\": 654507115368824683003,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.8231007837e+22,\n                        \"delegator-address\": \"one1ze49un8pscrv4dapc459kplgjqdj4exjfcxn0t\",\n                        \"reward\": 1.44233290250070240731e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fqcktwuvxcf807cwa86d6hfjvwyrj6tscayfk4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3825e+22,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 53847894780567294600,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10t4lxpdrc6pn87a5rsjcsk3e6uw6kkqlen2yfy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n                        \"reward\": 158848258270421037,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1943a79kdy85wv6q0nst7dhtv2pykz28mlc8y3d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.55e+22,\n                        \"delegator-address\": \"one1yg5cuu5m8l92gsrkxm753vxe74qax3u2m620s5\",\n                        \"reward\": 324672785821461006080,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q842kkns55se376px4ggzapwut4h6uphdsrcs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vu3pkw43u759zfanx6p93qm2mm9847r8kqv5m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g4k8j5a0d032duwk4ns9qcv0lgrtr8370t2s7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333000000,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 110025673,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c4jcuqch07dsuj5cly94dj7v0ustjt8tsm9w8c\",\n                        \"reward\": 225743100230847241,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zmv6mk9rdlnyr4fywg6wuc2s7v5y9a9r9lslfx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuw02s26lxyy8w9k3y9crfsxkq50hfs045s9yk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one10utt7kd7jnjmcyq50an7d32jr5exdfzdps39lm\",\n                        \"reward\": 31568635004208663054,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ecuwsacaje5lv5fcslk8v73khhg866dymg02y4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+21,\n                        \"delegator-address\": \"one1v9yk732v6e3reamu33zgt57thpg753vyazuj2e\",\n                        \"reward\": 18582321322087635561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1td7y4ltg6qkecmdxawltcl4fps84wl56dwvrlj\",\n                        \"reward\": 74698183970289301,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one17efjyng3k8yvm6ssmaxlv36l9r8ua28y0cuxp6\",\n                        \"reward\": 22036649424275903485,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7ycs6yexeatycs5686lajr43v9ezc0tgpw7fz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1snm00zd3vw927vsxavpnnd0fs4mmv00s9g6nms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"生きとし生けるものそのすべてに、ピザの恩寵の賜わらんことを🍕\",\n                \"identity\": \"ピザの恩寵\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 5e+28,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"君に舞い降りるピッツァ🍕\",\n                \"rate\": \"0.099000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 4244890,\n                \"website\": \"https://www.1101.com/juku/hiroba/1st/free-101/03.html\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.280401526327519118\",\n                \"blocks\": {\n                    \"signed\": 189703,\n                    \"to-sign\": 197946\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.716013185947578627\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.107992221368148861\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.616295804798565704\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.243066918954097308\",\n                        \"epoch\": 189\n                    },\n                    {\n                        \"apr\": \"0.241830116920033222\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.280401526327519118\",\n                        \"epoch\": 191\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 6.89861044744687519179e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1kv4pr4zchyv7kkypnezeskchxaacakk7vgtw3d\",\n                \"bls-public-keys\": [\n                    \"c6a310513ae626ed58a18b8f8753809bc9e9d9e2c132d91a551294a9dee268d2d3b749cf3d347b123055329fe4022d8c\"\n                ],\n                \"creation-height\": 3367208,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kv4pr4zchyv7kkypnezeskchxaacakk7vgtw3d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1drvtd8ry50teatkmucae2tajg7ngjr7cdk02ul\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qka5ahyct3k4hc6gqujedyj9xq3d68nj0ws4st\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one127ytfzx3vqnknwj5fjq9z8ds0xtgsuhutwd4kl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15v2a60gqk9ue0h6nq7pu38kq456t7kj0ygl6ex\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"...\",\n                \"identity\": \"HarmonyTest\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HarmonyTest\",\n                \"rate\": \"0.035000000000000000\",\n                \"security-contact\": \"Trop1co\",\n                \"update-height\": 3438019,\n                \"website\": \"...\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1h2vuqrgpey8f0nqq5x80l2kwxqaxr3sh0hd6cc\",\n                \"bls-public-keys\": [\n                    \"6617e8e242dbdd246f2151d4cb7e4252a8d513f574ad8a4a6b44ac30dc81f379df5294adc6a95b052adf06d3fd255514\"\n                ],\n                \"creation-height\": 3367406,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h2vuqrgpey8f0nqq5x80l2kwxqaxr3sh0hd6cc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"5% fee will be maintained over the time. 2FA secured server with newest generation of CPU AMD EPYC 2nd Gen Rome processors. Experienced community member supporting Harmony nodes. Contact through encrypted ProtonMail.\",\n                \"identity\": \"Vega\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 8e+24,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Vega\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Vega.node@protonmail.com\",\n                \"update-height\": 3379959,\n                \"website\": \"Vega.node@protonmail.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                \"bls-public-keys\": [\n                    \"0c86750ff767e17cf362fefbec45d3672e9b14e31cc019f0a11d886f8735e235d497c29ee242cf55394a0a7060e04894\"\n                ],\n                \"creation-height\": 3367610,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"blockchain engineer\",\n                \"identity\": \"naturedcorn1\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"naturedcorn1\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3367610,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 43445,\n                    \"current-epoch-signing-percentage\": \"0.998873407826366855\",\n                    \"current-epoch-to-sign\": 43494\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"17168775436604624998999999.999999999999999998\",\n            \"lifetime\": {\n                \"apr\": \"0.120136853113517150\",\n                \"blocks\": {\n                    \"signed\": 4695288,\n                    \"to-sign\": 4827616\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.127247394071928367\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.122486696260745125\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121352085474989403\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.122969106520305688\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.127972630818075586\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.124173013549658380\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.137994978481520371\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122248372536335524\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.116636012022410796\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121263274277390114\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118316312058499222\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125365218675462807\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.005366877088518252\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121801824496346478\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.123593590240616417\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.112906494270771031\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117809350964426407\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119168619380953124\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122448366710497107\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121105077527241984\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.123788009421522305\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120835057426482903\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122948428712255017\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122586226557561419\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118857105197048037\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121585537115428332\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.121051178218456150\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.120950095971358727\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122419969514743840\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120832885945790406\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120136853113517150\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 49134,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49097,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49113,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49101,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49064,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49049,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49035,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49111,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49113,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48960,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49032,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48814,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48884,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48731,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48850,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48583,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48839,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48868,\n                            \"to-sign\": 49146\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 6\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2329,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48913,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48958,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48959,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48838,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48862,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48986,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48933,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49036,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48865,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49092,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 5.9983519884844492262832e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.563299211579890840187e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ada4422e36fb53fc5098eed8fd4bc6a3d2e24c06ab0fc7a06bf755d72180cec56cd0977ccba6ee19038d3f839c9cb180\",\n                            \"earning-account\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                            \"effective-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"group-percent\": \"0.006300459975925308\",\n                            \"overall-percent\": \"0.002016147192296099\",\n                            \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.563299211579890840187e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"289eb7f7c6b601dc83534734f500365f4fcf2189a5813b806b9ef6a777183c697d5fb22c07a26d19b63f1e10fa88e50c\",\n                            \"earning-account\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                            \"effective-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"group-percent\": \"0.006300459975925308\",\n                            \"overall-percent\": \"0.002016147192296099\",\n                            \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.563176821594013566965e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"25f199bef86ed7855f2a980925bc35d7209ebdaa686fed791b9494403268a22b8daea8cf84f7071315840e66964baf0c\",\n                            \"earning-account\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                            \"effective-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"group-percent\": \"0.006300459975925308\",\n                            \"overall-percent\": \"0.002016147192296099\",\n                            \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.7168775436604624999e+25,\n            \"validator\": {\n                \"address\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                \"bls-public-keys\": [\n                    \"289eb7f7c6b601dc83534734f500365f4fcf2189a5813b806b9ef6a777183c697d5fb22c07a26d19b63f1e10fa88e50c\",\n                    \"ada4422e36fb53fc5098eed8fd4bc6a3d2e24c06ab0fc7a06bf755d72180cec56cd0977ccba6ee19038d3f839c9cb180\",\n                    \"25f199bef86ed7855f2a980925bc35d7209ebdaa686fed791b9494403268a22b8daea8cf84f7071315840e66964baf0c\"\n                ],\n                \"creation-height\": 3367619,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.1902e+22,\n                        \"delegator-address\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                        \"reward\": 1.0339963905002443973263e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.51732e+23,\n                        \"delegator-address\": \"one1c6m2w8t0p3de3cjleu2t2duvspas6366jtf8da\",\n                        \"reward\": 5.040128327174871487691e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.84241e+23,\n                        \"delegator-address\": \"one1a0sy6uju6s3p54c7xpgrnxsztke3jjv5shsa2p\",\n                        \"reward\": 3.153918733306366128711e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3959999999e+22,\n                        \"delegator-address\": \"one1ruwk3yw8lue9gjjdjuplqg5k534ts89qq6tus9\",\n                        \"reward\": 2.430428472060014843082e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 1.0887433096372849379133e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gcexg4vtvts9daclw4npa59ttcrfxywaqfgh3y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jx7wusrrnj2djdf4dus5cq07yw3fe2077j2l67\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xxwm5efekrd6h4wk3vz2un6ap0tdvq5ctf33vq\",\n                        \"reward\": 1900280793051369906,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.4081e+22,\n                                \"epoch\": 317\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one135lhy9rv4ulw2tfvv6l3h95mn5r420n2rdsvt5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333000000,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 116087079,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.998e+22,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 38369063273840385566,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.144374104e+21,\n                        \"delegator-address\": \"one15n3hvvk4huwpp2zxtcvj3jtl76vxlpkjfhr4f5\",\n                        \"reward\": 110548757902921239950,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pqjmt6s9tnyrapfg4hren2sfa63mkjlrt9ep3m\",\n                        \"reward\": 15661632108952822640,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153lf2qzc5pcedutq28a7vawam7t2dc580udy5n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.35e+21,\n                        \"delegator-address\": \"one1cs8u26z8dyrftz3ycdfnh809za3us78xjl2fvn\",\n                        \"reward\": 163661860541543587747,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 1388072560717809954,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19rz3el68crvtxca0esn8ywc4wy9vda7leau5dj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.98e+23,\n                        \"delegator-address\": \"one15vks0acs9znumq4ekxzp6nhf3mz6t5alqrcv7m\",\n                        \"reward\": 1.3769044204805311283356e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 625000000000,\n                        \"delegator-address\": \"one1v3tzxmw4fsfx5k5ejxygyt9wlk2dqztvwsk7mc\",\n                        \"reward\": 576745772646622244,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 666666000000,\n                        \"delegator-address\": \"one1v90kxvca397mkcevp3c8vtg8tr03mfdkrkdrwe\",\n                        \"reward\": 3137625353,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1fsrhd83yk7jafg0pd7sr2s7qsfkeuthe9cdzrx\",\n                        \"reward\": 241060266713486074772,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.08e+22,\n                        \"delegator-address\": \"one1wec2k54hfe5s4aksjwd3tpdvxuj72wtpsnre40\",\n                        \"reward\": 64235646260986423188,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one19rspxun4ry5ehgkdkhv9aly23e7rdcjnrhnh2n\",\n                        \"reward\": 324533351012856644959,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.16660625e+22,\n                        \"delegator-address\": \"one1shttw803ue9j7mg0tf9qqcevqda08fggg6eeky\",\n                        \"reward\": 68134511318909098119,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"For Harmony with love.\",\n                \"identity\": \"Brooklyn--2286455933564097969\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Algorithmiq Ventures Validator Node - Brooklyn\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"petr.koutny@alventu.com\",\n                \"update-height\": 3391488,\n                \"website\": \"www.harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 1019238,\n                    \"to-sign\": 1064960\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.112234508457726136\",\n                        \"epoch\": 207\n                    },\n                    {\n                        \"apr\": \"0.077076629026788579\",\n                        \"epoch\": 208\n                    },\n                    {\n                        \"apr\": \"0.121483626789877236\",\n                        \"epoch\": 209\n                    },\n                    {\n                        \"apr\": \"0.081796161496608386\",\n                        \"epoch\": 211\n                    },\n                    {\n                        \"apr\": \"0.084002469581973630\",\n                        \"epoch\": 212\n                    },\n                    {\n                        \"apr\": \"0.074211026305859571\",\n                        \"epoch\": 213\n                    },\n                    {\n                        \"apr\": \"0.095243305998457468\",\n                        \"epoch\": 214\n                    },\n                    {\n                        \"apr\": \"0.092819865173615593\",\n                        \"epoch\": 215\n                    },\n                    {\n                        \"apr\": \"0.100638503162183226\",\n                        \"epoch\": 216\n                    },\n                    {\n                        \"apr\": \"0.101750048695211610\",\n                        \"epoch\": 217\n                    },\n                    {\n                        \"apr\": \"0.099012791732429768\",\n                        \"epoch\": 218\n                    },\n                    {\n                        \"apr\": \"0.096215285583030800\",\n                        \"epoch\": 219\n                    },\n                    {\n                        \"apr\": \"0.095748156205500478\",\n                        \"epoch\": 220\n                    },\n                    {\n                        \"apr\": \"0.096118376437105574\",\n                        \"epoch\": 221\n                    },\n                    {\n                        \"apr\": \"0.100443032003736560\",\n                        \"epoch\": 222\n                    },\n                    {\n                        \"apr\": \"0.095099805855826486\",\n                        \"epoch\": 223\n                    },\n                    {\n                        \"apr\": \"0.052591575489846836\",\n                        \"epoch\": 224\n                    },\n                    {\n                        \"apr\": \"0.102291254308380394\",\n                        \"epoch\": 226\n                    },\n                    {\n                        \"apr\": \"0.104867058568615864\",\n                        \"epoch\": 227\n                    },\n                    {\n                        \"apr\": \"0.108339025481041634\",\n                        \"epoch\": 228\n                    },\n                    {\n                        \"apr\": \"0.106112317063780248\",\n                        \"epoch\": 229\n                    },\n                    {\n                        \"apr\": \"0.118204967824594595\",\n                        \"epoch\": 230\n                    },\n                    {\n                        \"apr\": \"0.103198827609795156\",\n                        \"epoch\": 231\n                    },\n                    {\n                        \"apr\": \"0.112327228783839748\",\n                        \"epoch\": 232\n                    },\n                    {\n                        \"apr\": \"0.118161615727154279\",\n                        \"epoch\": 233\n                    },\n                    {\n                        \"apr\": \"0.113485580622987013\",\n                        \"epoch\": 234\n                    },\n                    {\n                        \"apr\": \"0.122436623254344889\",\n                        \"epoch\": 235\n                    },\n                    {\n                        \"apr\": \"0.107393654078912394\",\n                        \"epoch\": 236\n                    },\n                    {\n                        \"apr\": \"0.112884896773160343\",\n                        \"epoch\": 237\n                    },\n                    {\n                        \"apr\": \"0.076184033270116762\",\n                        \"epoch\": 238\n                    },\n                    {\n                        \"apr\": \"0.000000000000000000\",\n                        \"epoch\": 239\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 3.31597219349003940271535e+23\n            },\n            \"metrics\": null,\n            \"total-delegation\": 5.0300024e+23,\n            \"validator\": {\n                \"address\": \"one1mgwlvj9uq365vvndqh0nwrkqac7cgep2pcn6zl\",\n                \"bls-public-keys\": [\n                    \"f49663784bfe0ba02c2ea24711f431108aa55b16781a324b0f9db02c7bc1eeb60d1dd1aaaa2d7d90069ff2c0cab31318\"\n                ],\n                \"creation-height\": 3367685,\n                \"delegations\": [\n                    {\n                        \"amount\": 240000000000000000,\n                        \"delegator-address\": \"one1mgwlvj9uq365vvndqh0nwrkqac7cgep2pcn6zl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcfhm6t87ygsqm5jkyr23hl9eg0ts56yfmynst\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15tjsjcff0mcxc76qjrspmc8ml53yg9px3d2qgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 1769966916824579673,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dztpmj96q2f7rmu8gl8hne8k2z84s8tjmmcj4q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19u0l4vvzhqntlyefjgtxlcmnml99et7jk5nm86\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c0gjxhujxst85e8az6mll2s8tm30609d9ylxe6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 6.394523598514862743431e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jnm0mmlw2rur0hjvq3nl4uw3v7r9fd3gjvzcna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfffukhxzxy4wufsw0wx6jgqzzvhzjrm8f7wva\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w7vke338fumxla3wz94v6a4r9lld7tz95tsn75\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"HODL_Validator_group is a Harmony Foundational Node operator in Taiwan since Harmony project launch. We are a professional & reliable POS validator with low fee (4%) and high performance (slot tuning).\",\n                \"identity\": \"HODL_Validator\",\n                \"last-epoch-in-committee\": 239,\n                \"max-change-rate\": \"0.040000000000000000\",\n                \"max-rate\": \"0.040000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HODL_Validator\",\n                \"rate\": \"0.040000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3367685,\n                \"website\": \"t.me/HODL_Validator\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 29023,\n                    \"current-epoch-signing-percentage\": \"0.998245855403453257\",\n                    \"current-epoch-to-sign\": 29074\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"13309227296375600950311000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.099842839431734799\",\n                \"blocks\": {\n                    \"signed\": 3568563,\n                    \"to-sign\": 3624384\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.103106607340994716\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.105135409104182643\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.106073409993395398\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.099349306307657178\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.103208360096450867\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.098360494454107101\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.079798994840345253\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.104076970279561684\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.101567969899686842\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.100005802589298404\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.100469913085045284\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.100404874379505382\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.101196295052893013\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.101605786334367417\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.098575724446491908\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.099902352837886929\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.098689187436734845\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.099776046617325934\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.098252742757265869\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.098723397311018819\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.097068956847234248\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.079034600401273237\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.099213147423889466\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.088824485923340362\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.087011448269010805\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.099047776576803916\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.097038158180926726\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.096571902699047270\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.096757415611715902\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.089734795591636485\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.099842839431734799\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 32908,\n                            \"to-sign\": 32950\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 30118,\n                            \"to-sign\": 32836\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32850,\n                            \"to-sign\": 32858\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33478,\n                            \"to-sign\": 33496\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32825,\n                            \"to-sign\": 32880\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32693,\n                            \"to-sign\": 32832\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 29742,\n                            \"to-sign\": 34000\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 29545,\n                            \"to-sign\": 32866\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32797,\n                            \"to-sign\": 32832\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 26647,\n                            \"to-sign\": 32910\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32859,\n                            \"to-sign\": 32884\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33214,\n                            \"to-sign\": 33236\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32994,\n                            \"to-sign\": 33056\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33396,\n                            \"to-sign\": 33492\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34998,\n                            \"to-sign\": 35038\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 36942,\n                            \"to-sign\": 37012\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32405,\n                            \"to-sign\": 33406\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33029,\n                            \"to-sign\": 33054\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33104,\n                            \"to-sign\": 33128\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35620,\n                            \"to-sign\": 35642\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32943,\n                            \"to-sign\": 32962\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32976,\n                            \"to-sign\": 33010\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32863,\n                            \"to-sign\": 33056\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34281,\n                            \"to-sign\": 34326\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 28836,\n                            \"to-sign\": 35316\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33915,\n                            \"to-sign\": 33958\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35410,\n                            \"to-sign\": 35492\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35637,\n                            \"to-sign\": 35674\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35734,\n                            \"to-sign\": 35782\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 38590,\n                            \"to-sign\": 38638\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 5.08894935516543053206544e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.77724158170706930361e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"843f409bbd76af738342d111fee0017fd5fea404bc1cd646a5c4992f551a16238d7d53a6fa8b2a6b1eada235c2eae285\",\n                            \"earning-account\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"7749703184439000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.776852178881624209398e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0a96b4332a7f3973f7693a2f6a80755981adb090a25200a4c67d231c5490af2b66e4ed5edd520c8b096bb3b65b121315\",\n                            \"earning-account\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"7749703184439000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.5499406368878e+25,\n            \"validator\": {\n                \"address\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n                \"bls-public-keys\": [\n                    \"843f409bbd76af738342d111fee0017fd5fea404bc1cd646a5c4992f551a16238d7d53a6fa8b2a6b1eada235c2eae285\",\n                    \"0a96b4332a7f3973f7693a2f6a80755981adb090a25200a4c67d231c5490af2b66e4ed5edd520c8b096bb3b65b121315\"\n                ],\n                \"creation-height\": 3367987,\n                \"delegations\": [\n                    {\n                        \"amount\": 4.3545009e+22,\n                        \"delegator-address\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n                        \"reward\": 3.9648529467061477279835e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r0k3amjm6njuuyg3zmj57c6hnjmkqn9qpzx7gm\",\n                        \"reward\": 95184629750839621020,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 8.5427932964293131996773e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one182uhrlkg5xzs5syphn94nwwqkztwq22pdar92u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5861359878e+22,\n                        \"delegator-address\": \"one1xrdkpw4l0spcgrlrqlawk7cf92vrpsw44ep7xj\",\n                        \"reward\": 5679915610813628270,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14st34urqt9ps3rtsq4cqqp7npepxglhe75cp2k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"I've experience with Harmony as one of their foundational node runners, and participated during both OS testnet and Pangaea. Keeping stable uptime won't be a problem.\",\n                \"identity\": \"Stable\",\n                \"last-epoch-in-committee\": 321,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Omen🥩  (DMun)\",\n                \"rate\": \"0.149000000000000000\",\n                \"security-contact\": \"@DMunn on Telegram\",\n                \"update-height\": 3884868,\n                \"website\": \"https://www.harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.771626398530998466\",\n                \"blocks\": {\n                    \"signed\": 190953,\n                    \"to-sign\": 228776\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.362066328373531770\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.771626398530998466\",\n                        \"epoch\": 187\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 6.3875078414535766941164e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1kgpgnudej6nvt56jvjura5sk96vr4fev72zy27\",\n                \"bls-public-keys\": [\n                    \"699654f5cc4db777d5e639473d13875110b7a933ca3bdad35a2c7bbbf3851ec09cb01512cd5b83cccce4cb216b20e10b\",\n                    \"461164907d55d192392dd0c6000b0b6051ade60369366ce9b7cbc48eda2d7feb6c2bed2b06beb73a91c4665b9cf27513\",\n                    \"a834580d88e2aff52ceb0d391955d2fc366b3d3ab162827ce7590fdb1a9e8aed908cb054bca13250b6f20c4825cb9287\",\n                    \"a49ec56a0efddd498a0e73603c9eebda8e5a84360488d41d56fe6adab7ef77a25ff323ca0f307b1d41cfc79102733087\",\n                    \"7c1e05e19c5543d3a4bc88c334b970cb50ad81ead7f7632464a19be7845cce7d72f51741e095d30d3c19303137897698\"\n                ],\n                \"creation-height\": 3368052,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kgpgnudej6nvt56jvjura5sk96vr4fev72zy27\",\n                        \"reward\": 8.36444449189054592073e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one142w6su2shfgx8jhckcnakxkjzz63fj0tukdvyz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"A hairy, upright-walking, ape-like creature\",\n                \"identity\": \"Sasquatch\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1.5e+25,\n                \"min-self-delegation\": 4.9999e+22,\n                \"name\": \"SUSAN\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"Sir Lionel Frost\",\n                \"update-height\": 3368052,\n                \"website\": \"MISSING LINK\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.475825498111998227\",\n                \"blocks\": {\n                    \"signed\": 19359,\n                    \"to-sign\": 40460\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.475825498111998227\",\n                        \"epoch\": 187\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 7.483548726116791944336e+21\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1k4wsglw30mluqnc8cu0s4px5xrendmfz92w9wq\",\n                \"bls-public-keys\": [\n                    \"3c99505dc21a5a2a2a44f93c8909b7166e8b0ac3dc9d7bc870741dd9e2c248f945331eeed7ba25fdd49fbdcd673a5e15\",\n                    \"1fdaa5135a5729ccf72f00cf5e5795fe6afa74cf37ebddbbe2b62c34b27c4a24a5902aa6d9b51d7821adb5e5d2e39009\"\n                ],\n                \"creation-height\": 3368256,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4wsglw30mluqnc8cu0s4px5xrendmfz92w9wq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"DETAILS\",\n                \"identity\": \"Clickatelli\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.200000000000000000\",\n                \"max-rate\": \"0.400000000000000000\",\n                \"max-total-delegation\": 2.7e+24,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Clickatelli\",\n                \"rate\": \"0.200000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3368256,\n                \"website\": \"BOB.COM\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000006347065906478\",\n                \"blocks\": {\n                    \"signed\": 326520,\n                    \"to-sign\": 344064\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"1.010571646795483252\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.751695632826547775\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.452478613851949922\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.056560924173073186\",\n                        \"epoch\": 213\n                    },\n                    {\n                        \"apr\": \"0.064292544495154781\",\n                        \"epoch\": 214\n                    },\n                    {\n                        \"apr\": \"0.065208462225687236\",\n                        \"epoch\": 215\n                    },\n                    {\n                        \"apr\": \"0.070236154470300063\",\n                        \"epoch\": 216\n                    },\n                    {\n                        \"apr\": \"0.070960117481349379\",\n                        \"epoch\": 217\n                    },\n                    {\n                        \"apr\": \"0.069040078194267383\",\n                        \"epoch\": 218\n                    },\n                    {\n                        \"apr\": \"0.067107380101295300\",\n                        \"epoch\": 219\n                    },\n                    {\n                        \"apr\": \"0.066590630087110529\",\n                        \"epoch\": 220\n                    },\n                    {\n                        \"apr\": \"0.067402204269964950\",\n                        \"epoch\": 221\n                    },\n                    {\n                        \"apr\": \"0.067296249835598531\",\n                        \"epoch\": 222\n                    },\n                    {\n                        \"apr\": \"0.066341984363149060\",\n                        \"epoch\": 223\n                    },\n                    {\n                        \"apr\": \"0.068475391998009286\",\n                        \"epoch\": 224\n                    },\n                    {\n                        \"apr\": \"0.066529311397648232\",\n                        \"epoch\": 225\n                    },\n                    {\n                        \"apr\": \"0.068103498545756009\",\n                        \"epoch\": 226\n                    },\n                    {\n                        \"apr\": \"0.066530299311680821\",\n                        \"epoch\": 227\n                    },\n                    {\n                        \"apr\": \"0.068781135951337428\",\n                        \"epoch\": 228\n                    },\n                    {\n                        \"apr\": \"0.067520293516226851\",\n                        \"epoch\": 229\n                    },\n                    {\n                        \"apr\": \"0.000006347065906478\",\n                        \"epoch\": 230\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 320\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 319\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 318\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 317\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 316\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 315\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 314\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 313\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 312\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 311\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 310\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 309\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 308\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 307\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 306\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 305\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 304\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 303\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 302\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 301\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 300\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 299\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 298\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 297\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 296\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 295\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 294\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 293\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 292\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 291\n                    }\n                ],\n                \"reward-accumulated\": 9.371850843291330702574e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.5419899200000333333e+25,\n            \"validator\": {\n                \"address\": \"one1lm8jajxvqn478t7pwvuf80v5raana6c3fr2rzr\",\n                \"bls-public-keys\": [\n                    \"3829743a2295519e89538412cb11ea4f04698949761cfd6dd460222c80976b9d4f2bad4d1266e9c7e90c95336fa48794\"\n                ],\n                \"creation-height\": 3368350,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1lm8jajxvqn478t7pwvuf80v5raana6c3fr2rzr\",\n                        \"reward\": 3.881153587222975702287e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7lxuqkg3sedxz9j6a4v2axxmrdhhr45d2ckv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hyqgueh0fv7mwwtt82f74wq9guzmw8ytf74qhn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xvyfjz4ypmcwqxvd7q28xp3jwv5xy7wa85jr4n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rsswq9k7yq47mv7mrpc28ngq7mrn0xhnhe7mgk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1utkxtz9mjja28lrtltf28w4jmuzqrn5j7hlat7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wlpuyd73z03j6qyufye7lynl00nq6dcq94y89k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dm69hwemcpae6gdeaefkg0h9njvr977wzywrkl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8pu8pwfh7q7x8e70ptnztwdk6n505adm42yva\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h3szew3asdd32u7mzd9upjg78k2afdz2cl2fxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qch57lkuudl850ner7xsytezwclzhnzztnkazr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8dt4hz56jzksjaw7vayf8d4n5k5tj5heagnpw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 200000000000000000,\n                        \"delegator-address\": \"one1p0ce8m2pzu7lanwvt9su9fh4e29mpfsgyh53qf\",\n                        \"reward\": 939224490374166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lcw9gkm4xuwrpqyjfqgz4zf5fduxrrqexnp4hf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.54e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one109ga287k9pkqg3en8jg2hw2r89tny663uw5vhm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d6vmmq6elrx0z52zv5v7su2sykua8smaxy330d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1940xav3v8j2z7fp9rj4xz009y2lpjgrglse2gf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zxucth84p9u4a9zk8f3t0rwvvgrsqgjk4z5f6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 333333000000,\n                        \"delegator-address\": \"one1vp58f2e8zn90rp77xrav4ym7tz72yugqe7w2hg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nvyyn2drp8pawx66n30x49z9vnu0vels6qtrk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rfjslpy648xltxuw272v8q5w4lthr9m8ncpgfr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17efjyng3k8yvm6ssmaxlv36l9r8ua28y0cuxp6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one136q778e0jhfaug9f3n8m95wa3p2hyeapm8t7g5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.956e+21,\n                        \"delegator-address\": \"one1y8sp4zu04wxayqjgq60mmqkmg25z4ne42zfu5n\",\n                        \"reward\": 1927832352765644923,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m0ru247ppgrpqy3djuclvur2ytqytqdrjeah6u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.943e+21,\n                        \"delegator-address\": \"one1melnz5n9zdnnswd2phg86fafplnfeyzdqfucpy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Stakeing for a decentralised future\",\n                \"identity\": \"STAKEOLOGY\",\n                \"last-epoch-in-committee\": 230,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"STAKEOLOGY\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Stakeology\",\n                \"update-height\": 3468459,\n                \"website\": \"STAKEOLOGY@PROTONMAIL.COM\"\n            }\n        }\n    ]\n}"}],"_postman_id":"df5f1631-7397-48e8-87b4-8dd873235b9c"},{"name":"hmyv2_getAllValidatorInformationByBlockNumber","event":[{"listen":"test","script":{"id":"fd23b784-e7f1-4736-a107-6092e3ea2673","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"a229253f-ca76-4b9d-88f5-9fd96e40d583","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getAllValidatorInformationByBlockNumber\",\n    \"params\": [\n        -1,\n        3700000\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> : Page number. All data at once is no longer possible</p>\n<p><code>Number</code> : Block number</p>\n<h4 id=\"result\">Result</h4>\n<p>See <code>hmyv2_getValidatorInformation</code> for Validator field descriptions</p>\n<h4 id=\"note\">Note</h4>\n<p><code>metrics</code> field is overwritten &amp; will always display current epoch data</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"3a9ee522-c511-4fb6-a146-dcb1e4cc4b25","name":"hmyv2_getAllValidatorInformationByBlockNumber","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getAllValidatorInformationByBlockNumber\",\n    \"params\": [\n        -1,\n        3700000\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:55:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.577545383294380146\",\n                \"blocks\": {\n                    \"signed\": 45349,\n                    \"to-sign\": 49152\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.900734026821760343\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.632295104664157352\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.459785009479671663\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.577545383294380146\",\n                        \"epoch\": 212\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15296,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15584,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 14467,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.5829229966384770347496e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.210619e+24,\n            \"validator\": {\n                \"address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                \"bls-public-keys\": [\n                    \"23252207c03fe2a5ac0f5fa587583bb37dd9f232275b0156df85bd2aa48a2033972e7847dac68224d064569fbf3c040a\"\n                ],\n                \"creation-height\": 3358745,\n                \"delegations\": [\n                    {\n                        \"amount\": 6.78173e+23,\n                        \"delegator-address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1c5yja54ksccgmn4njz5w4cqyjwhqatlly7gkm3\",\n                        \"reward\": 10890710583241899933,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8e+22,\n                        \"delegator-address\": \"one1zvdmhs9s0k6atfdgmeqf4fugnsl2xsyu0jkmxk\",\n                        \"reward\": 740568319660449079997,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yv760p0j0mdjs9y30puj9felcvz4sspz8aja7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 10890710583241899933,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 4.677805187792099748452e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.53973e+23,\n                        \"delegator-address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+21,\n                        \"delegator-address\": \"one1arje47h08vdu573kjrmlfs59nhqcfn9mfr9xdh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.373e+21,\n                        \"delegator-address\": \"one1suuwp5vzlvu0nkc3xuakj42zl7249xt94ykgl4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Harmony node running in Contabo Nuremberg servers, manage from an active community member, fees will not change\",\n                \"identity\": \"Contabo-1\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1.99999999999999999999999e+32,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"CONTABO\",\n                \"rate\": \"0.001000000000000000\",\n                \"security-contact\": \"Contabo\",\n                \"update-height\": 3374860,\n                \"website\": \"www.contabo.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 176240,\n                    \"current-epoch-signing-percentage\": \"0.996404260611954137\",\n                    \"current-epoch-to-sign\": 176876\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"133826980929680298395637696.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.118273449415330826\",\n                \"blocks\": {\n                    \"signed\": 4726894,\n                    \"to-sign\": 4863285\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121761721558691103\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.098067053313774418\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.096416272075803872\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.097380370124719646\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.090098804324858757\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.090063833381867887\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.086561264803279767\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.101931799655478978\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118293336687909297\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117501546914457319\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117856237014318748\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116224147322249571\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119915868262434375\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120047082369593194\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120620603053714746\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117271731559997113\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119642065161437302\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120418652625692701\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121273544578724826\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120411711312004024\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120497767667271569\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121379748737122090\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.113801410647054408\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118949567902498675\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118032135351824880\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.119055378672369153\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118734818959824293\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117556432798825757\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118948956208348249\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118275898224111781\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118273449415330826\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 204876,\n                            \"to-sign\": 206864\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 214322,\n                            \"to-sign\": 214794\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 226098,\n                            \"to-sign\": 226493\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 221758,\n                            \"to-sign\": 222442\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 209722,\n                            \"to-sign\": 209930\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 200096,\n                            \"to-sign\": 202507\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 217632,\n                            \"to-sign\": 218276\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 217814,\n                            \"to-sign\": 218279\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 219204,\n                            \"to-sign\": 219808\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 218638,\n                            \"to-sign\": 219245\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 238650,\n                            \"to-sign\": 239107\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 251746,\n                            \"to-sign\": 263199\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 272606,\n                            \"to-sign\": 324358\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 265737,\n                            \"to-sign\": 276672\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 192219,\n                            \"to-sign\": 194969\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 180785,\n                            \"to-sign\": 182469\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 283252,\n                            \"to-sign\": 293673\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 416021,\n                            \"to-sign\": 429160\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 299478,\n                            \"to-sign\": 324164\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.547269872693992013059164e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.462154226606198857508e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dbe838331c502c24366bfae521c30cef2c118c34f8a53b383c9c80d57acfc2ceb1fc979d046063bb1929d7d1d0803a84\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462259772631594848636e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7a0af4d7e6f2a82f1afff03bcf4b59457b3db0c1a582d42e4c4d15a2091ff175eda5e194e4142c856e28abc5cb2dfa90\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462259772631594848636e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6cec58349cd971eb0d5c65937b3c0a98c449a601e08cbb2c881577c5475491c17610531c19e660a461d3ea9cb2bc808c\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462367628754289696331e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fe0593f9a38821750623a189db19294eaa288b86efa46b0fc2c9e100174a51717e3695fc143dbba963800acd9dfa4010\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462255251988697963013e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5ea4a8c13bbc364b869c9f7c6b5933a106c5a062e1ccaf83d0650d25ab29dfe6875cc2e5b2b5cbd2712417b46cfe128c\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462046721811965192884e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8c166b798f14ee72dbbfe73c759ec6571613114933f2d82ca7dec67731e3ee57967a9da98822e5345f78f38a4c58a710\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005893290690368209\",\n                            \"overall-percent\": \"0.001885853020917827\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.43160464238895398425e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a7fe02c4f789c053f8061cfa72ab6fb41c58eac7bb17c0d1c699e6c49182ef95c0d72a4be51b828870c6b4c279ce9f95\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005590888931025594\",\n                            \"overall-percent\": \"0.001789084457928190\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.43191284080673709967e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5be15de52c6f3ef44947437734e1d9c8f2e16d71ef1eaac70cefa58e2de5dd950d35edc624d69f11625c01d3102af085\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005590888931025594\",\n                            \"overall-percent\": \"0.001789084457928190\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.431285054582991591047e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5074d8e57293ae73a10ce2f9ebd970872ebe972c377ae8fefd4f29da42d8cd4941c7a27831f7d31e3b7c4881ee31e711\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005590888931025594\",\n                            \"overall-percent\": \"0.001789084457928190\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.431294454972698624214e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4d5dcc9d7b3f4c973a3f91e85b77ede091fe3fd2e494920a1c4026355998694864f7731b8c3630379adfbeaa17849a09\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005590888931025594\",\n                            \"overall-percent\": \"0.001789084457928190\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.431999176240133378608e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5d0f9e2e4b97dd567bfb5e486d4d32303eff1bf36a1b484dbb5a499c83e85d6c3656fe3a3a56187e032de612355e9419\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005590888931025594\",\n                            \"overall-percent\": \"0.001789084457928190\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418340595105705481852e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4ace32c030558cfea4b215615a2225d379e6a0c3f5c0bdf11a694b88bf7477c308e9617298e6f836853523af63cd6602\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418628980052347380028e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"54c3cabec33735721eef52bcfe94282d19919ccb90b9675bee8a8425cc15bac27b9dac5fcfbe560eb39ec619efdda386\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.420309443067163794171e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e1cac822f129fe47fb636a0ca3575bf8f979dd5c353abb1a8441a5b5f486be4df286b1b6ef01916734ee2e8f27a45b0e\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418800258562525170741e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6a924159a7082d438cc1b8176bbeeef57f107ce62eb0a63cfbc92d2cd85b2544126dfe7d01302d578689f9b956fe828a\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418852807389894191065e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2d6a4c4c21a67c9ed0b729ab12bbdfec058e54348d0721906137afc22f2400958c42793ab7c4dc890f9cf14896ac4082\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418710032118693886354e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4af3740a2400c6eabbff5db46e214c6aa6e2c288210cbfbedad40f2672f7359b101fe102f8bb3ab4a4badc4f99f58e92\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.418923777174968035837e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"860b2ccf90c6177f3684720ad63f61467d32f7fbda63bab4eb4955235bb84f71408a5c53d393e04e20e911f5bfaf2e0a\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005573550252626949\",\n                            \"overall-percent\": \"0.001783536080840624\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.473603114085778798493e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2aba11e4239383c631fcf0796c95241508a2a60be7302080e356638141bc01144787b68cf75d130ca596ebd01b57b107\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.473265752380732851566e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2e935bfa72ad37e549100c95d0d2b153c0fe5786589b2c853eb91049c95fef9bdf80a4ccd2fc0f0b1431ff2dd248eb8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.471776927218518953878e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6d1ecb3757073c7886cf13562230900dcb1b63210816806ffac92b323bf28f1ea08f6ed1a6db37669adc044f05be9f8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.471551878682609853445e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"70ea1ba2963116dd3e8c30795a5cca98c7271cc1e39bc3fb074cc4419a83b8d56b8ac3734e3252af35b97d84a68a1a03\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.469881495844847276489e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b68713738f5385048ca97b5188f331b0763937330b0ce306548f07d5401065538d7d1cbcd4bae5ed2d0eb1c9c36cde8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.472720008223688363748e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4d90f1bd3d6fd2803b5a68917c1917579479a4f24a59eba93c729175e26a5adfa6dd596273136c1be24f4b0d35bc1003\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.472306667427797251291e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"62b08e5b27033432965a81667acccc127b9e709d243299ac0d961edf7f0f90055c43c9c7ae55ee830d782cf32f711207\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"group-percent\": \"0.005774493688698037\",\n                            \"overall-percent\": \"0.001847837980383372\",\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.21522329258473848479322112e+26,\n            \"validator\": {\n                \"address\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                \"bls-public-keys\": [\n                    \"dbe838331c502c24366bfae521c30cef2c118c34f8a53b383c9c80d57acfc2ceb1fc979d046063bb1929d7d1d0803a84\",\n                    \"fe0593f9a38821750623a189db19294eaa288b86efa46b0fc2c9e100174a51717e3695fc143dbba963800acd9dfa4010\",\n                    \"a7fe02c4f789c053f8061cfa72ab6fb41c58eac7bb17c0d1c699e6c49182ef95c0d72a4be51b828870c6b4c279ce9f95\",\n                    \"e1cac822f129fe47fb636a0ca3575bf8f979dd5c353abb1a8441a5b5f486be4df286b1b6ef01916734ee2e8f27a45b0e\",\n                    \"70ea1ba2963116dd3e8c30795a5cca98c7271cc1e39bc3fb074cc4419a83b8d56b8ac3734e3252af35b97d84a68a1a03\",\n                    \"b68713738f5385048ca97b5188f331b0763937330b0ce306548f07d5401065538d7d1cbcd4bae5ed2d0eb1c9c36cde8b\",\n                    \"6d1ecb3757073c7886cf13562230900dcb1b63210816806ffac92b323bf28f1ea08f6ed1a6db37669adc044f05be9f8b\",\n                    \"62b08e5b27033432965a81667acccc127b9e709d243299ac0d961edf7f0f90055c43c9c7ae55ee830d782cf32f711207\",\n                    \"54c3cabec33735721eef52bcfe94282d19919ccb90b9675bee8a8425cc15bac27b9dac5fcfbe560eb39ec619efdda386\",\n                    \"6a924159a7082d438cc1b8176bbeeef57f107ce62eb0a63cfbc92d2cd85b2544126dfe7d01302d578689f9b956fe828a\",\n                    \"4af3740a2400c6eabbff5db46e214c6aa6e2c288210cbfbedad40f2672f7359b101fe102f8bb3ab4a4badc4f99f58e92\",\n                    \"032586e1bbec9db63fdd4f027d152acfbb02290906b43bfbd4863da6459642c1de5865afbdf3be1dc0adaf33bf264d19\"\n                ],\n                \"creation-height\": 3358749,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.000001e+24,\n                        \"delegator-address\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                        \"reward\": 5.7033115340729433567172e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1a8avzz3hcvhfrh2tp7rdprpvwt838y9um9c2q7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one16f2qazl9hc2qcmvnnpm29zem50rnrgw6pmny8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.085e+22,\n                        \"delegator-address\": \"one16mp6ulwmjqadhr9uzkzmf62epu0kmu9759vdcy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.199701e+24,\n                        \"delegator-address\": \"one1rez9xg8hpddswd8cc09njdlp724gdmmsg53cmh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d235ehhlcdec9vsg6vua3j6gq2csz3u9hvju0e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4450000000000003145728e+22,\n                        \"delegator-address\": \"one1fg8d0ppj72skslnxqvyl9n2v702xrxw6ujcwz8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.500000387759982440873984e+24,\n                        \"delegator-address\": \"one1r2ksmlnfh5uyrfv6umlrrr4pw33jzkpe9zyar5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3612397000000000262144e+22,\n                        \"delegator-address\": \"one1nmdyf6cuaw5fh0x0hhj0s3lpk4fcvhemehtm7m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1vlafys3hgv098te6c40vapwdmr26prsrp68ywf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7lxuqkg3sedxz9j6a4v2axxmrdhhr45d2ckv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1je27ttxy9kzdj4dr426vgmmtl7q4m4y0zjskpu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.13785e+24,\n                        \"delegator-address\": \"one1wlurf58m9pe0cuy38hrfqulfwjeg8u8f8mw6k7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5393e+23,\n                        \"delegator-address\": \"one1md69ytck92k7f7twygzt2tslxg8r8z2xm8a56w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.7629000000000001835008e+22,\n                        \"delegator-address\": \"one1wz3fxuuh2ecff9zc0sep96cnlrmpz6pwqnrp68\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+24,\n                        \"delegator-address\": \"one1kad96xygnypyuck48yvznxq5xttx3lxeud3sgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4400947e+22,\n                        \"delegator-address\": \"one1kn2vdhpecmtmy0p3u7z9a2epvhfv4ndskl46hd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.16812929685699999678464e+24,\n                        \"delegator-address\": \"one1hjukedz8j7f3cvffhykla3mh5ma6474vw57xjs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.020533000000000001835008e+24,\n                        \"delegator-address\": \"one1ssx9hmpyjysfshmq5d6kny0w8v2v6egemmjx3s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0247700000000000131072e+23,\n                        \"delegator-address\": \"one1ts5kn95h3lawa4xrx4luauwpx0uqe57wz543tn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.000190230500000008192e+22,\n                        \"delegator-address\": \"one1gt4cgazl8j3qa35x4n0hcrr2acdn0w9mvtdqt7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.63611e+23,\n                        \"delegator-address\": \"one1welw50yx2ch6xgx6ldzjm5egru5trgr6k9n8fy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.40779999999999999475712e+23,\n                        \"delegator-address\": \"one1knu96c7603lw99en8jcnf2zqar8e0pf4whkkaa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.593e+22,\n                        \"delegator-address\": \"one10w2678a6ud4jxle62de2e7tlvmtantc9q6l7ma\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.00000000000000008388608e+23,\n                        \"delegator-address\": \"one1n2ewc4df9xqwn765nluds89e9wfanwv3aadk43\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1064e+23,\n                        \"delegator-address\": \"one1kysqrwndadss5xt5eg5duzem3zgnqynr7z8cls\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4838e+22,\n                        \"delegator-address\": \"one14fa5cq2kv92uetsf3usqseac0mkr0kmmeszn3x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.40176e+23,\n                        \"delegator-address\": \"one1ps0m27wyyxv7mev4s3ayzlk28ms6a95xw32ztx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8090167999e+22,\n                        \"delegator-address\": \"one1dnc8t82zzqd4vv48qwl8lfzuc8mpzpwzp96z9j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+21,\n                        \"delegator-address\": \"one1gx3zqmh0zumvs7696wxcp3advk7nkghg6ulghq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5422390900000000032768e+23,\n                        \"delegator-address\": \"one1uwdruqc5pu2q22rt8vwr48yuxuf632k6nl8rm5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6586e+22,\n                        \"delegator-address\": \"one1ag7qa7tpd0gy2ksjzdrmkrnxtw39a6uv0aemjf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0001e+22,\n                        \"delegator-address\": \"one12ljv0jr7duaue9ywqf09xq6kxsxk8endzz9rq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8221e+22,\n                        \"delegator-address\": \"one15025zlytcfem8tluq9w5kemcpmfwtzj5lpxwa9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5054e+22,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.12555e+23,\n                        \"delegator-address\": \"one1v4j0qv277rdg0s66lzsffdn6z6s7h7ecaldv8a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.87288999999999991873536e+23,\n                        \"delegator-address\": \"one19f77e897dxnpxzp9hyu296z5aarwcltcv6nw4w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01890528979e+23,\n                        \"delegator-address\": \"one1up0yysg6zuscadfdmul0g5zrx77plt4j8x0rj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.03954437629e+23,\n                        \"delegator-address\": \"one1yezcm6nw4rd7ahu6hqyhg7hyfj8gu9dutcdgay\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.35916000000000001048576e+23,\n                        \"delegator-address\": \"one1fkpgjmlc67kmf95l2plc8hm2gkj6uuvtl7pmf5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.393e+23,\n                        \"delegator-address\": \"one1wry5qxs7rgws2sqcm8hldcqmr6wlfjj0wqx27e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1528e+22,\n                        \"delegator-address\": \"one1nc322scmfwv7p7f8jmrs52q7yzrgdd0z4jka97\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.685e+21,\n                        \"delegator-address\": \"one1zplu5fqs0aczm9udyzuyyfcqz4x5xw2rhx4d9v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1aa4jrwstvdn9mtlpdhe3e36d46mq86042ym5wn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1atdwrxe98t8kx2cy9r42qjvuslps7dqtxtn6aj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9997e+22,\n                        \"delegator-address\": \"one1yjqlgx35h7qhseaf47pn5j3ar5qqpuf99q5ua6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one18gdenx74cta2l8z6wnp0yx97xcqwuwt97uzash\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1gpr86yg9e4u4tvyt4ax22v3h99m8q700s3qf2k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.141443715538058477568e+21,\n                        \"delegator-address\": \"one1fjmeucz69vekndahdqcfrtdsksdqlm5ywq4333\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5033000000000001835008e+22,\n                        \"delegator-address\": \"one1qh84n8uq6rv4astht3kk6d58vrca940g2uuj59\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.549e+23,\n                        \"delegator-address\": \"one1r2da0t3vq6qa4fk84v8ac7t8s3zs78lrxat454\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 121193108795817984,\n                        \"delegator-address\": \"one1mqldecmcfxfl4e78atc8cc66z2krjh7lzfwy90\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.15e+22,\n                        \"delegator-address\": \"one1yms3yzl9d8jcgqdk0fx8hasn4k4zuaaw0rshu5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.75e+23,\n                        \"delegator-address\": \"one1fp2nnpwyjzy0j68j38p6x9vcp8e7zzem3nt9e9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.401223000000000088342528e+24,\n                        \"delegator-address\": \"one145ap2c4qs6vte055rdehra23sz6w26mgavzgge\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.284e+21,\n                        \"delegator-address\": \"one1lucgnd2t39tnxn42pv36ve2tn6jcf3efa2d5k0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.44328e+23,\n                        \"delegator-address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rr5n6qvjxlyhrhnkzxtjslzffrp4trl3wtsuh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l4dtuj5s7sj8q34urqmyev5jjx2s6t8yp28wjx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19g9hdrhsaplnfyt5zdrgdxl6p9wchfhm0fd86t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dma2n8q5z0culhey5n97mxwvfmxjx3ggje2ts8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dr4u9qtpczl7pfmctgwxp2yut5tdqyyevvft5c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9758000000000000524288e+22,\n                        \"delegator-address\": \"one1myk7gz8l67rttwkkrc9kag8ft29p0lsa0082hr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1emggc9549mcv259z3w6fe4ptwt89fy2rzqhc3c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.98e+21,\n                        \"delegator-address\": \"one1cuk5l8rmjq72dt8ah23twtfywwsqt0t8cepxq8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.37464e+23,\n                        \"delegator-address\": \"one1pvp5m5kk2j6n5d4mpss9sv09ls5p2jvsv6nhfh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1048576,\n                        \"delegator-address\": \"one1lkdw6ascfx4kp7k0qmc8gnkt4d0k3z476c7kya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mp9hnvwm5tc7hjuwge6n4llarmxclget7r93rz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3950000000000000524288e+22,\n                        \"delegator-address\": \"one1gv7naspecryjq7sv3uetclq2vllwxlcy7elal4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.97904337299999991791616e+23,\n                        \"delegator-address\": \"one1e4cghgr30rzjk4snrfgwxffysxjeq0thzxj6s4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pl8a66ayjtk8364dxdxgnxxj83fp23qwfayy2e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.62999999999999987417088e+23,\n                        \"delegator-address\": \"one19elpq46ulwwj32dek5v28wzq7pkx023hqdzsqr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.614e+23,\n                        \"delegator-address\": \"one1qwvh9ay9ml0fvgsuxgj9qw6h24flj9fwv27xvp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1p07kjqpslduq8vankpfcs8avpd4anfdmf69rxu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.407805e+24,\n                        \"delegator-address\": \"one1p57avf90x2ldhgm7ahemsmppz9t67r47cqkn77\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8965e+23,\n                        \"delegator-address\": \"one1u8dt4hz56jzksjaw7vayf8d4n5k5tj5heagnpw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.036100000000000393216e+22,\n                        \"delegator-address\": \"one18hrgw6zmk7paesxtdm924gywtlye55w3vqkcqc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.009000000000999899336704e+24,\n                        \"delegator-address\": \"one1dsqz5qn8pv58nnudvnn0ngm6f9dr3d4t8dcvtn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4810999999999999213568e+22,\n                        \"delegator-address\": \"one174rtn0j6ugy8xt0cxm9gg3r7p0zf8scd7uht42\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zf239ny6pdy0twnzmuaxumvgx9ld9rlfl2a3sh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one168dwndj5xz3e3yca4wzm8x34knf5gezu3ypyt5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.5431226000000004653056e+22,\n                        \"delegator-address\": \"one1c5rufnstnjte97yftm43dlm8kltqnyea50d0d4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.538950225299999505252352e+24,\n                        \"delegator-address\": \"one1dgfa476a79w0e2g5ylyy2g9xgwghelfcrmwfv0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.999e+21,\n                        \"delegator-address\": \"one1ncqfp5cxkcyf8p4vphvtjdynxq5cvm8ehm8y26\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.06829e+23,\n                        \"delegator-address\": \"one1z3hax7pkq9lhp0serq6qxyvyu6jqgn4j57808v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0000000000000000262144e+22,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1utr8dmfygm8xn2n5t4fhalhs9tagpr2l6dwpzp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0078e+22,\n                        \"delegator-address\": \"one19sdf30xtcpys95gwd2j8pxazt628am20m2vauw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 251658240,\n                        \"delegator-address\": \"one1karass48cv8yc5gumu5empx40szw52w3hlyzt5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3365144961223066124288e+22,\n                        \"delegator-address\": \"one1ql7x0lxqn9zg3psnqmpl3mf96aptfyhm3l4sxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.7334140778998166192128e+22,\n                        \"delegator-address\": \"one1f4hja2qwt935qfm69dqsc858nyemgu5nq2z0ek\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.837996894999388094464e+21,\n                        \"delegator-address\": \"one1qhfu9ugajltw49rv8jl0r48lpl7d4hpjd7nlwg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1lqvpn2qw8sqlxnpzssgwqjalz5raadwytaagdg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.50240797999998777163776e+23,\n                        \"delegator-address\": \"one1wrnv30ysv3ettqcvpnwkglr4ldpmtwmg5vuf0f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one16ymzfqvxyhjr65tk94ql693398dh9tpyd6e9v4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1mka92dd2422cvahc5ahznhacaw8ve66ss8x7g5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcfhm6t87ygsqm5jkyr23hl9eg0ts56yfmynst\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 999999999989252096,\n                        \"delegator-address\": \"one1jyqnfykwkf6prygcan238t39pfrt52rr96rldx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.80999999999999997902848e+23,\n                        \"delegator-address\": \"one14rve8jqvf6nxhla8m6ka79d2hlrtxfs8jy2mks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gu6ftc8cva77j7n5zevgpdshk8jmk0vhhs0w2c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.099e+21,\n                        \"delegator-address\": \"one1uhvn9t2w7jf4avjv6xelp549yemwp4c7t54pcy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.65e+21,\n                        \"delegator-address\": \"one1780hukztd6ty8f7z6z6wye0j6hez3ds8jydg5c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0369000000000001835008e+22,\n                        \"delegator-address\": \"one1mk7jcvn54v772ee4m7z3makzmcuhw5c5jyx0lq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.56276197000000015695872e+23,\n                        \"delegator-address\": \"one1vegzurdx7vgpw4te5jwdvyvx4qsgdy3htk4ncv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00003495e+22,\n                        \"delegator-address\": \"one1xhguj2npkujvlkgmvw6ez4j0w4wn2qaeg5d5mn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.50240200999999977291776e+23,\n                        \"delegator-address\": \"one1v8lvmjqs5jptsw5v2vt3xkl5ytsl34xej52dmn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one18kxq78xks47rzjmg3gmpty7shzw0qkq7cljvqs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5673302000000001114112e+22,\n                        \"delegator-address\": \"one1ukmek6yd9ca240a0el8ghcf5prvmw5223ext7w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one130d8hfdqls45qv5937pszl7pla3094tkgluhe2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.680894456000000057409536e+24,\n                        \"delegator-address\": \"one1g0psysvm78erk5t84cs3pj0802pfcpdr326sl0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9hvt6asamkgfwge00cuj7thx6v775xpeen2ag\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.114e+21,\n                        \"delegator-address\": \"one1xhp43dqrusy5yvqluttxzjzw2cey8v823ar3cc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.421999999999999475712e+21,\n                        \"delegator-address\": \"one1sfzxtwq22805rmhh9xhx5pmxvd0lc44xa0k7cs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.6e+22,\n                        \"delegator-address\": \"one12jzn57j3n8z53nyujjy9v47ylw3v862u98wxyh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0499999999999998951424e+22,\n                        \"delegator-address\": \"one19prarnqe75ywgrta6h3mgafke683ygq0n7ngl4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7382999999999998164992e+22,\n                        \"delegator-address\": \"one1h4a6vpcaatygcjtkfzeew7ux53cme7e7a5fqu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one12lv3rnznvefzx4ej8gtp342ja3tj2vgrule6ds\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1chgyxusddrgrcvumyaru9kxgyfwdyx6pxdkk8n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.585e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.988e+21,\n                        \"delegator-address\": \"one1qv8nca92x8m9376nr8x5reueldwd0pkt3ltemw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mv7g0rj2dqfnw9jgqqxa8aqea9g8dw4kay77gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.10460000000000001048576e+23,\n                        \"delegator-address\": \"one1s6kkqgzndrf0496fhcvcdkfy49l6ckjcrzdpgk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.03e+21,\n                        \"delegator-address\": \"one1gyp6m8adfxtxregp9hlrfreuh9g2400mvvjcq3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1983tu4snhurnned0n25jn55s4v7rmkknvqfu8g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nls7h0m68can2xg7hlngmesmq9jcj9qke9ptnd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.728e+21,\n                        \"delegator-address\": \"one1hktzqtea8plzlyph86pl4ryyw5u2498kk6sywu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one12kzpq753nzcnqy80xdzg3f5rfmjgx9jyu80k0r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0885000000000000786432e+22,\n                        \"delegator-address\": \"one1u5gl9tgmvz954kj4j74cpvhsumz943kcmcp3sg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1df922elay8d4kwl2jzsftpn6u0myd9gzr7xx2u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.49999999999999997902848e+23,\n                        \"delegator-address\": \"one1e4f8jsm3wcszrjq8m5g3yyzy8543r66mrvkp9l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c9f3p2hru7zge6jeyelx2rrzcehe42j2yl9t27\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0000009e+22,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.1521689999999997313024e+22,\n                        \"delegator-address\": \"one134t2ky6m832cudjtq7g6g0xzfgk7krc329dwtx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9178e+22,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6e+22,\n                        \"delegator-address\": \"one1g529aet4mq0shjlaa5a3kstyvgfpz8gdrlj7au\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.992e+21,\n                        \"delegator-address\": \"one1gjfqm53hczcz7m5ygqzhxh5psaagspsz094kqx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9278999999999998164992e+22,\n                        \"delegator-address\": \"one12uujccq3eefatu4cjdqpqxldlqg90vnmd3zfkm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2676e+23,\n                        \"delegator-address\": \"one1vh2pxsm52m73k9vedcppmx9jgrdawevkfge9er\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 995299999999852544,\n                        \"delegator-address\": \"one1weklekfacmtxd8l2tekdk098nm0umq67gwvej3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w6eu2vs4tdcj6358jjz7x7rs6zvx2vuqmpxdkx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.6999999999999997902848e+22,\n                        \"delegator-address\": \"one1jfkphz98k23yrejaj6s4m4qqyxfl0apu2ttjec\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.352909000000000032243712e+24,\n                        \"delegator-address\": \"one1l3s66mye7zlzxfufm668ql56jh8taxv5vsh4jd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ga0r42vuw995ct96anzemx896an4dvwtu4snql\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2778999999999999213568e+22,\n                        \"delegator-address\": \"one190clt466vdjny85q8s8x7mf2unmu8sqzgs45zd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.09999999999999991611392e+23,\n                        \"delegator-address\": \"one1qvsrhe2tv4xve2uu6c5tc37f77a5d2pthe9vnr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.2816e+22,\n                        \"delegator-address\": \"one1pzf6fvvellwlj4nz7vzgavk96wqxl7jgcmd9cm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1mem80nc8ecrmved08a97h25p2c2mmguv3knwgf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 9.193e+21,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q5m2zavkeaj90whp2fl5xj0c6gkdy5r8g4hwwf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ju2tg5mcqqz2n2tjq3l8ngfdcu47gg8mwxlus8\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 4.392e+21,\n                        \"delegator-address\": \"one1q3kzmmkecsg909ajh8y0t5tc0kzmftsau406qx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.18e+21,\n                        \"delegator-address\": \"one1ky4utxvzq9lp9k8rqggvf2ylpytqzevuys84xf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1g0dekrsdg3u9k00ze3nsyqkjn6752uucsxyf3t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.292999999999999737856e+21,\n                        \"delegator-address\": \"one127vappgzf8ku28uep2fcvjkrhvtc49rj8ufejn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1469hsgueep58mjfe95w2s8xyhmr6e66zdldlmz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one186vc47p9ezhq88krg07mgz7wjrqv3s0572xgcl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0098999999999995019264e+22,\n                        \"delegator-address\": \"one137a9jtvf638cv9t49lj7ald72dzeu6whak3txm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.619106499999999983616e+23,\n                        \"delegator-address\": \"one1xw5n3hf7ptd9qhf9gklgzqjx3eq6z75zm6ccld\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2250000000000001572864e+22,\n                        \"delegator-address\": \"one13h58vzrnnslspf93c063uz3tmsvkdnh8p6v4q8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4949999999999998427136e+22,\n                        \"delegator-address\": \"one1zctfnssn5frpfz9ms0dn5l5dkgl66mjyujdz39\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1854999999999998164992e+22,\n                        \"delegator-address\": \"one12j9akvwn6e6qq8ru7nxkyyj7jexesuv883kftf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one194hs239rrgelg60kan4hqsj6mg5x8ey3vlwde8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.075e+21,\n                        \"delegator-address\": \"one15jzx7smpuds47j0qzph232wdafyegxk8h53ydn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Sesameseed is a multi-chain digital asset staking community who's unique rewards structure, fueled by the SEED token, provides stakers better rewards over time. Stakers earn rewards from multiple blockchains by staking to any one of Sesameseed’s nodes or simply by holding SEED.\",\n                \"identity\": \"Sesameseed\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+28,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Sesameseed\",\n                \"rate\": \"1.000000000000000000\",\n                \"security-contact\": \"Juliun\",\n                \"update-height\": 3358749,\n                \"website\": \"https://sesameseed.org\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"1.024745331446509385\",\n                \"blocks\": {\n                    \"signed\": 32690,\n                    \"to-sign\": 32768\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"1.024745331446509385\",\n                        \"epoch\": 186\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 4,\n                            \"to-sign\": 4\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32686,\n                            \"to-sign\": 32764\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.140460511308333108544e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.1514e+23,\n            \"validator\": {\n                \"address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                \"bls-public-keys\": [\n                    \"15dad6a28f96880c1462e9afa7745a9e65fdc971c981813847a0e4d00849b476c18c1ae9b1d75126b158eeeb21f08910\"\n                ],\n                \"creation-height\": 3358751,\n                \"delegations\": [\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1zvdmhs9s0k6atfdgmeqf4fugnsl2xsyu0jkmxk\",\n                        \"reward\": 323517288442127243578,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e2whthzfvwq86cyevg3xzgj6ztps58c5vx6hna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13eec5h4k6xw5h8up4duqzpvsdtcrypnekqjnhy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12ayrjxs8rkl3zhuczkrpflpr3fxqvkau9cx3sr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ty5nf4tlmxgh8acyum5xy27fh5hrmx9lsemj8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jfswdzr7cruvpyp2t2ed5znun6uvku7ynqzq22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.09e+21,\n                        \"delegator-address\": \"one1arje47h08vdu573kjrmlfs59nhqcfn9mfr9xdh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05e+21,\n                        \"delegator-address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1suuwp5vzlvu0nkc3xuakj42zl7249xt94ykgl4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Harmony node running in Contabo Nuremberg servers, manage from an active community member, fees will not change\",\n                \"identity\": \"Contabo-2\",\n                \"last-epoch-in-committee\": 186,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+30,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"CONTABO-2\",\n                \"rate\": \"0.001000000000000000\",\n                \"security-contact\": \"Contabo\",\n                \"update-height\": 3374868,\n                \"website\": \"www.contabo.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.120512557434464971\",\n                \"blocks\": {\n                    \"signed\": 59067,\n                    \"to-sign\": 63300\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.123524932568919478\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122515573560633126\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.126130310774519947\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123512494119442260\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121146679743658461\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.126317947688126637\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.125253586258175429\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119111670343935532\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117810280104347305\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117584218419455246\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.116018006661857546\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.118785361546828139\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121789698298027418\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120850219653037896\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.117737661233394110\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119906099867434756\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119576249200782333\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120621713735729171\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120301460877682412\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118912709537334761\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121576751421536999\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.122370219498424466\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.119790157025680073\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.120360642303891629\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.121111103116366113\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120886081362845073\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120488944450918863\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.118162590685074596\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120201445030960460\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119930681918189592\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120512557434464971\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 302,\n                            \"to-sign\": 303\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23649,\n                            \"to-sign\": 23695\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25155,\n                            \"to-sign\": 25346\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 9961,\n                            \"to-sign\": 13956\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.0608083376699913111416e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 4e+22,\n            \"validator\": {\n                \"address\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                \"bls-public-keys\": [\n                    \"f400d1caa1f40a14d870640c50d895205014f5b54c3aa9661579b937ea5bcc2f159b9bbb8075b516628f545af822180f\"\n                ],\n                \"creation-height\": 3358761,\n                \"delegations\": [\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hdf03n7fdms7rakkekse7atftnl42vm299pcap\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a9x2hfav5a2q378mpq5zcydvr2s6eekh7swdu9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yms3yzl9d8jcgqdk0fx8hasn4k4zuaaw0rshu5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Welcome to Total Harmony! The validator is in tip top shape with 99.9% uptime now, and we have ~4M ONE own funding available, so by delegating just a couple of M ONE you get us rocking with excellent profit again. Thanks for your support! Contact: @anttut at Telegram or Discord.\",\n                \"identity\": \"Anttu's validator in Finland\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Total Harmony\",\n                \"rate\": \"0.007700000000000000\",\n                \"security-contact\": \"anttut@gmail.com\",\n                \"update-height\": 3473143,\n                \"website\": \"http://siptune.fi/en/harmony.php\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 459890,\n                    \"current-epoch-signing-percentage\": \"0.999797818615035773\",\n                    \"current-epoch-to-sign\": 459983\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"238096943383661348274877567.999999999999999982\",\n            \"lifetime\": {\n                \"apr\": \"0.117837051049793930\",\n                \"blocks\": {\n                    \"signed\": 15769261,\n                    \"to-sign\": 15784312\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121831684440713939\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121847725612466528\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.122957039067475756\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.126347372279122662\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121699775518437990\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.106346273061453435\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122513671189806606\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119499531248654752\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119079313755172395\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117785449662284519\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.119277923633396087\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115649372974114815\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119615661201121895\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120037843656288744\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.121861174032809563\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116757399884308249\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119394085063306702\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120111721056903516\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121109668202270868\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120694623824259924\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121000281548882557\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121217753696958993\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118849456631946474\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119153742626809507\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117424842826194466\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118820257955194672\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118554329554753989\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117917208979962274\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.119061053846893148\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118274252533727585\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117837051049793930\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 538555,\n                            \"to-sign\": 538760\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 563419,\n                            \"to-sign\": 563427\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 545616,\n                            \"to-sign\": 545626\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 532722,\n                            \"to-sign\": 532740\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 549744,\n                            \"to-sign\": 549765\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 507057,\n                            \"to-sign\": 507790\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 525167,\n                            \"to-sign\": 525352\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 524406,\n                            \"to-sign\": 524445\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 561616,\n                            \"to-sign\": 561632\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 559192,\n                            \"to-sign\": 559207\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 545583,\n                            \"to-sign\": 545589\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 540704,\n                            \"to-sign\": 540721\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 663725,\n                            \"to-sign\": 663751\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 893725,\n                            \"to-sign\": 893774\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1054997,\n                            \"to-sign\": 1055648\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1055226,\n                            \"to-sign\": 1055273\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1543806,\n                            \"to-sign\": 1544893\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2211261,\n                            \"to-sign\": 2217216\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1392850,\n                            \"to-sign\": 1398720\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 6.03734063172641953077904e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dd505fe02982a929949a5bca34eb9f98ea7201f473a71f189582161b89866880611a37bd27e0f66d5be4b4cfb7f48790\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"778fedb1699a7741eae03dbdcbc376c983b1a23aa9da2548c1706442acc3431747a957cf7aee2ae0fa028bc0c83a1684\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"679f3054719461eb4808fbc74e9129d557b3279c44b22aa52983bca178a99303f1e54aa9cdb8d2a78f86ec60586d8594\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"356b0732524bdd3a2ac6f2a09aa29da9a71b73167f42c64e5ba2b3322d82f79ade31b56efe61782f25c354c1dec28f88\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bcdb69af84771f98edcba335e23748695242dc4c4116c24138766637837e7815dfbd2d30e8c4948eff193e62b2e51e80\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"36dbe94650fcaa1814f0764c5fdc2810defade312a243424ff0053dd6a43cbf9b7907fb267d8848169f1351e8ec4318c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"86385311e94f22677c74aaf2c8a7da682301f2e071354e3f88dab16d3177f482b8e691716e77b9dfc6df851d94560e00\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"62937063063c3c8390c86fd406b3155158fe8ecf1e82b0116e1e27cd8fb021c61c39469658d212cb89168ada8ab89a08\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"aeb4aafa7d532057357b88ed869a785595b004abef728e16ba082fad875637691f26b63e5f44b6f3195be9e6e96ca580\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1e62c58154766ed812630c9a1db3f00f258bf42285d954bf049d36ba75c7c4ce58dcfbd0bfe50e1455d8f60313fbbb94\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"30e724b5656353eaaadf869676c7068c50d85df2509970ba2ba9e20d6606ca56cc6753cef7a58997a3fd9c0217c3330c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"adcfb3af32463919cb1a8d4cd8fde30d7d47442c771a978102f553ec90d84637d26a8b9a201c738dfa0353ebcccfaf18\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dfca9b0bb41a358023b75136f51882e2b5396806f4287a0200f772c2b7b8a5981730fbc7558b086da8217969518d3498\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.712185534034247056719e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"15fe75b1df8039ad6d490f36b9207543971df8f645f33a1aac9e6b95b45880228a28a5c0760e56e090f1c501628f638c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006898019456974506\",\n                            \"overall-percent\": \"0.002207366226231842\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676985323144034096814e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9f68854a0d27f0af2bfc447cd0cc724857ee90b10fe668e8bbadbbd81a6051f593813f15533004a76c2a0ccb25306911\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676985323144034096814e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ebc506a607d843521bc0362c74495ba7166894a7fd1d8bdb2858783b0655f4b542e54b46820ee504a97491a35a354e19\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676985323144034096814e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d72a260c8325571aa5cda49b44d7f5fefe86b22a2d93bcd2dd3958a2ccc391f38babcf9a8a4571517df3307c65378091\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676985323144034096814e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c1cc6891a6234bc6a1c711def8a2d15942a4f6c17eb2758583c0bd37ed59df55d7aa0eb26479d3d5b9ef151a762db295\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676985323144034096814e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fd77e1e3b2db565623d986fc29ae46a620d4e945455cf4ad2a383e30c61aa95c851fbf2f8e774f732dd654de5dc79f8d\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676985323144034096814e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2992b4fa2d94d3ba42a43c6cafc0436c6bc33aeff346014e637af676c16f1514c8daa7ab5edf7b431acda813332f4505\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676855300138881732609e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1d8eadb7653f29928ba01d8ddd83fef588019d1ee125d1ee9d4365c4077d089a7fe9018d32d6af0a86a75a8f452d6b05\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676985323144034096814e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2864f5f1cd848f2c7302faf6bdfc7456984365226c3d53c7cd63cd1dd316fee75a7ae48560ba5658ab47497b952eea99\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676985323144034096814e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e85e14d13b584e3cf86e02c131de6a7868f46db418885e0cecff5d0898bafb9deea5824d68681581d8425907e1f08785\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.676985323144034096814e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1fbbb30e639c6fcecf5fbc428f2aed8e3425a52ea6353221bc12d2a68de711f3c84788f2ba20e84d8f2f34fea043e519\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006544062163950097\",\n                            \"overall-percent\": \"0.002094099892464031\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1c9c5b067ef960dec0ace80c2f56a630d63827b98d29c2a7a564d730e01d31f510802980bc5d291bcb7f4adb799e6f16\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"be166c82632ee7cd22cb4682b8865cc8755abe2b87f2d3e8e2c168b87fa357c8aa274f2b803b16f5ffe40d5b048c3d96\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6c6d16bd9e0e6be6bbaf86aaaa27c072dc1a641adc386f38e6f570479329324a511785d00183de360acf97958717ab86\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6302b0a03e573ffc8fd6a51ee48f0d1d66d9320a67d40f807469bc6677d678510c8d72fda9cbb170e06a22efe2dc890a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"804f4659bbd2c3615bb749bdd363395c6ffea3a3bb95364073295585477c17ccb9fdc4b0fb0dc7620a90c71fc4056012\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f15d1c1e51c9a9051ebf663171ea304b533ef021b2b954d985d9d5b0bf6d237517936c0d4526e4d124b540995bf98c92\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a0301ee493e3a78516929e7a89b6779e828962b8516a4dd41b1374e21a179f00fa6c3b75387c357138d5d1eca6c2d312\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"23e1fd371b179cd2abc2adac5a9b237ae61c812a3cb8b5e7169dc8841da0d8fadb815a16657f73c8af27256298a7138a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1f8ab84a6a98cb00399aa14938c0ca3ffbf3b83555c21559254e5a96047394cda67d2c97037a2ae1d44d6c32b3666002\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b922a394cd8aeb54d35f4aa01ec21179a177f4109bb25a2db6ea3164a0276ec28c2dd047ac8ab7f6b35e96420019758e\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b1cf54323f6285c959ed261f58b0f452d93659ad7a62e1237c1a66c6ebfc3af6a11e76b1c20f26aa9ca86d01ca57270a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0fb881ed1d2d8ba0f1ce94a1ff278d934bf2eb0817a3d1de9a41e944b35b2f56da676cf949219e1538554205705b2f86\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"52d655352e524c9e018c8fa56868d1650051dc3892a66572b23b516a0e79ce292dcad125ba61c17d4c69c28560f1ad06\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.668424725337493928784e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1d920cb4c5c279dc179d39ddeb7d8d4e89f8a375e022a7d68c06e63a10ae460180854054b6c62ff4f99485aa355d0a8a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"group-percent\": \"0.006523767468297708\",\n                            \"overall-percent\": \"0.002087605589855267\",\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 3.57307576701914871391877568e+26,\n            \"validator\": {\n                \"address\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                \"bls-public-keys\": [\n                    \"2864f5f1cd848f2c7302faf6bdfc7456984365226c3d53c7cd63cd1dd316fee75a7ae48560ba5658ab47497b952eea99\",\n                    \"00d69ce5ccd22318af8d0eaee58b04aadd6f55cd7c728b1a45b1620aa6044b22f29d809a17554d0fde4e6bcdefe49e97\",\n                    \"2fb1832b89450c8f6cf78ea4075aea489059f43a5b4cee418d8e30675238235ef6aab40219e7933bf827cbe14d18230b\",\n                    \"84ad0dc35bdb6ab51c70d7f65a38b1e5230fe451fa895938749c1732c109f6fac7e4107ae44961ef1280c96dedcc3e13\",\n                    \"db66379230ed5b875d7f71b98c922a43c1d2a93a65013badaa2cca1a35ace401d37cf81ee54db02be961593ca535b507\",\n                    \"bf19f33eebad54e28c7ec02a61b39dcee6bc866eebf5430c49f1643914e01c9dc5f5f3b5bf0ef9e6de27253223eca687\",\n                    \"db96657fb580e9aa3e411284a1f2a72aa0991211faba8c34633cfad2c4bf2cb0d91ee530607e65885a01e9d14980bd0b\",\n                    \"e46782c9dc0aee13a31c095e0133c721c55b41e96365aac5399b5591a190b7b192818b15aae94d2d90f049c933b99813\",\n                    \"f19afa09b9103ec383f4627fb796905afff6ff0ab96c538d85146271bd5b9a0d14837d00e37f71a9ad138a8071d78d87\",\n                    \"05bc13da54c2482a6ad7923e2475fd737f0be9985708ff89e96473a8c6189e86c411e417c4c3d6e39e101d3e371eb303\",\n                    \"144b5f26e682ca9d4ba400872e62c72477e86815dddd646afca0df314c379fe0f2a6425524dd060ddc15dbf9a08b700b\",\n                    \"4c8bfb9882d837eb86276254d2bafc00f4952551b006c30ddef0c9e3490144a660b58548f8610350fa2003f62b7ca687\",\n                    \"2992b4fa2d94d3ba42a43c6cafc0436c6bc33aeff346014e637af676c16f1514c8daa7ab5edf7b431acda813332f4505\",\n                    \"9f68854a0d27f0af2bfc447cd0cc724857ee90b10fe668e8bbadbbd81a6051f593813f15533004a76c2a0ccb25306911\",\n                    \"d72a260c8325571aa5cda49b44d7f5fefe86b22a2d93bcd2dd3958a2ccc391f38babcf9a8a4571517df3307c65378091\",\n                    \"c1cc6891a6234bc6a1c711def8a2d15942a4f6c17eb2758583c0bd37ed59df55d7aa0eb26479d3d5b9ef151a762db295\",\n                    \"e85e14d13b584e3cf86e02c131de6a7868f46db418885e0cecff5d0898bafb9deea5824d68681581d8425907e1f08785\",\n                    \"1f8ab84a6a98cb00399aa14938c0ca3ffbf3b83555c21559254e5a96047394cda67d2c97037a2ae1d44d6c32b3666002\",\n                    \"356b0732524bdd3a2ac6f2a09aa29da9a71b73167f42c64e5ba2b3322d82f79ade31b56efe61782f25c354c1dec28f88\",\n                    \"ebc506a607d843521bc0362c74495ba7166894a7fd1d8bdb2858783b0655f4b542e54b46820ee504a97491a35a354e19\",\n                    \"fd77e1e3b2db565623d986fc29ae46a620d4e945455cf4ad2a383e30c61aa95c851fbf2f8e774f732dd654de5dc79f8d\",\n                    \"1d8eadb7653f29928ba01d8ddd83fef588019d1ee125d1ee9d4365c4077d089a7fe9018d32d6af0a86a75a8f452d6b05\",\n                    \"1fbbb30e639c6fcecf5fbc428f2aed8e3425a52ea6353221bc12d2a68de711f3c84788f2ba20e84d8f2f34fea043e519\",\n                    \"6302b0a03e573ffc8fd6a51ee48f0d1d66d9320a67d40f807469bc6677d678510c8d72fda9cbb170e06a22efe2dc890a\",\n                    \"804f4659bbd2c3615bb749bdd363395c6ffea3a3bb95364073295585477c17ccb9fdc4b0fb0dc7620a90c71fc4056012\",\n                    \"88ad18df2f7632c5dd8c29c7efde678dab926fa008e3982ad63fa23a636a28da405bbe7f6b9383f823b849f222ffcb97\",\n                    \"723d5776b657b7d8b9080f44c29d443a2938f385f795324b031597a4545ac88f31a1a06999b4eafd52f1b42fb6f74503\",\n                    \"8175ce56b609c82693008e00f289d4652475e5fabab6fc1b0725d3f680779f80eb609dd2aa988f4fae2cdb2b070d6097\",\n                    \"b3f439bf68b10ee4d41a300c758f3b51627a030f44ea99c4804fcd56c79fce849332d130ca7c03eb6f526baac14b440f\",\n                    \"62937063063c3c8390c86fd406b3155158fe8ecf1e82b0116e1e27cd8fb021c61c39469658d212cb89168ada8ab89a08\",\n                    \"bdf9c7c561fd8a2aea04870d449dcf02b3db7b546a272bcb6596a42797e20b566bbf2b61d9b3064b5f78b3259d79e393\"\n                ],\n                \"creation-height\": 3358764,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.79801e+23,\n                        \"delegator-address\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                        \"reward\": 9.1046278855752835423752e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.21855302208e+23,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 385034729305291135542,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.48809e+24,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 2.331524277846514259372e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1vyd0rgpspyjme3ufrvlmk8mza8ez929ngtamlj\",\n                        \"reward\": 52048694495917363474,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.28101665e+22,\n                        \"delegator-address\": \"one1aurkwpe7p3zz9k2z70xg758m26p7q5wvem5prx\",\n                        \"reward\": 316981999394548014138,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.72725e+23,\n                        \"delegator-address\": \"one10wgvlxx85vwcfk43g0vzss95er80uneh2h80hv\",\n                        \"reward\": 183669982317487289206,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.2248334769333333334e+24,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 3.799318606065137875546e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q563tnpv4tnh7l30p2wy3gnu3akhd6va97w7ku\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16295hjtqyr0z22swaqthv7mvmvn2gltnj5gera\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 152316796004815342450,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.002052529894e+24,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 87467817614273026027,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5733e+24,\n                        \"delegator-address\": \"one1j7f7wzt0meeepnycpmm47tchslck07dsh28th7\",\n                        \"reward\": 1.65122262633797081333e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.33120501639e+23,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 6433180521898895925,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.092182e+24,\n                        \"delegator-address\": \"one13zqn0g4r3zs9ppjqqzyan6h9vzdznndw9t33zh\",\n                        \"reward\": 2.7645037369614099251085e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.87003629053e+23,\n                        \"delegator-address\": \"one1kl6wxrxhxualmrl5fshqzvs4unq5cc38esf85q\",\n                        \"reward\": 255691752801946985096,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.502417219e+24,\n                        \"delegator-address\": \"one149aw0kne2qwyxkxhz9v0msgf00lndvvdjne4rq\",\n                        \"reward\": 1.0119036641479532067044e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 87819527275782137840,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.001e+21,\n                        \"delegator-address\": \"one1adyd3udxj05yutue6c2x4gk6m76hgn843as87r\",\n                        \"reward\": 28407387700822391149,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awj9384w8dh34teuyf8h0tz3f6t6kd4eu7fta2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1kcmct2rrvxhy0xalrjzgglcmmytdw26phzxg6v\",\n                        \"reward\": 10687237914170720134,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.80631e+25,\n                        \"delegator-address\": \"one1tqwwn2rh58fjafysl9rgpxjgjz8wdjmqgdwlv3\",\n                        \"reward\": 7.96402958828117739138451e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0258e+24,\n                        \"delegator-address\": \"one1fql5kv8nrenxcnx3cfdyjegvvs2knpwz3a37sd\",\n                        \"reward\": 4.550722802284436989344e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.75e+23,\n                        \"delegator-address\": \"one105jk2q4cnx3lt8k4desct6phta6lhqv8e265ya\",\n                        \"reward\": 2.276926614619609960256e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 1.6496962740121212495048e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.04e+23,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 120517824748249421211,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.217e+22,\n                        \"delegator-address\": \"one1cm99pncfrxwzyhjq6649cce4caeq68hrv5tazj\",\n                        \"reward\": 171370454738738588396,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.41e+23,\n                        \"delegator-address\": \"one19hjspe6czvrpjwagf48yg6f85jdyym9vaeftg3\",\n                        \"reward\": 237399292874600764087,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.505e+22,\n                        \"delegator-address\": \"one1qqd82sncewz6d3pqm9jr775m00w7v3cdpyymmr\",\n                        \"reward\": 34354482557944985069,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17vtxary4re3shw5wvdca8satnj4ycp80dvesvg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.47588e+23,\n                        \"delegator-address\": \"one1phpdnunel3wkdv9g4d6d8sd34e8zu667ssj8jl\",\n                        \"reward\": 4.426041099009992386521e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 6485704736170423327,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.00000773999e+23,\n                        \"delegator-address\": \"one1l672kfy4fpvkmmg6d05unv8ln6sdq6lwq980lk\",\n                        \"reward\": 363777063561262362278,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.50828e+23,\n                        \"delegator-address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n                        \"reward\": 300491954191941440561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nsycmjwwe0fcdtzd4a3tgadfw76jxkuyhzsp4f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6787643e+25,\n                        \"delegator-address\": \"one1t99f7axuns7hel04j6rtlrfr63k243mg8dd3kc\",\n                        \"reward\": 1.6677572000067862621211e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.675187704561e+24,\n                        \"delegator-address\": \"one13z3n2gqg3ptk8cgs2jfn9cp6mec0kgu7xd9ywn\",\n                        \"reward\": 1.1965945108349713911871e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.89827944595e+23,\n                        \"delegator-address\": \"one18tfdjlj2ya3q48s0xynjjs44jpcq2u4q3mtcpn\",\n                        \"reward\": 1.019241005694000691498e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 62439359062945003001,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 125147325995466231585,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.566e+21,\n                        \"delegator-address\": \"one1kysqrwndadss5xt5eg5duzem3zgnqynr7z8cls\",\n                        \"reward\": 25760729550937844427,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15n6zguhjqmu7e7z8d3rkuvgg9fmax3kvt5g6fh\",\n                        \"reward\": 3057496185452054474,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.15e+22,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 22671449072373211205,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.02305e+23,\n                        \"delegator-address\": \"one1m9ucetff5lclvvthhxfsa80qy50ugxl0gtzc0g\",\n                        \"reward\": 770535379951438636146,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.339386e+24,\n                        \"delegator-address\": \"one1c50m3t9zggfcrzsu3wz744m9vtru8jx29t72mc\",\n                        \"reward\": 161728509704362259649,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.500000999999e+24,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 837187664022979911030,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7lxuqkg3sedxz9j6a4v2axxmrdhhr45d2ckv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+24,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 110133854024398943725,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1d9vl22yqm43ut87wh2c2lja5yt55jwk62q74a6\",\n                        \"reward\": 86982778964829395795,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7701e+23,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 565966575784838178790,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.237274303035e+24,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 2.080106208822800418349e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r0uhfdksp5xwvsg9yzgugz3n2ucc4re4kj8s8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ct3jxm4j23c0yjxw89mfj5jp8dwfxzle4eacr0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1dqlljeense9cz595wnsvmkyp47dur62803x7cq\",\n                        \"reward\": 11445619252439067314,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.462437e+23,\n                        \"delegator-address\": \"one122fz55g0xawv2v4kajp3qf388jzkfw40dzdgar\",\n                        \"reward\": 276378779548552403842,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1065e+23,\n                        \"delegator-address\": \"one14m8pwzsavv9gzrrpkmhucrdl8w277tj053k0cu\",\n                        \"reward\": 1.026683404753310886603e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one1vqqy9ku7ytgucytasmc2lfvh8an07kpjqy458w\",\n                        \"reward\": 1606493136084548005,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+25,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 2.224842967557940253788e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01e+21,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 1529707102980630865,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.09788e+23,\n                        \"delegator-address\": \"one1ek52274untyrjp7f3t2qr78ny4carf0ryx3h7y\",\n                        \"reward\": 5392847419216567904,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9999888256e+22,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 180351977875020992561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 236015773567244752240,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.90299e+21,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 10732838060021832508,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.06382359664e+23,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 862875051488003434891,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0865e+22,\n                        \"delegator-address\": \"one1lxky7w24gxjpshvp7rrd5n90dg83pxs6vfm7l8\",\n                        \"reward\": 592128016361295744194,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 68092971520191022441,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.17e+23,\n                        \"delegator-address\": \"one1sxc4v5s6wd9p8kyxkveeyx7r6tsrqwf9mv0rdr\",\n                        \"reward\": 4.881321097340405360645e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.17457597585e+23,\n                        \"delegator-address\": \"one17gnxz0w4kdqn0sdvwl3nh33yh069uy6gyprppz\",\n                        \"reward\": 165218942804641987621,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 3.310811851260725679323e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 10159085926047727245,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 53923839733700617774,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8e+22,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 43952604184983713015,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 3138003278704660966,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1024501058e+22,\n                        \"delegator-address\": \"one1ecv7q3w43lp2dpydca7uc04vlzzuthmgmetcyw\",\n                        \"reward\": 400081245159116979441,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+23,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 359466698015162576756,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.637e+22,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 46214808356280456944,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.39e+21,\n                        \"delegator-address\": \"one13758zvy8n5y4zuv02zyjc6kylry476neraswrc\",\n                        \"reward\": 39446822082059977219,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 580006065759087276,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.615294e+24,\n                        \"delegator-address\": \"one1twlphufxc8hwaw85ucme9ydhl0m8slw2z7genh\",\n                        \"reward\": 2.582536854615971259578e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5493879046e+22,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 9121985684707469800,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pevrcp69mk9695cl6r2lakv4427uh3rkhm3gz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.323e+23,\n                        \"delegator-address\": \"one197wwsy7fnkts6mj3258gysaeqq7qz8nqnyent0\",\n                        \"reward\": 363960688318491587383,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.11190238216e+23,\n                        \"delegator-address\": \"one1x2882hf7sps56xs5n6n38x9n9nlf5kr6a5fwfd\",\n                        \"reward\": 61008882651616348821,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.00301e+23,\n                        \"delegator-address\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                        \"reward\": 277083427000835100885,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.348532143764e+24,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 5.8120346631525459640863e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1992878e+23,\n                        \"delegator-address\": \"one1zm6h6y06cg3lmnlwnlq7l89ec07vq0hptl6ms8\",\n                        \"reward\": 45854110661960177584,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.39148e+24,\n                        \"delegator-address\": \"one15m5p65tgwlkc3r0xqvy3fdpf7ae7hfkma5647h\",\n                        \"reward\": 2.078856064065518505132e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r4trdct8ywcfs5l0ptuguuh8sa6q0dnpuxdu85\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rr5n6qvjxlyhrhnkzxtjslzffrp4trl3wtsuh\",\n                        \"reward\": 4763772102643074446,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0170339e+22,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 85550235644642815461,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.818622259945e+24,\n                        \"delegator-address\": \"one12ayrjxs8rkl3zhuczkrpflpr3fxqvkau9cx3sr\",\n                        \"reward\": 4.948026566058860649313e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5114573497e+22,\n                        \"delegator-address\": \"one1t3mw0rw3hy8tr9k4snlaq3cq5yxd00lxjaylwn\",\n                        \"reward\": 592535343365036698517,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.6534e+22,\n                        \"delegator-address\": \"one1ps0m27wyyxv7mev4s3ayzlk28ms6a95xw32ztx\",\n                        \"reward\": 183645577534225749149,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one150gdz40c4sxyfzgk8zsdgq2wj6282e9slqxap5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 21407738227543805966,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1y7e39h6z0c0jqx9vu2epx3v5d3d44nx7sqmjsg\",\n                        \"reward\": 261733593939613183549,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 741443715538058477568,\n                        \"delegator-address\": \"one1yqlu8j3y6sv55nx3v987cxr209gmkqjy5vgjh0\",\n                        \"reward\": 17493094462650293328,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 28738957834305555790,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fzh923dkauvyye7w68nc38j2dw54gldu5mheaz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one120levpuutak72fet5h5ycfwwasdam4ffgxf053\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5929e+22,\n                        \"delegator-address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                        \"reward\": 429281547533735910500,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1t6ynwcj7wtd2t8lpcwdxsgzh2j36unngd3l4u2\",\n                        \"reward\": 33294922688875031952,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6e+22,\n                        \"delegator-address\": \"one1yms3yzl9d8jcgqdk0fx8hasn4k4zuaaw0rshu5\",\n                        \"reward\": 24846855284373926889,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.16942032205e+23,\n                        \"delegator-address\": \"one1azvl4jf93ndfx8886xrumqmvmta9cv453xak2f\",\n                        \"reward\": 794844424225555519461,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.86e+22,\n                        \"delegator-address\": \"one1jkeh7gtn5utsvl8fplsyxym4h4ue60aenawpeq\",\n                        \"reward\": 395509073106988164005,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.814496e+22,\n                        \"delegator-address\": \"one15lh5pqwpfu4xq8dz0mjh2qvhwx6tv9n7p0p74x\",\n                        \"reward\": 89712960187959925760,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tskp6s7dx5n2wqp7282390qcpzvuy5fa3n6kgg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1942e+23,\n                        \"delegator-address\": \"one1w5qmgz9chjvct9hs6xwg23zhystjvzm5nucuzh\",\n                        \"reward\": 971925564744697602175,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146xcqrrxj6rnue8yhpw7dsat4dqt0763gnpxzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.50903e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 53890438586580762829,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.72e+21,\n                        \"delegator-address\": \"one1mf3rcsuedwrh2a62h7yatgja9wxfmdhntyj4vh\",\n                        \"reward\": 30040023866488680103,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1amshhe2kjrqyfdls6uf25744l0awdq5w3n36rl\",\n                        \"reward\": 605763123731613955306,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1e+24,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.54493943e+23,\n                        \"delegator-address\": \"one1h2vuqrgpey8f0nqq5x80l2kwxqaxr3sh0hd6cc\",\n                        \"reward\": 1.190060901408995549031e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 60853183056941662314,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19mas6xg4tyd3xrhc4ycl2ypyu0knsv2ym7fcwp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 87325650774673978302,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.296233116e+21,\n                        \"delegator-address\": \"one1xc3fye0n84z55wwhfa2czgcv546e7mygwfpa2y\",\n                        \"reward\": 162359921321555765445,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one16ymzfqvxyhjr65tk94ql693398dh9tpyd6e9v4\",\n                        \"reward\": 238064529517429916570,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1814646918268963894,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 29938536466081688883,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2743e+23,\n                        \"delegator-address\": \"one1d9sqruv88cs2ay4frwe36ftg77u4xsj3fzlqfu\",\n                        \"reward\": 1.809038162303715661461e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.13554e+23,\n                        \"delegator-address\": \"one1fwlnqxr49vfeg9sxaxjn4xlgcu7drglm57qpdn\",\n                        \"reward\": 494559715771325307448,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7764199926e+22,\n                        \"delegator-address\": \"one1tlqxc0t908dxhmc7cqnpsn70g2dlglsxhuh2rq\",\n                        \"reward\": 273338991266893055069,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                        \"reward\": 9581878320622158838,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0001e+21,\n                        \"delegator-address\": \"one1efazmyus8wk224s0mkzduzat44k0g88nt2uqv7\",\n                        \"reward\": 22758538938840848218,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.562298e+23,\n                        \"delegator-address\": \"one1eq3ratczrnpct6hpn384rvy9njyzq6cparn2pp\",\n                        \"reward\": 2.12471213611957262392e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+24,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 538173657603316526948,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f89ukcyjg6787xp8a2ehcwgyw66ud5at5chryz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+22,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 158077313235997989070,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.791667795e+23,\n                        \"delegator-address\": \"one1zr3y8tr2l5djdff5wjvtf0ec6j2shsp6rp5j80\",\n                        \"reward\": 603323027691350134567,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rr5enpx2jz7gwmv5dd9e9gx4w7wt28w7fqrd9f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 246508768792369818596,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 28778991374230955032,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6373342364e+22,\n                        \"delegator-address\": \"one1677w9z7hfsszerhd0767d47rekpuzh46xsvaj5\",\n                        \"reward\": 460613857007920505518,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6383848347e+23,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 106229091506528218852,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.814345527618e+24,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 840297907269660317674,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.71e+23,\n                        \"delegator-address\": \"one1gwdl55he6nh0n06xuhvkuupnlp28260ccsnn6n\",\n                        \"reward\": 1.452197180778323038676e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.017e+23,\n                        \"delegator-address\": \"one1jzzz2qrwn62vd8p2v4ylkteyey6k9d9mnm3jpt\",\n                        \"reward\": 200964132444634519735,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 76550847672818437045,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.45e+21,\n                        \"delegator-address\": \"one1athys8vztd2gwkt20w0k48kmywhxle0j3u6q0w\",\n                        \"reward\": 43195952779364472865,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.00257673645e+23,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 242192337816067270867,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xcy78f2hs6wmxxtgm7u5gwtc73m22mm72yj0c0\",\n                        \"reward\": 19862322876436543085,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5.0752e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.8037476e+22,\n                        \"delegator-address\": \"one1myz5fpmctcqq424u42dkkmrsn8xhg9tsgduyy7\",\n                        \"reward\": 3375848448189511281,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+24,\n                        \"delegator-address\": \"one168dwndj5xz3e3yca4wzm8x34knf5gezu3ypyt5\",\n                        \"reward\": 5.5603210863217834979454e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15gmk6l5df6aczsh0jx3hsk59kk26curq54u6gz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one14kr7gvrrmhvfa3p30q8tmy8nkrlqtcjpce6jqq\",\n                        \"reward\": 21806987115897129005,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.7297e+22,\n                        \"delegator-address\": \"one1wf8dzkk2f53hpkgd2vc3t8k5ydw8e6qf7j6043\",\n                        \"reward\": 340075317606953468941,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.19818e+23,\n                        \"delegator-address\": \"one17mquutrtzjecd0sgaqf3q5ncemxvwg3snve06k\",\n                        \"reward\": 59950270416933803414,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+21,\n                        \"delegator-address\": \"one1636wc4gkkj2v4pv7mmsyfljr992fy227gyqc82\",\n                        \"reward\": 22140756846652116320,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 2131964834733080576,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 25668281387740422719,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1qy9mum6mtp5j5u0y3ekaqn8quahvsezavxwu32\",\n                        \"reward\": 149393147051821344796,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.15e+21,\n                        \"delegator-address\": \"one1ljqleg6q3jw7wt8jckx2uf5vfjgwrmuahalkhh\",\n                        \"reward\": 15985923123174622055,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9995e+22,\n                        \"delegator-address\": \"one1eyk6j79jc90eqfgzmx5z995fyw7e8td2hrfd8n\",\n                        \"reward\": 1.39001076756686654929e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one1d0w5upanuqxwwkt4eqd0uxa64mhx58xafrmvhl\",\n                        \"reward\": 2.416928462096246803818e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.510878933727e+24,\n                        \"delegator-address\": \"one1znytkyla3279m4wgg867gfzvje8sp60max36n3\",\n                        \"reward\": 1.192779990908286976933e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 583965550510658797513,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.8e+21,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 80624655751665560146,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.314e+21,\n                        \"delegator-address\": \"one1ag7qa7tpd0gy2ksjzdrmkrnxtw39a6uv0aemjf\",\n                        \"reward\": 194942207638920682,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.29e+23,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 403211670628621680932,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+22,\n                        \"delegator-address\": \"one1r8p9p4hnt3kx9ymvznxgfcm308md5fxwezy55d\",\n                        \"reward\": 164317125920857843073,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1qpczdf6s376y2qay80ustlr5k3lvtml6y4j5az\",\n                        \"reward\": 1.736474338177416457927e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.58e+22,\n                        \"delegator-address\": \"one13pmqxdc0ly5nv3wek79e6np9tu0eqzsq2nj6mx\",\n                        \"reward\": 100499883084118561432,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.000409457e+21,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 38499215010487701845,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.49869018e+23,\n                        \"delegator-address\": \"one1ep5s5j33l0y5tgktx65hmsunnp0lc7k28pr37x\",\n                        \"reward\": 9.033701010331576376143e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.98e+21,\n                        \"delegator-address\": \"one1kxu46dpxvew3wluc5t5y0jcytjum34v8zxgnmn\",\n                        \"reward\": 138730011103728757555,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.966e+24,\n                        \"delegator-address\": \"one1sv8rxdvrp8arxktyrl4psuknafckwyvrurzr3x\",\n                        \"reward\": 1.6448228034144481083895e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.85e+22,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 120469266808504307708,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.95e+23,\n                        \"delegator-address\": \"one1t9l7jze67ade9hdmezrdvqvjvf2hdcdnn6es4j\",\n                        \"reward\": 2.7106565295818696671e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.85008824e+22,\n                        \"delegator-address\": \"one1cp7u3xqtlgmsxt4as32jxervll6lva6k45s6ka\",\n                        \"reward\": 489841682857145411519,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1137e+22,\n                        \"delegator-address\": \"one13eec5h4k6xw5h8up4duqzpvsdtcrypnekqjnhy\",\n                        \"reward\": 16759342791400527181,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.77e+21,\n                        \"delegator-address\": \"one1udn94lyj36dvztdr6u9sdp047czqgdjw608rnj\",\n                        \"reward\": 26187939035952788455,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0550999e+22,\n                        \"delegator-address\": \"one148r9v3cvdpew8k4yzuxslfzh4pxer0u36qn3r9\",\n                        \"reward\": 41209348637128223999,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.28e+21,\n                        \"delegator-address\": \"one16x0e9p4gcjgrpjy3pmud8y8q6pu5vsxqcdepqg\",\n                        \"reward\": 42986314416338276846,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n4ud4eqs9wu7p040n3f97vhsdwng3z7xawjvep\",\n                        \"reward\": 1059960682289032198,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1hfx87k7435sqa67d7fnjtwzu8uvtwzquj7m8jm\",\n                        \"reward\": 496931305084022192551,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1ek6nkv3d9k62zl0kkdza9xrktvhz4j2dhsuhcg\",\n                        \"reward\": 3.63255322508537061186e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1rez9xg8hpddswd8cc09njdlp724gdmmsg53cmh\",\n                        \"reward\": 172294273247691919288,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.822151058e+21,\n                        \"delegator-address\": \"one1xkekv8vh3y2r4q4agwfesedjs50kcgpqv8k906\",\n                        \"reward\": 1839403968551657875,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.946e+21,\n                        \"delegator-address\": \"one1qnn5c20aymv7v3hjmewvmpewc0w8sy8hceqqaq\",\n                        \"reward\": 70515615517073998401,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.169385627e+21,\n                        \"delegator-address\": \"one1780hukztd6ty8f7z6z6wye0j6hez3ds8jydg5c\",\n                        \"reward\": 40613767961329718701,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.070021e+24,\n                        \"delegator-address\": \"one1nat38y2yrla909c05gzs5hvf49c8wukgyz8zcj\",\n                        \"reward\": 4.9160448810180729636154e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r3cjxvlvjrhq3537yswks43tfprn8vzahwdu94\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4317059776e+22,\n                        \"delegator-address\": \"one157rwjephc5y9vt3wc685uqlfy62amjf0ukavcw\",\n                        \"reward\": 9310665501912067372,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.7004e+22,\n                        \"delegator-address\": \"one1cpuavc73z9h6kfp2qxjxvzeymmz5n3sc9txln2\",\n                        \"reward\": 422307659794952093281,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ljkrmdhlhgkdwvre409znv95hqf4l8rsczm3j6\",\n                        \"reward\": 3572165392604797419,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qh6s6258xn27pstyxul6cg9nzq33l77dn3tx4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.43988e+23,\n                        \"delegator-address\": \"one1dnh7wjg8mkvru3fantlqcazsrw3ma6ucdkqvps\",\n                        \"reward\": 224216470909252558952,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.526154456e+21,\n                        \"delegator-address\": \"one1rv6eyu3am6rtl8xq4tgw38g2cpd7j33l2vac7j\",\n                        \"reward\": 66913500638209157774,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pds4dtf4pf35xnj7452m7hax24gfzu54y4xfms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3178e+22,\n                        \"delegator-address\": \"one1a4k64ushhtqfkgsv5fex7ek0ywld7pxkcu2jqj\",\n                        \"reward\": 257111544951695586781,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13k7vlreqgy80w4kvkqknpgsvp2ux92lwf0kssa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 370589801294456697,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.485e+21,\n                        \"delegator-address\": \"one1r9v4w9h6l8m7caqw38355myrxadezqusepg9z0\",\n                        \"reward\": 4419925395836888362,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17td8n6wa7l57gj727gl4u3z7hn7mpyftj9fhef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qd7hpg5de058czhl5w70cah25hq0u2raptzfxl\",\n                        \"reward\": 228686150398621760339,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+22,\n                        \"delegator-address\": \"one1axv7pm9duu4qygc0krwr0z4p4dzedlh5qlpqrs\",\n                        \"reward\": 15111518939874756561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.02978628e+21,\n                        \"delegator-address\": \"one15z0elgyavkqc5yys7929cd6nw90k3mwy3nltkh\",\n                        \"reward\": 36686199742444365596,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1xmma2qdnlsmp22kdpcwtkxchx8xr7j3mfxjfl5\",\n                        \"reward\": 2992669643907608645,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.379571575e+21,\n                        \"delegator-address\": \"one1qn6j2g7sxcalqzxkgedsmp2sxm2m24w662gx0c\",\n                        \"reward\": 1639826172022235798,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4935707864e+22,\n                        \"delegator-address\": \"one169mgllpxsz6h5dt5nzgxpy7qtkswll5qade38y\",\n                        \"reward\": 3888870559350908847,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10dr00r3wrsp0v04ec7d7asy9jaw5ldp7me53nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ex8lpdj9tzu9wpfgupea04z3m2nh9rqyjefnx5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one10steweqwvh3gk4cu9v85z53ndjrt0c40e9pfsj\",\n                        \"reward\": 102740031988087928806,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1wzqs5a48ky6zr5h3x5rkgn6u73ysu80n8uuha6\",\n                        \"reward\": 101138034413465215899,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.13313617098e+23,\n                        \"delegator-address\": \"one1dh2f694yfw2tpe3zqsvkgaj0ykeustw93gdyq0\",\n                        \"reward\": 650889355402686863980,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+22,\n                        \"delegator-address\": \"one1r0tp6l9g2s4m5np99ec0ugu0kvqc58nhq2mega\",\n                        \"reward\": 126422543016830505076,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1gclsr6czt25s56e7dkpy7cn22096xtqwjqupcm\",\n                        \"reward\": 15692396986307111007,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.01367999476e+23,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 667858512527222403843,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1c0stsfewuu9cpna830xhcc482v28gyepfr900u\",\n                        \"reward\": 149961563677132085376,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4925e+22,\n                        \"delegator-address\": \"one1pmgre5h990fw2yn4uxkfud4l8drzvsdzr4xczg\",\n                        \"reward\": 397562796420957968350,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0065563073e+22,\n                        \"delegator-address\": \"one1rfjslpy648xltxuw272v8q5w4lthr9m8ncpgfr\",\n                        \"reward\": 160798317203218998617,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0136411789e+24,\n                        \"delegator-address\": \"one1awk88qhn4wk2mj6pwkqd4utlqjcl8sqnsu4szf\",\n                        \"reward\": 3.205905434773966056018e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one1alvdxf4hx0ads7s0q9v4g6h5teh0fwkprft6f6\",\n                        \"reward\": 25284508603366348670,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 328015158227746012562,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awzkclvn9vdennul9m7ftqdwfwftwyhuqk4yta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.6e+21,\n                        \"delegator-address\": \"one1sdp4lyruf8ruk2x3xyyremdaq2ck0xxw9n53x5\",\n                        \"reward\": 36020512650813764739,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.31e+22,\n                        \"delegator-address\": \"one1y3es3zwxcn800gzf05n22kxf4tdlnfr2lydkg9\",\n                        \"reward\": 86651087615290498399,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+22,\n                        \"delegator-address\": \"one1a6s5fd6wrsym65ua2xmn8p05excss0qn7rrn3u\",\n                        \"reward\": 104296858589078983600,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.2423606076292518937831e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1mv3ta8wgdeehrsja9pv7474chmu62dyy7cfqg5\",\n                        \"reward\": 200596231141278126331,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1jqq8fcscn9udqnqh2qy38424u6hf95efp5y99a\",\n                        \"reward\": 4.171874343563175759279e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4190635751e+22,\n                        \"delegator-address\": \"one1dcqjuekcmvhr2yj9dxn8w7ndd90zg2qxumrkna\",\n                        \"reward\": 57337732061364318649,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6833186492e+22,\n                        \"delegator-address\": \"one1d33sufcyef8k4eedfj84akatekack9suvmc8ru\",\n                        \"reward\": 132219130164958166643,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3181799e+23,\n                        \"delegator-address\": \"one1y9rn2shkhzepfslx3fqv23js39tnsrjc47472y\",\n                        \"reward\": 3.602980787140039975364e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8989364e+25,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 1.57722555663590926853854e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lhytlknl0hwdtw0j507l8vx2n234d8wxqyvhcz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12sex4dnmfnd3dd7jw8xctl3ndwwz7ux5ksan5c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.86618122499e+23,\n                        \"delegator-address\": \"one18wvkm3t793qulfs6y72r7yj5rrwlzgrcycn05h\",\n                        \"reward\": 3.055524917062353174408e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0666666e+24,\n                        \"delegator-address\": \"one1ugcjmc89hdju06s6s3l7ypevrhvf3yzhl68zea\",\n                        \"reward\": 3.111286511171086208669e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1hlatxd4q8ld78djaerr4hhv0g6vcraxxluks97\",\n                        \"reward\": 17413986459348300655,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.829e+21,\n                        \"delegator-address\": \"one1ss3wnhlrxxw7an0ywrjr6xcxh9epu0ygft0cz4\",\n                        \"reward\": 44610031712049764572,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one15ad34lhszdnz7n8uvnmuzd3w0ay3vy8fdt3343\",\n                        \"reward\": 81503659087917466525,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3e+22,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 159799256771350696020,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                        \"reward\": 17428663769810171258,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yy96kgumhfw6tjwdkxtspju4qf0sc9ay4tf50s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.17221e+23,\n                        \"delegator-address\": \"one1zmhmmcsy5lytxzvr6c8s85msx5ypdkljd4k4sv\",\n                        \"reward\": 1.058084744215841284509e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m68ye842jh4l27uhfae4thakz0klzjwumrf2ls\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 239998552115899801684,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mp9hnvwm5tc7hjuwge6n4llarmxclget7r93rz\",\n                        \"reward\": 140652186524454445271,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qwvh9ay9ml0fvgsuxgj9qw6h24flj9fwv27xvp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+23,\n                        \"delegator-address\": \"one1kmdga276hje5cgefelakkcwgrhu7ndjfdnnzws\",\n                        \"reward\": 974044978358727087449,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qa4cn2u9axkz545ys6mlzk37erl365xqmn3nxd\",\n                        \"reward\": 14835667309824867366,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 20252437773351105438,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lcw9gkm4xuwrpqyjfqgz4zf5fduxrrqexnp4hf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.46476062804e+23,\n                        \"delegator-address\": \"one14xfv2jv9fujjkg6t9qt7s2kz0ws290en8ngrsv\",\n                        \"reward\": 82658656692873074555,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z250uy4fvkzwxvkjz30s26rwgwwezvdtvpwygf\",\n                        \"reward\": 4866956417661112202,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.164e+23,\n                        \"delegator-address\": \"one1s7s40ku4ms63066h34xwmm5j5k4jwk74gml5nx\",\n                        \"reward\": 2.310042282857746534809e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19day69t6zzqrk3yr5086v9892c9ajvkw84fegv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0a43e43kvlw2uzmmk3xv93t6gcz5mr4whr974\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0463e+22,\n                        \"delegator-address\": \"one1u8pu8pwfh7q7x8e70ptnztwdk6n505adm42yva\",\n                        \"reward\": 9623958438095512224,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.01573e+24,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 522707608085957666413,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5e+21,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 3842659285110426664,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.0185198872e+22,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 163002319491097504734,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 50814417679349674127,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.428e+24,\n                        \"delegator-address\": \"one1cl46vhd99u6rhtyuqac823a0cp3ggv293yd0kj\",\n                        \"reward\": 1.0699509454586630207257e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.40179e+21,\n                        \"delegator-address\": \"one1870rta9syx7m8lpqqnxlu9aherka7utlx5hqvt\",\n                        \"reward\": 10472549175890948498,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.35e+22,\n                        \"delegator-address\": \"one13ss5z639ce8lrfse3vyr8aj6ueyaew8vl446sh\",\n                        \"reward\": 101150824675714813665,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+24,\n                        \"delegator-address\": \"one14z84r4a4rhl3n09u0kra222vev4sh03k9f52jl\",\n                        \"reward\": 2.9970614718730057346863e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.863275e+24,\n                        \"delegator-address\": \"one19fumnmg97z9uwwf93ucl88tn64q4wxuytwgrss\",\n                        \"reward\": 1.1241194178931140393859e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16wtdjr8nxrm0z548hg4yffqkmyw9av76e9fej0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 118920209158748294698,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+23,\n                        \"delegator-address\": \"one1z9fvhzdxn76rdckva824xvvhlpd8rt0fnv404c\",\n                        \"reward\": 703991451714153224965,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9585e+24,\n                        \"delegator-address\": \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\",\n                        \"reward\": 1.361041219710827571534e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.95149e+23,\n                        \"delegator-address\": \"one142w6su2shfgx8jhckcnakxkjzz63fj0tukdvyz\",\n                        \"reward\": 1.471767404192872681268e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.945e+21,\n                        \"delegator-address\": \"one1dkkv9gqdr097e4uuyfnwwnwamfsarw0agaxgen\",\n                        \"reward\": 66603168833566459988,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 154709613524001888549,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2052e+22,\n                        \"delegator-address\": \"one1rzrwq4cmav25mewzlz77ehen27pxhktvqqphas\",\n                        \"reward\": 103986656579410383013,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.465e+22,\n                        \"delegator-address\": \"one17uudye02ffxhlpqnvvm8fkc3wyqsgn320gg86k\",\n                        \"reward\": 643979257200145128712,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.019635e+24,\n                        \"delegator-address\": \"one1v0fguw8l5l0gk7fvjq2h9pqgxcekrvy273pfsy\",\n                        \"reward\": 1.634723915945020978755e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.5e+21,\n                        \"delegator-address\": \"one1782xv62cx49zdhr474lt4emc97xnvrpt8d6yrx\",\n                        \"reward\": 42815768872746964122,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mv7g0rj2dqfnw9jgqqxa8aqea9g8dw4kay77gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.05e+23,\n                        \"delegator-address\": \"one14ty5nf4tlmxgh8acyum5xy27fh5hrmx9lsemj8\",\n                        \"reward\": 641712059399544646348,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 10083160896477427907,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.357399e+24,\n                        \"delegator-address\": \"one1zhy3d3j0322vl93wmukw4qmwgz4axqtlg33y9a\",\n                        \"reward\": 233333531428035858874,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6803795638670145425,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n                        \"reward\": 2.854793906387338526994e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+23,\n                        \"delegator-address\": \"one1983tu4snhurnned0n25jn55s4v7rmkknvqfu8g\",\n                        \"reward\": 388071765087511271324,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18stmp9vs3jzrve04zwwgpvxmd35r25nsecpst0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.012e+23,\n                        \"delegator-address\": \"one1j9g7uyg8kx5pkh82hpmuahcd6a3k347fdrg396\",\n                        \"reward\": 208500251820410053674,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1h3c297r5erstzj2tdqcp6qnr2vtrtxwnx9g3kp\",\n                        \"reward\": 48134931303001615401,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+24,\n                        \"delegator-address\": \"one1wvaxshh8c7kxda02c5pszvme564274x3uaywek\",\n                        \"reward\": 549537842445285471947,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l8lkqr69rmw0lw95l75sln6e2y7l0cjj8ufysc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.332031e+24,\n                        \"delegator-address\": \"one1sy0lzzuvk6vsp5sfzggezc9krywetgm3knftfn\",\n                        \"reward\": 1.9074923715312593372673e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1fnrlvje767q02th6xgln763xvplw5pswwkj77m\",\n                        \"reward\": 615552009282091914786,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165jandjg9hczkpj7830cq8fkhv7l6upkt5mekw\",\n                        \"reward\": 3795408221283794937,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.140389e+24,\n                        \"delegator-address\": \"one1te2tfurcvk678g9j5u920l72jdz58fr0lrkpsv\",\n                        \"reward\": 1.513472982494899337771e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one10n69q6nxy87ug3h79xtc39z0rua5d3405z4jvf\",\n                        \"reward\": 138477617316029083411,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 18214871339163617385,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.308e+23,\n                        \"delegator-address\": \"one1vvk8gxcwgn2gzmhluyflfqg3m4wkwsvwe2rn9s\",\n                        \"reward\": 2.036246046705159802657e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1muus26kz85zfn8lavcgxlt2n9zcxeza3d9tl4m\",\n                        \"reward\": 923328013923138255028,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1setvzlsw2ea5ncgwnj4j0grlfrk38y3pgzv6fh\",\n                        \"reward\": 115090956185223251,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.62e+22,\n                        \"delegator-address\": \"one10ayjz83f0lrawxtpcryc4xrpjhtr4a8p9aure0\",\n                        \"reward\": 366931690630886369935,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.004e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 4268864020791867135,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one1ps4gky30d2y60q59ydu72l7dtch6zvvtmu6x0z\",\n                        \"reward\": 5090008176697371183,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xrctvk782mc4gx49nxl69789mu3qluj7zhtzs\",\n                        \"reward\": 2079839416412027384,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                        \"reward\": 12240410842503991733,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.020771e+24,\n                        \"delegator-address\": \"one13gv9shkzs847ayy6ggjxssv9g73jlvydlem2ra\",\n                        \"reward\": 1.000446444345563906193e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.25e+23,\n                        \"delegator-address\": \"one18cj3m04q7zwk27v2erw3ss5dakyh6xzc0kl8pn\",\n                        \"reward\": 25082954117948501257,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one19jvw9uruqem0hehduv95km63947p4cvxfgnsg0\",\n                        \"reward\": 7675598240554286793,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one17gpf07jvactrjk6p6l67au55ap5nd3sknh8l63\",\n                        \"reward\": 33052438846886997418,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eaf67zmhc9sjqn5ag9cjwv3zwpw0shthj6yn43\",\n                        \"reward\": 2968036386147767061,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 3.3509e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1l6v5djd7ss7axpfxgr9rq2v2chp3trnvhzl7aq\",\n                        \"reward\": 33104689168326456649,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+23,\n                        \"delegator-address\": \"one165stpdzl6c6pwdkt9f5xrad063e00symwyznd6\",\n                        \"reward\": 594420611695024161128,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5535e+22,\n                        \"delegator-address\": \"one1l9jy4x6f6dcr7hzge72099f5269gqupx9hnzzg\",\n                        \"reward\": 58537595008991293798,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n                        \"reward\": 347874637799548290351,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1h2kljdu542mrg6zjv33w9nfwt3lpxnzhn6dscz\",\n                        \"reward\": 4953505097458511755,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1keasa5jnnjwp7u46dxz375xmdy8xqdunw8uu3e\",\n                        \"reward\": 15826435509248054630,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.13799895e+21,\n                        \"delegator-address\": \"one1ac82n44sq543exrwc2vrmvhq93wqcdan8ehnnc\",\n                        \"reward\": 5637083599727768751,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9699e+22,\n                        \"delegator-address\": \"one1k9nvefx0znyg4jrpvcj6mzphecxqmqa398d5nc\",\n                        \"reward\": 32536333679596169886,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.03e+21,\n                        \"delegator-address\": \"one1cn93rndj40fsdstmzs4sv62ufgch2g52y8lkrw\",\n                        \"reward\": 8848199630075675412,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.24e+22,\n                        \"delegator-address\": \"one16xt3gl6l7q8afksksgwdmdahd5s75trgy6ut3k\",\n                        \"reward\": 98078894937687038002,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.1e+21,\n                        \"delegator-address\": \"one1jfft9hs3ed4uu38yag0y2wzp70vmpcga9xzdq2\",\n                        \"reward\": 13796199088245235212,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.465e+21,\n                        \"delegator-address\": \"one17d0gcknryeqn3cjfzq6dvqwf39geadhyvgp47q\",\n                        \"reward\": 28307145346970632053,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uz7d80leehn85yz77yucmr3sk9kdz56vcpg6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8e+22,\n                        \"delegator-address\": \"one1lrequvd0kzut0mwgfpgv9yqs8973rmhnshx5kp\",\n                        \"reward\": 89587280006294517509,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1727e+22,\n                        \"delegator-address\": \"one14zf9gchjhtjnk95h6z7cf0duu76wllfmn44mr8\",\n                        \"reward\": 9128321701864523598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.32049e+23,\n                        \"delegator-address\": \"one16xv0y8mh9jsp5dl63kpg647v4kpupjfm3hmndd\",\n                        \"reward\": 503328541288710599749,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 10871447673970794460,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0434e+22,\n                        \"delegator-address\": \"one1s7uz9fdnsedu5ljxf7nw5tewg52s2d9z34clnm\",\n                        \"reward\": 20821166488581124122,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+24,\n                        \"delegator-address\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                        \"reward\": 581720986286552504185,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xmhf7erx9u3yrwzh6nnufxl3cejqshqtk94sk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.128716312e+21,\n                        \"delegator-address\": \"one1fxtypxnzz0vll0vtpea2m8h9utx2vpqjjsmp3n\",\n                        \"reward\": 23360705808383781157,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10z6ssedgr9a46ycyy24m4czy35qmjthcxft8z9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9e+23,\n                        \"delegator-address\": \"one1s8gms2ryuzghc3v0zqcasyfx4j2pkmtuskwgn3\",\n                        \"reward\": 485852259444737615678,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9242239467e+22,\n                        \"delegator-address\": \"one1v0f5up4kztfpxy63d75lywrwekw29ekxds9elv\",\n                        \"reward\": 73345260638498671516,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4e+22,\n                        \"delegator-address\": \"one10dc350yl5g9sqlfkphcstq4rhdzmhnyxa5mn0e\",\n                        \"reward\": 93844232134837554620,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+21,\n                        \"delegator-address\": \"one1qj0f0dwg4jr8lmguxafsuu4pejzcmvz0e277ld\",\n                        \"reward\": 14706484578994956916,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.52e+22,\n                        \"delegator-address\": \"one14m8mtlzu6gk9557ya4nv004lew0ve2tf3kxhzp\",\n                        \"reward\": 28848880137331644611,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 100000000000000000,\n                        \"delegator-address\": \"one19kytp473xph76ga5fflu4trl86sr25m7ez9ney\",\n                        \"reward\": 322311503494807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12t4hfhh0am0jzt834yjsrg6s7m6x40whmh7rf4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1gg8p84y09svpxa5xlqc36v4epwyjv8mk0cmrj5\",\n                        \"reward\": 3268107684220875246,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one18prt8uam55vsy23j403zykx3uvxs6f7xrs4g56\",\n                        \"reward\": 32681076842210267070,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.000779e+24,\n                        \"delegator-address\": \"one14ssxt9yj8e6mq55gfv7d9cw7kcfff73qwh3khw\",\n                        \"reward\": 3.270653540107026600943e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 307190547056957658725,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+22,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 52365580921799731013,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.03031e+23,\n                        \"delegator-address\": \"one16cje0z4pswgck88eprtrd6v04jdy7n6vpcue3x\",\n                        \"reward\": 277498882163562069987,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nrdllzasmpe4yapkw336aa5dakfn387sgks8v3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1qwul7qegna5w3pejamps8ejymjf8m2yk3ejttm\",\n                        \"reward\": 1.112215760423273941901e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.01e+23,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 1.348264522601008385126e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1j3frzp0l0ex0zhp4ft7w6kp9n8rmnj5962gasr\",\n                        \"reward\": 5267038411739460967,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.00038279e+21,\n                        \"delegator-address\": \"one1zv9ygyfpg3uspauyunqqt92e878t2k0887r7xv\",\n                        \"reward\": 18854503973969084617,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one134ujy0hvfu4eksfprrpawyn6szkmg74cdd6zwf\",\n                        \"reward\": 21328234576099543686,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one18eeeg8ryyt3vnul8edzssvqw2jtjaa4sahzdt9\",\n                        \"reward\": 57325813504252158,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 2.132823457609947964576e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.092912869972e+24,\n                        \"delegator-address\": \"one1jnm0mmlw2rur0hjvq3nl4uw3v7r9fd3gjvzcna\",\n                        \"reward\": 1.89855882903104979365e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.323e+21,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 11469971315437256338,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 21147824905494437166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n                        \"reward\": 1566294048264024141,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1n8cqsgwg5lz3c5cmrs7n0peulc43z9mpxh0x8g\",\n                        \"reward\": 72205579765898473866,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one10zsqhjwjwq0wuda38f4y3d7wdymfkcrfkmezqz\",\n                        \"reward\": 3132588096528241741,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+25,\n                        \"delegator-address\": \"one1z62wq6ucttx2ksj5v3s0vk0hup7xg0yez8qkyw\",\n                        \"reward\": 859903013101631074149,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1a869ad50qkw0446x3q3mhzx7fm0azx5fvcu7wk\",\n                        \"reward\": 31325880965279732894,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.115e+24,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 610682601706832253422,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one12cwc8q4r2c6wl6a797ksxgc0njs8j4yshavkky\",\n                        \"reward\": 501493068253376008864,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.17573e+23,\n                        \"delegator-address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n                        \"reward\": 519118543630209154307,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0011503676e+22,\n                        \"delegator-address\": \"one1qup2xu4zj2m7aeld7z7cjkcw8fpspfaprs4tc4\",\n                        \"reward\": 11844931559861939912,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.652e+22,\n                        \"delegator-address\": \"one10ctsljtw26636yqr5at2fgjfxdq8ageadznvy0\",\n                        \"reward\": 35202593926744226691,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.7475e+22,\n                        \"delegator-address\": \"one14xvqeuw9v6mqarw5uathtys6wc3r228sdyp7hg\",\n                        \"reward\": 10543390589823511240,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1ej5qxvat3hr6che3y0ur4l67yz8vmwqkpp6c3u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.21e+23,\n                        \"delegator-address\": \"one1gkgefgxpj4kuy873upl7judq5kp6wwc9rqr2y0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9128912999e+22,\n                        \"delegator-address\": \"one1kh5pn90gclnqwm2hwe7d44nzywes4r7rxjmuah\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one19zhpgyhd7qlcu09yswqqqdq9lkajwzqntz98rc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.57e+22,\n                        \"delegator-address\": \"one1m8364hzzjdxa77zcydy2wqkwnz24dks5k40jds\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.521708177557e+24,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Community run Validator by highly qualified global P-OPS Team. We reconfigure our validator dynamically to ensure the highest possible rewards at every epoch and use extensive backup systems for ensuring uptime. Visit our website for testimonials on our extensive community work.\",\n                \"identity\": \"P-OPS Team Validator\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.490000000000000000\",\n                \"max-total-delegation\": 2e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"🔨 P-OPS Team Validator | Community Run\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"https://t.me/POPS_Team_Validator\",\n                \"update-height\": 3358764,\n                \"website\": \"pops.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 146714,\n                    \"current-epoch-signing-percentage\": \"0.997918650523738267\",\n                    \"current-epoch-to-sign\": 147020\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"81358712415336142857000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.117906705306162879\",\n                \"blocks\": {\n                    \"signed\": 2066505,\n                    \"to-sign\": 2073496\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122056189406231133\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.119243699288803253\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123839483211171484\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125275064142277765\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121010234465300290\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.126573461725053674\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122637316612910735\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119535475676649582\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118285943064412399\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116940755274110910\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117563746678007611\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116153424806575073\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119706190135700321\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119744223621768592\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120083795780385759\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116900833377041811\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119453928644957955\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120523542212178072\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120550056559279375\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120046169026108019\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119864596585311425\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120457917997068929\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118239658961140355\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118343869309038170\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117819662908951065\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118527146023754360\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118326042970500522\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117033798584213702\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118456511850753707\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117875896222943411\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117906705306162879\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 169908,\n                            \"to-sign\": 171643\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 141649,\n                            \"to-sign\": 141914\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 138292,\n                            \"to-sign\": 138514\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 136184,\n                            \"to-sign\": 136342\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 138991,\n                            \"to-sign\": 139200\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 132875,\n                            \"to-sign\": 134468\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 134798,\n                            \"to-sign\": 135112\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 134166,\n                            \"to-sign\": 134544\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 151573,\n                            \"to-sign\": 152032\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 151264,\n                            \"to-sign\": 151687\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 153574,\n                            \"to-sign\": 153813\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 157218,\n                            \"to-sign\": 157573\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 179299,\n                            \"to-sign\": 179634\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 7.4147691648490573140258e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.482154307413886605393e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"935e4e9c467c60646c7acf7a30156b410bdd1aec52403344e964ae33c35e635aa9c1976aa7f1606437bcd2853568db90\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005971273992817934\",\n                            \"overall-percent\": \"0.001910807677701739\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.482040443616386911928e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"17d4c9cf214edad944f13ee8b52dce377c1043842d14c74673a3dbc79ed63420171a3a66d1b10a6a0278db5405320318\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005971273992817934\",\n                            \"overall-percent\": \"0.001910807677701739\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.482154307413886605393e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"64bf95a58cecb76b90d85f0729b3bb411ae56ba11753da991579eca8d3f72bd6749592b567637d53035c3cfc9a57ea00\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005971273992817934\",\n                            \"overall-percent\": \"0.001910807677701739\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.44861012845074446058e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"88a5216174e026b45a4be63b17ed2c6cb25fa4e41e397b88d765cc49412d9b6c14d0e7138b7cceb0d2f5957d7ba8a305\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005664870685087644\",\n                            \"overall-percent\": \"0.001812758619228046\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448314883196455612082e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a6898ff36da875376516e205f687a7590e124337f0cfad968624e05a1a3f472e04ff0da9bded67922a2beee748136b09\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005664870685087644\",\n                            \"overall-percent\": \"0.001812758619228046\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448726604774821419124e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"73c059d291361151de45f3b34c9eba861fbde72cff5a00c24526d017a8414b577ab2b72291eee615501b1e336e54d891\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005664870685087644\",\n                            \"overall-percent\": \"0.001812758619228046\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448823503517194616259e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1181a673448c0b135574063249f0754b9a521c31d5955441bd975f33291c214731c57308176877af57e801d3433b9409\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005664870685087644\",\n                            \"overall-percent\": \"0.001812758619228046\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448717553399405560334e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"880106b3aa920518e46ad26ee3a13c7a13426235f3d5ded0c19f75e113628d1807bfd9d8cc614e114dab51a51c9f3719\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005664870685087644\",\n                            \"overall-percent\": \"0.001812758619228046\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.437812311540036549377e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dd16b9e77c883093f9481a84ff96823a5aa4b09f5a0dc6092b8db98ade5302c9b4074c8028f3347dc522c9686592cf02\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005647302571646221\",\n                            \"overall-percent\": \"0.001807136822926791\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.438632630628565412324e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a7d0040ac7c79df54009fd3dc7ceaaae6dbf33cd2c144f75c2558a614032fa846a54d8d779bdeb6ae63590b19c533382\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005647302571646221\",\n                            \"overall-percent\": \"0.001807136822926791\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.439153263155926162341e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3faa1e4d144872bbf6d3168aaa8c2d30b000fbd889f943da2a96edc54ee50c08e7208416f494685ba521b50d0295fe06\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005647302571646221\",\n                            \"overall-percent\": \"0.001807136822926791\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.489926021467915888096e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"179c14684b1d39715563d3cb0565782b37a231c056886fe5cc0c7547a7e95439f5feab4199ae25b8bb191ba4b4d93397\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005850905003102694\",\n                            \"overall-percent\": \"0.001872289600992862\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.488700644220373653548e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"adefd13f109aa759825fec4741aef8df56fa6808c9600da42b7c7e7a29688bb9855cf13abc2e562d80dda58d05546417\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005850905003102694\",\n                            \"overall-percent\": \"0.001872289600992862\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.490430253027887732225e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"851e2ac1306d867851b618f0343bb1ffe2ca5d6cacc642defeb603c807138320bd7f33d83184e7865cf5ee0cba242a87\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005850905003102694\",\n                            \"overall-percent\": \"0.001872289600992862\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.49051450271798515483e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4d56f8d3f0e254b61f1fd0987f93e0bd66850f37bcdb6fd90d812d3ae0f44c4272356a42e7af289f8497096dddb4518f\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"group-percent\": \"0.005850905003102694\",\n                            \"overall-percent\": \"0.001872289600992862\",\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.10788683484e+26,\n            \"validator\": {\n                \"address\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                \"bls-public-keys\": [\n                    \"17d4c9cf214edad944f13ee8b52dce377c1043842d14c74673a3dbc79ed63420171a3a66d1b10a6a0278db5405320318\",\n                    \"935e4e9c467c60646c7acf7a30156b410bdd1aec52403344e964ae33c35e635aa9c1976aa7f1606437bcd2853568db90\",\n                    \"1181a673448c0b135574063249f0754b9a521c31d5955441bd975f33291c214731c57308176877af57e801d3433b9409\",\n                    \"73c059d291361151de45f3b34c9eba861fbde72cff5a00c24526d017a8414b577ab2b72291eee615501b1e336e54d891\",\n                    \"a7d0040ac7c79df54009fd3dc7ceaaae6dbf33cd2c144f75c2558a614032fa846a54d8d779bdeb6ae63590b19c533382\",\n                    \"dd16b9e77c883093f9481a84ff96823a5aa4b09f5a0dc6092b8db98ade5302c9b4074c8028f3347dc522c9686592cf02\",\n                    \"4d56f8d3f0e254b61f1fd0987f93e0bd66850f37bcdb6fd90d812d3ae0f44c4272356a42e7af289f8497096dddb4518f\",\n                    \"179c14684b1d39715563d3cb0565782b37a231c056886fe5cc0c7547a7e95439f5feab4199ae25b8bb191ba4b4d93397\",\n                    \"39e78e813ebaeda80fcfb46734e6984bb0de2029ee6c3e9dd7db1c1129e98d9cf479a18a84db4233fe25d2b124cb4c0a\",\n                    \"adefd13f109aa759825fec4741aef8df56fa6808c9600da42b7c7e7a29688bb9855cf13abc2e562d80dda58d05546417\"\n                ],\n                \"creation-height\": 3358878,\n                \"delegations\": [\n                    {\n                        \"amount\": 7.5e+23,\n                        \"delegator-address\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                        \"reward\": 8.133703786019091069105e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.001e+21,\n                        \"delegator-address\": \"one17puvhmhwrjdut4pwlvha3d000d57zm7tda797v\",\n                        \"reward\": 7905799054694235359,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.048711773188594558161e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ft9sknz8cuq5sc4p9nhvuyysu2ejhsznjqntv2\",\n                        \"reward\": 32443519865950203303,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 9436650545638620708,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6426600525656525168,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ep8zv2rmwk7e6r5hg6aac7egxy3nx8tcs405q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 52300367843422459560,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0371e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 74870174543257711552,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.75e+22,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 29586307404531721835,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 502434479049743645,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.08811484e+23,\n                        \"delegator-address\": \"one19u0l4vvzhqntlyefjgtxlcmnml99et7jk5nm86\",\n                        \"reward\": 309878591813276372434,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.942e+25,\n                        \"delegator-address\": \"one1h6umxzw83zq2d3j0qlnxfg2prh6peeyzpggdvh\",\n                        \"reward\": 2.7622905490274076841473e+22,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Reliable and experienced staking service provider from Ukraine. Visit our website for more details.\",\n                \"identity\": \"Staking service provider\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Everstake\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"devops@everstake.one\",\n                \"update-height\": 3358878,\n                \"website\": \"https://everstake.one/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1000000000000000000,\n            \"validator\": {\n                \"address\": \"one1pc3yfnkrj0mey98nla8aswftyy23nat38hku2m\",\n                \"bls-public-keys\": [\n                    \"40a5a14acaf2b36c6bd856e4b4e6e778d5f35fb64146a42ad1092c36d0d32a4273070c40b77cb6a056f5882ce85e508d\",\n                    \"4441022eb63eab44a47073ba3495fe93e5a1f45da21fdc9175c285c027e7bd06415b2c0edcb4fce050d358393fdc638d\",\n                    \"4144d21310172fc7b49df2f4e77507925b8a38729740579facf406678d6ac4e691e325f60507b1838a8902c76455f785\",\n                    \"ba5406a83bee4072040beb3041d20ac9b3cd5d53e4d5be2b7143e806ef33343219fa35f02e3fd81fa0c6f39990e6ec05\"\n                ],\n                \"creation-height\": 3358881,\n                \"delegations\": [\n                    {\n                        \"amount\": 1000000000000000000,\n                        \"delegator-address\": \"one1pc3yfnkrj0mey98nla8aswftyy23nat38hku2m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fa40ekglflnh0rl4ed2rhf2gxywrg9wgqwgu7l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fnyhmt5998e78nx57leg4an5req5htaux0fq26\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Mobile Dev Node\",\n                \"identity\": \"JSK_ONE_LIVE_NODE1\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.050000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Mobile Dev Node\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"apps.support@prarysoft.com\",\n                \"update-height\": 3358881,\n                \"website\": \"MobileDevNode.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 118506,\n                    \"current-epoch-signing-percentage\": \"0.992313102893890675\",\n                    \"current-epoch-to-sign\": 119424\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"81003178657385999999999999.999999999999999989\",\n            \"lifetime\": {\n                \"apr\": \"0.116760557038296476\",\n                \"blocks\": {\n                    \"signed\": 2306619,\n                    \"to-sign\": 2331065\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.120903232228269672\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121154448677940250\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.121468252275941535\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125552172333607469\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.118546170063762496\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124494913795146116\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123200412260605104\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119209617291066456\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116145317743962334\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117357641396337501\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.113778309537475468\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115860893416672108\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118331275146496734\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.117614577545630630\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120086346160878553\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118514173598926237\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120457543635403158\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119569925336474721\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120888017556939217\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120538524458492233\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120538802077441678\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.123602220705188709\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116229120069486586\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117733841056479259\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116257474823846669\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117245548799987295\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117135210049703909\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117060424464297215\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117743281339545886\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117502919144993453\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.116760557038296476\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 138029,\n                            \"to-sign\": 139260\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 143755,\n                            \"to-sign\": 145557\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 157008,\n                            \"to-sign\": 158619\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 153765,\n                            \"to-sign\": 155361\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 156699,\n                            \"to-sign\": 159648\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 151039,\n                            \"to-sign\": 152751\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 168912,\n                            \"to-sign\": 169765\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 168701,\n                            \"to-sign\": 169368\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 185856,\n                            \"to-sign\": 186566\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 102277,\n                            \"to-sign\": 102726\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 206920,\n                            \"to-sign\": 207636\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 213120,\n                            \"to-sign\": 213740\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 201904,\n                            \"to-sign\": 209834\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1503,\n                            \"to-sign\": 1508\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25093,\n                            \"to-sign\": 25346\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13532,\n                            \"to-sign\": 13956\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 7.88729758204542532314328e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.65822028394807278427e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7bdb0450438e55d56e21e08ce2a881b6fe5cc7c8f3b5b053cde6358af34d36fe53428656ff19a7f7cb757b58ac40f106\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657113425028150601484e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"40a3db7ddc08f6ccf6b257cff8537ce629077c922533bf06bd4dbfc02b3d278edcbf77169f4bac31e746c892be307182\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.658680353216956767173e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"53cb821ec3a3385905be1b2319956f6dbf9d023cc59ef50b6a3c9e88a7779aba506741eebb42eda0ca1a76d86ea4d98e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.658219811547834735423e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e18afae1c74f676cf72b8a0f8f3c8fcd87c4ec284b8eb31c70dd9d855bbbae4a736a92e2dc5668201cc9ac2245eb3b02\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.658080072398416470121e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"cd21fcd82f7175dc4231f47d28338197ff1950b9ac7e8bcd7a6df025cba26708c4e0b215bc2410e42d5cd681cda8be86\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.658084254404491690083e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b92c957e384e890200c59f98f8d0489a9f23a2be148525f20572b2d4d1eeeccdf6190305d6c89536aff695dbd00fdc06\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.658320489665700842023e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"52b0e9c523aa7f5f989c1610d4f3fb12462a857ad15ed7ba82f88677ce11dd4505d8b13b12d224aa8d725ad9f490760e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657464726283234595697e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4fad10de908b4e2eb37f62127a5e4d9fea5f61b062351722d01f5c88aaa6a3584edd1f65faeabc73ee0786b1118e678a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.658103895873565098641e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1647af99e7a9c71fdec8f2496deaceb5876814388c4090461de3b28231c242570bb7b5ce551c7f07798f9e6bae7c7b0a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657946828141315656975e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"42dab286776dee71b918d5d5ab947f43321dfd59c939f77f0936ccc972e3615f3063044de78a1916893d528415209506\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.658094765978519505871e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0e293e1acda56f1c622ed3d99a4d48d53feff6fa834b2fd3f8d32e49aa15f01b4d1e7d8f3e6e0113779a4970b5a01282\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.657499065552718759732e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2dbbc34c15c05c549e733cb03513f8bd5a6f2b851eb8a330b4042bf932d997112da0e3edd7babbd06a8c18d79a017e0a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.658325888197719794002e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"930db5f31fc1a4d50298d3bfb8799693b856fa2d65c19298a5c0b3d500d7b24d03848a5650f7b2fd069cc8466385b68e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"group-percent\": \"0.006487643220274099\",\n                            \"overall-percent\": \"0.002076045830487712\",\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.6838152743565e+25,\n            \"validator\": {\n                \"address\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                \"bls-public-keys\": [\n                    \"c541fa6d4d97bcae0e502d5dbe64ba9d2b6b28fc8cf498728ab249d9c9efaa5148eb91b0d9827d7effeb36720f0ab813\",\n                    \"cf159cbb7e222c15c42bbaed725510a707ebb891630de2dfcd2b0081aac80ce45ab433f6d2708af538327921f4841b07\",\n                    \"53cb821ec3a3385905be1b2319956f6dbf9d023cc59ef50b6a3c9e88a7779aba506741eebb42eda0ca1a76d86ea4d98e\",\n                    \"42dab286776dee71b918d5d5ab947f43321dfd59c939f77f0936ccc972e3615f3063044de78a1916893d528415209506\",\n                    \"b92c957e384e890200c59f98f8d0489a9f23a2be148525f20572b2d4d1eeeccdf6190305d6c89536aff695dbd00fdc06\",\n                    \"285835fe6b74b3c638988ae27c78fb7e500ef7ad03371b81d580064e31167c3b2bd1d0d1d662c35df059e0fabb8e0083\",\n                    \"0e293e1acda56f1c622ed3d99a4d48d53feff6fa834b2fd3f8d32e49aa15f01b4d1e7d8f3e6e0113779a4970b5a01282\",\n                    \"23e925783968f6b061423a6505a4928d3e0e19d769b517b416099801f3b2481b817208152807727f4efab11ea110028f\"\n                ],\n                \"creation-height\": 3358893,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.6200006709e+24,\n                        \"delegator-address\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                        \"reward\": 2.685783247948310531557e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.0635246627755563001054e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 73270966213204480653,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one14zxucth84p9u4a9zk8f3t0rwvvgrsqgjk4z5f6\",\n                        \"reward\": 343999033309802859922,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 19135278744935794596,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13z3n2gqg3ptk8cgs2jfn9cp6mec0kgu7xd9ywn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 1.156528873144656218573e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 23053719101206217802,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.382e+22,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 67330981035943896627,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jnvncsmlxtnr9znhqqx9rfexggmuj25gmh8pn7\",\n                        \"reward\": 311267938463722588,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 3e+21,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.023e+23,\n                        \"delegator-address\": \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n                        \"reward\": 240159252849255535207,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qka5ahyct3k4hc6gqujedyj9xq3d68nj0ws4st\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0a43e43kvlw2uzmmk3xv93t6gcz5mr4whr974\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6e+23,\n                        \"delegator-address\": \"one1dsqz5qn8pv58nnudvnn0ngm6f9dr3d4t8dcvtn\",\n                        \"reward\": 153494181383723819584,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1dwecfk9455vh6cx9shx30qyeznzem9wum80pvk\",\n                        \"reward\": 6879980666196075195,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vpslanr565n5v3qd0q7gt3j2cz8c3jj9ye7r43\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 6879980666196075195,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+23,\n                        \"delegator-address\": \"one1zf239ny6pdy0twnzmuaxumvgx9ld9rlfl2a3sh\",\n                        \"reward\": 5.503984532956847391459e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 11907190471619747250,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 1099942162981763504,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 18472792141951534763,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pds4dtf4pf35xnj7452m7hax24gfzu54y4xfms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.360044408e+22,\n                        \"delegator-address\": \"one1emggc9549mcv259z3w6fe4ptwt89fy2rzqhc3c\",\n                        \"reward\": 48360209751691957463,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.391722285e+21,\n                        \"delegator-address\": \"one1khpmdjyc8qc9ye5np6dpe2paqrz4e2jxymwpj2\",\n                        \"reward\": 48175305488689593154,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1xkekv8vh3y2r4q4agwfesedjs50kcgpqv8k906\",\n                        \"reward\": 910607278186432389,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.005e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 13794361235723204390,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8071e+22,\n                        \"delegator-address\": \"one13xnd5t6sns2qd6qh9rp60pw3lv47q929e9sgtq\",\n                        \"reward\": 2905445412446511910,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r0uhfdksp5xwvsg9yzgugz3n2ucc4re4kj8s8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1l4dtuj5s7sj8q34urqmyev5jjx2s6t8yp28wjx\",\n                        \"reward\": 34096823963807013890,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 260165872575289672472,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5119769e+23,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 174897435183768155639,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10umgrh373mm7ch9u62jxg6lx9z0736w5gxhwmc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7022509951e+22,\n                        \"delegator-address\": \"one1tlqxc0t908dxhmc7cqnpsn70g2dlglsxhuh2rq\",\n                        \"reward\": 109470875527918473829,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 71932038737547206028,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3e+22,\n                        \"delegator-address\": \"one1xvyfjz4ypmcwqxvd7q28xp3jwv5xy7wa85jr4n\",\n                        \"reward\": 279322349111803349086,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fqxnu6yy0mfl38uctd562atrpfed6s2ayynlfc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16w3td5xj8uem45vnusfg73fqw9wkdmeukjqh7w\",\n                        \"reward\": 28424933965148242039,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.41055e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 21608275203143934813,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fqcktwuvxcf807cwa86d6hfjvwyrj6tscayfk4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1572l5gau2d7gcestc7qaxdvcsa7hj2467tpf57\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l672kfy4fpvkmmg6d05unv8ln6sdq6lwq980lk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18tfdjlj2ya3q48s0xynjjs44jpcq2u4q3mtcpn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awk88qhn4wk2mj6pwkqd4utlqjcl8sqnsu4szf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awzkclvn9vdennul9m7ftqdwfwftwyhuqk4yta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.030783831e+21,\n                        \"delegator-address\": \"one1ggkud93905xkvgkquykrrn44ftzav7ztmq2geq\",\n                        \"reward\": 7091772828307463446,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jzzz2qrwn62vd8p2v4ylkteyey6k9d9mnm3jpt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqt2455nl3n0qs8v5l2zfl7ez5dygwy3q8tm8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.97400372518e+23,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 174053951293018018316,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1t6ynwcj7wtd2t8lpcwdxsgzh2j36unngd3l4u2\",\n                        \"reward\": 31262668704605113602,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uugr9gcd7apak6q00a8qg6zaaadls5vc09a237\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.07e+22,\n                        \"delegator-address\": \"one1r3cjxvlvjrhq3537yswks43tfprn8vzahwdu94\",\n                        \"reward\": 17894180625182516691,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtttzprrpvgeuwjsvkcyz00lftpy63kjk4yd82\",\n                        \"reward\": 1.540836035833195577303e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 20193538095237539446,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yqlu8j3y6sv55nx3v987cxr209gmkqjy5vgjh0\",\n                        \"reward\": 1607295706983063718,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.202e+21,\n                        \"delegator-address\": \"one1kxd3tx33z6trnz6gqujk39wtmj75xvdy4fzrdf\",\n                        \"reward\": 44532140407926059788,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1x8kgyyqgslzrm7jrlj4m7rpg285etdywjk7gez\",\n                        \"reward\": 3.030729020301336227576e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1qj0f0dwg4jr8lmguxafsuu4pejzcmvz0e277ld\",\n                        \"reward\": 40007068521548054401,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.75e+23,\n                        \"delegator-address\": \"one14ty5nf4tlmxgh8acyum5xy27fh5hrmx9lsemj8\",\n                        \"reward\": 259498923202884991069,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 524815650276199935075,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 9520696622071455436,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1lpy9wdzcvyek6g629zzv728lnpmxqzqyxhvpl6\",\n                        \"reward\": 3501385380669179503,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6183301917234934742,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 19289470168935954317,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1983tu4snhurnned0n25jn55s4v7rmkknvqfu8g\",\n                        \"reward\": 333200132546913662532,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17zh0n602sshq3akqfrxsfpkyj7udmkx4glwy2u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1699585130483259085,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1s5sqy8ufg5pegfzv6j4a5n879udsaasu2u5hdp\",\n                        \"reward\": 2911308726514736517,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 12643738502081102290,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Member of the Foundational Nodes, working with Harmony for a year. Node support, managing slots and shards to get the maximum APR with a 100% uptime. Together, we can increase the APR selecting the best bid every epoch. Together, we are stronger, delegate with us.\",\n                \"identity\": \"Embiei\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 5e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Embiei Network\",\n                \"rate\": \"0.098000000000000000\",\n                \"security-contact\": \"@Embiei\",\n                \"update-height\": 3541359,\n                \"website\": \"https://www.harmony.one/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 14659,\n                    \"current-epoch-signing-percentage\": \"0.992686395340962958\",\n                    \"current-epoch-to-sign\": 14767\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"14960169711361447058823529.411764705882352940\",\n            \"lifetime\": {\n                \"apr\": \"0.123198214616241136\",\n                \"blocks\": {\n                    \"signed\": 2552474,\n                    \"to-sign\": 2636624\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.975890261184362980\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.040323733335809066\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.701566660081143019\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.382464829983475513\",\n                        \"epoch\": 189\n                    },\n                    {\n                        \"apr\": \"0.417532328754149670\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.356208628220957264\",\n                        \"epoch\": 191\n                    },\n                    {\n                        \"apr\": \"0.035199170099636249\",\n                        \"epoch\": 192\n                    },\n                    {\n                        \"apr\": \"0.125129197191840545\",\n                        \"epoch\": 193\n                    },\n                    {\n                        \"apr\": \"0.151010453081291732\",\n                        \"epoch\": 194\n                    },\n                    {\n                        \"apr\": \"0.092079829790993314\",\n                        \"epoch\": 196\n                    },\n                    {\n                        \"apr\": \"0.098202509203598409\",\n                        \"epoch\": 197\n                    },\n                    {\n                        \"apr\": \"0.088848085165215030\",\n                        \"epoch\": 198\n                    },\n                    {\n                        \"apr\": \"0.100380313740238750\",\n                        \"epoch\": 199\n                    },\n                    {\n                        \"apr\": \"0.098712922638816239\",\n                        \"epoch\": 200\n                    },\n                    {\n                        \"apr\": \"0.115175287739227660\",\n                        \"epoch\": 201\n                    },\n                    {\n                        \"apr\": \"0.111915877134945977\",\n                        \"epoch\": 202\n                    },\n                    {\n                        \"apr\": \"0.108870261768036723\",\n                        \"epoch\": 203\n                    },\n                    {\n                        \"apr\": \"0.097758730575305710\",\n                        \"epoch\": 204\n                    },\n                    {\n                        \"apr\": \"0.095221581204061636\",\n                        \"epoch\": 205\n                    },\n                    {\n                        \"apr\": \"0.097445872028214715\",\n                        \"epoch\": 206\n                    },\n                    {\n                        \"apr\": \"0.099741172679661001\",\n                        \"epoch\": 207\n                    },\n                    {\n                        \"apr\": \"0.128671051907177118\",\n                        \"epoch\": 208\n                    },\n                    {\n                        \"apr\": \"0.131546409628029644\",\n                        \"epoch\": 209\n                    },\n                    {\n                        \"apr\": \"0.126332842206274510\",\n                        \"epoch\": 210\n                    },\n                    {\n                        \"apr\": \"0.126702996023936574\",\n                        \"epoch\": 211\n                    },\n                    {\n                        \"apr\": \"0.123198214616241136\",\n                        \"epoch\": 212\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 17464,\n                            \"to-sign\": 17479\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18278,\n                            \"to-sign\": 18283\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17649,\n                            \"to-sign\": 17663\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17283,\n                            \"to-sign\": 17299\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17741,\n                            \"to-sign\": 17761\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16848,\n                            \"to-sign\": 16924\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16191,\n                            \"to-sign\": 16249\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16782,\n                            \"to-sign\": 16805\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16764,\n                            \"to-sign\": 16789\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 609,\n                            \"to-sign\": 609\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51479,\n                            \"to-sign\": 51702\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 53052,\n                            \"to-sign\": 53170\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23153,\n                            \"to-sign\": 23229\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 224529,\n                            \"to-sign\": 225072\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 244373,\n                            \"to-sign\": 244874\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 260710,\n                            \"to-sign\": 262085\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 496156,\n                            \"to-sign\": 498231\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 601941,\n                            \"to-sign\": 655349\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 426813,\n                            \"to-sign\": 452284\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 9.31006008365412868646576e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 4.672913119823605740412e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0fc33b0fc2c20d5e2b734d87b4af21a7f135289f5d2d96a894b0207d23048969a781f432b6222d88b489b88715ddb58f\",\n                            \"earning-account\": \"one1ju6cn0dtfa3fahuelc6ppj8c2sg2xqn759zxcm\",\n                            \"effective-stake\": \"7480084855680723529411764.705882352941176470\",\n                            \"group-percent\": \"0.009186537169363500\",\n                            \"overall-percent\": \"0.002939691894196320\",\n                            \"raw-stake\": \"7929599721993950000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 4.672913119823605740412e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6eed55deb458e8fe98201411b574df054b0a056636bbe8553ce6ee32a548e8767bf76da0a2f4065768862805b490de13\",\n                            \"earning-account\": \"one1ju6cn0dtfa3fahuelc6ppj8c2sg2xqn759zxcm\",\n                            \"effective-stake\": \"7480084855680723529411764.705882352941176470\",\n                            \"group-percent\": \"0.009186537169363500\",\n                            \"overall-percent\": \"0.002939691894196320\",\n                            \"raw-stake\": \"7929599721993950000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.59323921479229e+25,\n            \"validator\": {\n                \"address\": \"one1ju6cn0dtfa3fahuelc6ppj8c2sg2xqn759zxcm\",\n                \"bls-public-keys\": [\n                    \"0fc33b0fc2c20d5e2b734d87b4af21a7f135289f5d2d96a894b0207d23048969a781f432b6222d88b489b88715ddb58f\"\n                ],\n                \"creation-height\": 3358936,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1ju6cn0dtfa3fahuelc6ppj8c2sg2xqn759zxcm\",\n                        \"reward\": 294291071444306933548,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 296339776335477207252,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0627615742e+22,\n                        \"delegator-address\": \"one1u2r0ee3t4gp255axsjlnv3swepaqu2rjkswftc\",\n                        \"reward\": 272695571691717997786,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.883e+22,\n                        \"delegator-address\": \"one1xrvqsydzs9he5rw0plnpq8xyp2hpu5t8a6snul\",\n                        \"reward\": 711001158601254598214,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lju2qtnf5cx0fs78xrhcwzz3sm0ymjhegxymmq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kcmct2rrvxhy0xalrjzgglcmmytdw26phzxg6v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s7s40ku4ms63066h34xwmm5j5k4jwk74gml5nx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.67101162302e+23,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 255221574855683272425,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dygg8ugl06pely2q3xqwkuhza9evdnyjesl6qy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8e+21,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 30174445775153780255,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.91906152251e+23,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 1.077380534324543491917e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12saruhnv9f63dqhuadjq3vhqm3nwyw2ac40uyz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.035325e+23,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 572509930650629588113,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 3.9362731609419215070031e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l9jy4x6f6dcr7hzge72099f5269gqupx9hnzzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1khk3l6vwtghj73an76xnanmdrnqej8uwvmjxrz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w5ezajeeh8v2vrg8naychljwx8wfl8930yw3dm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.70195e+24,\n                        \"delegator-address\": \"one1kjncp7r9er5cuvnxxwuw9xquwsgr4q6uqggr97\",\n                        \"reward\": 7.819946236562163292727e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qqd82sncewz6d3pqm9jr775m00w7v3cdpyymmr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.08500708029e+22,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 18928123309963809225,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.050176e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 360569909844709008260,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xmhf7erx9u3yrwzh6nnufxl3cejqshqtk94sk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.99e+23,\n                        \"delegator-address\": \"one197wwsy7fnkts6mj3258gysaeqq7qz8nqnyent0\",\n                        \"reward\": 524002435657394994357,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.119237299e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 41870458386497488681,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 17180743809576953457,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1y7e39h6z0c0jqx9vu2epx3v5d3d44nx7sqmjsg\",\n                        \"reward\": 212849714134371939451,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5000069e+23,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 207203036380043165081,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6e+22,\n                        \"delegator-address\": \"one1yms3yzl9d8jcgqdk0fx8hasn4k4zuaaw0rshu5\",\n                        \"reward\": 19966520302301812925,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1azvl4jf93ndfx8886xrumqmvmta9cv453xak2f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+23,\n                        \"delegator-address\": \"one1cny9ehjg06e29znh5478jpakfu7fey2kfdq9we\",\n                        \"reward\": 2.597001448365610924698e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one142w6su2shfgx8jhckcnakxkjzz63fj0tukdvyz\",\n                        \"reward\": 7361780595216746171,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fp2nnpwyjzy0j68j38p6x9vcp8e7zzem3nt9e9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w5qmgz9chjvct9hs6xwg23zhystjvzm5nucuzh\",\n                        \"reward\": 960597023617273572,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16ymzfqvxyhjr65tk94ql693398dh9tpyd6e9v4\",\n                        \"reward\": 129701771474238612579,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7171861578e+22,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 99436483070914714603,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14xfv2jv9fujjkg6t9qt7s2kz0ws290en8ngrsv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6e+22,\n                        \"delegator-address\": \"one1677w9z7hfsszerhd0767d47rekpuzh46xsvaj5\",\n                        \"reward\": 399511207613582300017,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gwdl55he6nh0n06xuhvkuupnlp28260ccsnn6n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wma490dp0qd5f085er2d0yj6apgajajv5j4xme\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2969552289e+22,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 45275700473796928781,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one195vyg8sq55ttxl0uygt4kpyg82rcrhfrs5vj49\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 6345334548331134683,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18zj55tkmgw78fmjagkfcaey9x5j7t8698nr2vm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.7e+21,\n                        \"delegator-address\": \"one19sdf30xtcpys95gwd2j8pxazt628am20m2vauw\",\n                        \"reward\": 65277567907102949917,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.01999991e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 64985902944622647636,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.408e+22,\n                        \"delegator-address\": \"one1tsjm7qc6lt9pl6ryzzss2wcexl7vfurfa2grnw\",\n                        \"reward\": 814541819288668458276,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 13830715052640972,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1whgae04dsds6q80vjg7l4wvv7mcv3zyfgmcdle\",\n                        \"reward\": 347451642613739,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one108acxe4v8jacnvzpvy5laufmhw0a5rd8d7zsjp\",\n                        \"reward\": 281604445565293843062,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 5085771374081401055,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dztpmj96q2f7rmu8gl8hne8k2z84s8tjmmcj4q\",\n                        \"reward\": 306448078400004632,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 4.24575e+21,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.4e+21,\n                        \"delegator-address\": \"one1mwhe2kjsxs3fvr8th39nhkgllcap4cplr5pdx3\",\n                        \"reward\": 9723266677602642761,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1572l5gau2d7gcestc7qaxdvcsa7hj2467tpf57\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+22,\n                        \"delegator-address\": \"one1emggc9549mcv259z3w6fe4ptwt89fy2rzqhc3c\",\n                        \"reward\": 45080089190330504268,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6308899134e+22,\n                        \"delegator-address\": \"one1upxnram79uhrf9ygflvdh8wwueqdgl64qzczsw\",\n                        \"reward\": 30668946974676597128,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rr5n6qvjxlyhrhnkzxtjslzffrp4trl3wtsuh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d2nafxk24ufu2rw3q96am8juun9jjct346rq2v\",\n                        \"reward\": 200637570556352536714,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7sx6j5pclehfmqvnsczfj6372lr6yx3v7zqae\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+23,\n                        \"delegator-address\": \"one1qtx776yews0t80k9ppe6d2qd76clnpp2tjs8wt\",\n                        \"reward\": 386283477260534549710,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.4578409425e+22,\n                        \"delegator-address\": \"one1l90q8v4v3erqv9ptuzhpuu6ywye99v7cc0c3q5\",\n                        \"reward\": 115063708179739853807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+21,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 16291462127604583786,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 545259306619720504732,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.989998e+21,\n                        \"delegator-address\": \"one1n2svngry0vw2880jexagzd33pdk5kwlwq6hrta\",\n                        \"reward\": 13115479970118961325,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vtulqgfjsjm2nqkdzs5u0g00jvh2tyhql5g07x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16jahlu6ejrtjtc8lsqkjwstg56dw64k9a0ft4e\",\n                        \"reward\": 9029917518307206458,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.12e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 3.332e+22,\n                        \"delegator-address\": \"one1xntq573g0866ph7lt8y85rwcjqcqc966xdckaa\",\n                        \"reward\": 12286453556847138195,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1ju2tg5mcqqz2n2tjq3l8ngfdcu47gg8mwxlus8\",\n                        \"reward\": 18437055157333624837,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.28e+21,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 471988612027742635,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.015e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"An original Foundational Node operator since the Harmony testnet in May 2019.\",\n                \"identity\": \"9a4dfda22a43\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.050000000000000000\",\n                \"max-total-delegation\": 8.88e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"🦄 FOUNDATIONAL NODE ☞ 0% fee ☞ 99.9% uptime\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"n/a\",\n                \"update-height\": 3546272,\n                \"website\": \"harmony.smartstake.io/val/9\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 104366,\n                    \"current-epoch-signing-percentage\": \"0.999291459211030257\",\n                    \"current-epoch-to-sign\": 104440\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"57866205636415656305700000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.118819867685412282\",\n                \"blocks\": {\n                    \"signed\": 1887731,\n                    \"to-sign\": 1890253\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121963735235506078\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121919850901745196\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.132744286054421794\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125227724654491370\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.148753131453644402\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124250855848718201\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123133060390953461\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.121032964938489560\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118015074576267772\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117044409214975212\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.120034624472009401\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115899677033819512\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119956447723716126\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119932134292418358\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120473640438234451\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117697394695349939\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120435043696361308\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121134604590582589\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120793041819230845\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120342987674078266\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119605376188658243\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121111983813617527\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.119705900342177112\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119814324300901947\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118276333276341810\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118835656161139234\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.119489865554138671\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.118174012834837667\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.119721798814021227\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118856539716223005\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118819867685412282\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 120816,\n                            \"to-sign\": 121970\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 125554,\n                            \"to-sign\": 125555\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 104559,\n                            \"to-sign\": 104583\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 102869,\n                            \"to-sign\": 102889\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 122448,\n                            \"to-sign\": 122490\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83956,\n                            \"to-sign\": 84288\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82450,\n                            \"to-sign\": 82584\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83276,\n                            \"to-sign\": 83296\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82726,\n                            \"to-sign\": 82727\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83475,\n                            \"to-sign\": 83477\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 68707,\n                            \"to-sign\": 68708\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 71269,\n                            \"to-sign\": 71279\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 63696,\n                            \"to-sign\": 63770\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 97176,\n                            \"to-sign\": 97186\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 113738,\n                            \"to-sign\": 113745\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 104250,\n                            \"to-sign\": 104253\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 200897,\n                            \"to-sign\": 200942\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 41530,\n                            \"to-sign\": 41693\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 29973,\n                            \"to-sign\": 30378\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 6.91002184437331640013672e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.581280933968869868092e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1bdbe548a54e3aeb6598f5618bba513efab205a98f3678c471d956538c74cc39a3070a95edd032671bf1332cd59a5990\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006370583282141211\",\n                            \"overall-percent\": \"0.002038586650285188\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.581280933968869868092e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b66e47b0a02dce01caac7f1425c7589be29096b790d4587302018fb25c7fbbeade90be7ad3fb0d714b5dd0bac49ebe14\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006370583282141211\",\n                            \"overall-percent\": \"0.002038586650285188\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.581280933968869868092e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"87201cd5b68b8a11bab717ee57c6ba8b586be721517d2b9a48cd5690065dbafc71b10dc85bdf39bf762394ef8add9f00\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006370583282141211\",\n                            \"overall-percent\": \"0.002038586650285188\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.54873996828437666885e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1f1eb7dd04d6c789c7a5b949063bba2978ee0c0be3a81e873f36ddd2e0b012256cd45d7218205bf44ce7113c01460795\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006043690261963754\",\n                            \"overall-percent\": \"0.001933980883828401\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.54874147750306435829e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"701b3e515eec515554ccd182d1654b5b9ab2f2420efcc8c22eb269b409a257ce1e12a3698b0d6955b420ec6dbf642b15\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006043690261963754\",\n                            \"overall-percent\": \"0.001933980883828401\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.54884788517767556997e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4b12f2255cde93a0ff6b2bac2965887dd46e96f554c943d760393b7973435128bb7d5c93ae2a17ca757071e4a4e98319\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006043690261963754\",\n                            \"overall-percent\": \"0.001933980883828401\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.538329756482233794638e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f5121d14baddd774e40ff8c39676b932c3828c2128b1431c5977c3b1c44f7b66d77119c49233589eecb75a6b85eab882\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006024947338774616\",\n                            \"overall-percent\": \"0.001927983148407877\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.539095499569210204084e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a8472c1cb4f6a1da3e227646ac5f52817ed91ab8b9177f7483f0d562eb64e9e801b0ed09ffa3be221d4998c0b2580102\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006024947338774616\",\n                            \"overall-percent\": \"0.001927983148407877\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592376910750361607183e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"75e991e1b581086ae2f97d47db63a07116e8d4f2b705beea1f1165f936f7d5e91d324ab0c10a4704a89e47d7f194ab97\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006242165012523966\",\n                            \"overall-percent\": \"0.001997492804007669\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592295947261362833683e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7961fd0c5713f9db3c6d8e8798673a2012df3d9ae24e868b88a8b2dbe7efae99e908a2445089b2b4909aaa62533aa513\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"group-percent\": \"0.006242165012523966\",\n                            \"overall-percent\": \"0.001997492804007669\",\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 7.54499089136918333334e+25,\n            \"validator\": {\n                \"address\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                \"bls-public-keys\": [\n                    \"75e991e1b581086ae2f97d47db63a07116e8d4f2b705beea1f1165f936f7d5e91d324ab0c10a4704a89e47d7f194ab97\",\n                    \"7961fd0c5713f9db3c6d8e8798673a2012df3d9ae24e868b88a8b2dbe7efae99e908a2445089b2b4909aaa62533aa513\",\n                    \"1f1eb7dd04d6c789c7a5b949063bba2978ee0c0be3a81e873f36ddd2e0b012256cd45d7218205bf44ce7113c01460795\",\n                    \"701b3e515eec515554ccd182d1654b5b9ab2f2420efcc8c22eb269b409a257ce1e12a3698b0d6955b420ec6dbf642b15\",\n                    \"4b12f2255cde93a0ff6b2bac2965887dd46e96f554c943d760393b7973435128bb7d5c93ae2a17ca757071e4a4e98319\",\n                    \"766a223652e189e354ab4173fbcf2e115b498e2ff15941d02c7494689096a0145b3161026013df63c94350d78fab2797\",\n                    \"cb254578627f2e238b4f5cd43763479cfe97daa9223c043b3fb989680a2665e908d5f41b3c689e63d31f7fdec151650f\"\n                ],\n                \"creation-height\": 3358940,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.082351117e+24,\n                        \"delegator-address\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                        \"reward\": 3.662783018579596904046e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 29537447735363270113,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.023484255238e+24,\n                        \"delegator-address\": \"one1vzaqsgzmy4g023dkynfdq7vqs4cxl2ru8jjec6\",\n                        \"reward\": 1.28468059887268458707e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16m5r7awa4y2z2cyage4cns4uejxx8rn0gw77ug\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0859622271832e+25,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 3.7129500518237342247073e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.44e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 12365533898363109187,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2e+21,\n                        \"delegator-address\": \"one19day69t6zzqrk3yr5086v9892c9ajvkw84fegv\",\n                        \"reward\": 7849181968379438497,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 29469373676407460562,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 10100322591152684621,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.318e+22,\n                        \"delegator-address\": \"one1u9amfs5zakjkh8gj2jwhjf8mk4jjnz2qx2lzwn\",\n                        \"reward\": 154792538838122521240,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.194213e+22,\n                        \"delegator-address\": \"one1ps9xghthhsw9p94gadvmgwmg86urlmu3uka97f\",\n                        \"reward\": 488924332154348708410,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+22,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 203715729570052179904,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.745749782e+21,\n                        \"delegator-address\": \"one1rsswq9k7yq47mv7mrpc28ngq7mrn0xhnhe7mgk\",\n                        \"reward\": 34211902267720995393,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0035e+22,\n                        \"delegator-address\": \"one149h38k3rt8m8gfaxxfn3zn43lqt6mzlvthcy5e\",\n                        \"reward\": 141655672164285316085,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.71942e+23,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 473265131658438905824,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.081939e+24,\n                        \"delegator-address\": \"one1la2fefj8hfwg33ww4l2qcsv2g7zkdxxp3gethz\",\n                        \"reward\": 1.558597173932532216558e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1utkxtz9mjja28lrtltf28w4jmuzqrn5j7hlat7\",\n                        \"reward\": 153657464849190150141,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05572468975e+23,\n                        \"delegator-address\": \"one15kyg8ghs4lk3njkauw2sy3luypsa3j6u5sydsy\",\n                        \"reward\": 388549681153331796922,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 49975018341605085,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8196273816e+22,\n                        \"delegator-address\": \"one1emggc9549mcv259z3w6fe4ptwt89fy2rzqhc3c\",\n                        \"reward\": 43837673232062747733,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+23,\n                        \"delegator-address\": \"one1eq3ratczrnpct6hpn384rvy9njyzq6cparn2pp\",\n                        \"reward\": 1.921206847583440710685e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                        \"reward\": 85568975804389450032,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.758154578e+22,\n                        \"delegator-address\": \"one10umgrh373mm7ch9u62jxg6lx9z0736w5gxhwmc\",\n                        \"reward\": 343680329614141969510,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.265e+22,\n                        \"delegator-address\": \"one1m5g77qw0qmxrta42vy9g9l2s7zdw6df8xu29pz\",\n                        \"reward\": 131409684943203740278,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.199999e+24,\n                        \"delegator-address\": \"one1mcr7ue2mdqm63x4r9v6n79lgf8zxr6djamr7gt\",\n                        \"reward\": 4.1638006899801155769533e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5138155008e+22,\n                        \"delegator-address\": \"one1smvxmegse8k3ya86mdxe62gwjmadmvqz6q0qwp\",\n                        \"reward\": 70075269698312449356,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1h3szew3asdd32u7mzd9upjg78k2afdz2cl2fxx\",\n                        \"reward\": 145263982055729890068,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.902982928449e+24,\n                        \"delegator-address\": \"one1u6fmwccwgh2e0h0qvj59gvute6j58j2g3eqz2n\",\n                        \"reward\": 2.5045116561842568266212e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12qtcvz4yd5qa7dfdmqnxmpl75ktgnhs6jp6e72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.015e+22,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 92725282441854548934,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2364987096e+22,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 108340075575527029903,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 59208107384803047012,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19mqs8kpuu3vzytsq5gmxauxv8g6yf4j93mll7j\",\n                        \"reward\": 15836415213798687575,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 7.9971999955e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.7469e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 100009647642854020529,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18zj55tkmgw78fmjagkfcaey9x5j7t8698nr2vm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+22,\n                        \"delegator-address\": \"one1fsqyatysv7y3dg7lg0h39kmq2qygxwx3lmm83m\",\n                        \"reward\": 27139957840085845276,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5049e+23,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 1.02179981988572566079e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.62e+22,\n                        \"delegator-address\": \"one1urmj08g9zu4hpmqdzn3uvt6fwecxm7amzypqy7\",\n                        \"reward\": 569371256214313681291,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8dt4hz56jzksjaw7vayf8d4n5k5tj5heagnpw\",\n                        \"reward\": 672551981254290472536,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5385623582e+22,\n                        \"delegator-address\": \"one1qch57lkuudl850ner7xsytezwclzhnzztnkazr\",\n                        \"reward\": 33052034921599636425,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.8707507853e+22,\n                        \"delegator-address\": \"one1svdlrmpcdxsuy7j80uncscgxuqz38kkpgmddcl\",\n                        \"reward\": 921856577232686427275,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1j6dhuczyfxz677l33j0kkeez23whf8jpjkyftw\",\n                        \"reward\": 45781539067239667473,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 43422701840110609869,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lcw9gkm4xuwrpqyjfqgz4zf5fduxrrqexnp4hf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 20839823227985350748,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1sdp4lyruf8ruk2x3xyyremdaq2ck0xxw9n53x5\",\n                        \"reward\": 56877293370680758569,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4741e+22,\n                        \"delegator-address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n                        \"reward\": 30725808289431748017,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00704e+24,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 514562246884739945639,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 1.124618776248870334431e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9969994e+21,\n                        \"delegator-address\": \"one1mwhe2kjsxs3fvr8th39nhkgllcap4cplr5pdx3\",\n                        \"reward\": 46200008008661639440,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2966e+22,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 59821883065276703166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one135f4zp70a6dsv759rx72f7t49ev8hmqn67e4ta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 113475559291561737101,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one122uq95m7t63rcvy6jd8jwgf96x8hfv63q9m9hh\",\n                        \"reward\": 4192213380097035533,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.946e+21,\n                        \"delegator-address\": \"one1qnn5c20aymv7v3hjmewvmpewc0w8sy8hceqqaq\",\n                        \"reward\": 74165795791373362473,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1657479818e+22,\n                        \"delegator-address\": \"one157rwjephc5y9vt3wc685uqlfy62amjf0ukavcw\",\n                        \"reward\": 8531690908135827696,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 127719880871445722,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 35767666821941158538,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.336e+21,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 326049931127145063,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 338543935122189493021,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4974e+22,\n                        \"delegator-address\": \"one1ajwetv5tafl047sdt776lhe2v7mysy6tajcejh\",\n                        \"reward\": 52427868818619311477,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.066e+22,\n                        \"delegator-address\": \"one1jfft9hs3ed4uu38yag0y2wzp70vmpcga9xzdq2\",\n                        \"reward\": 25934342442553342910,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.24e+22,\n                        \"delegator-address\": \"one1gu6ftc8cva77j7n5zevgpdshk8jmk0vhhs0w2c\",\n                        \"reward\": 18725703091032341608,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2547971909e+22,\n                        \"delegator-address\": \"one169mgllpxsz6h5dt5nzgxpy7qtkswll5qade38y\",\n                        \"reward\": 1114056646577231071,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.03399999772e+23,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 276072947033368546785,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9116e+22,\n                        \"delegator-address\": \"one1ex8lpdj9tzu9wpfgupea04z3m2nh9rqyjefnx5\",\n                        \"reward\": 4785312678247662424,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.063e+22,\n                        \"delegator-address\": \"one1ks0jw0r5scn9su47n3fc66qt83l9s6a7up3j94\",\n                        \"reward\": 112725973363466620141,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one10steweqwvh3gk4cu9v85z53ndjrt0c40e9pfsj\",\n                        \"reward\": 104923126313072453035,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.323e+22,\n                        \"delegator-address\": \"one1an6ee2etedplc7sj7p45jy2s08alx35lwaye5q\",\n                        \"reward\": 90236837675681217629,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.193e+21,\n                        \"delegator-address\": \"one1q8y3kg3ag6mwedj5haqs9gv7jmpfjxrzca9h6m\",\n                        \"reward\": 13791501917321517020,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dnh7wjg8mkvru3fantlqcazsrw3ma6ucdkqvps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.114e+23,\n                        \"delegator-address\": \"one1dp7axzg2lr46p5j4upvn4f0k9pw3kc3ull2q6u\",\n                        \"reward\": 2.241794051649750598312e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1xjq4xf4uhd9fyszvm2aw63j4hvhcddn0aq4hg7\",\n                        \"reward\": 2270544566390243759,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fqxnu6yy0mfl38uctd562atrpfed6s2ayynlfc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0000482951e+22,\n                        \"delegator-address\": \"one19w8klanmgjqw4waxuv5y2ncwfz5d6f3md74t8x\",\n                        \"reward\": 19847969484870753880,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1rfjslpy648xltxuw272v8q5w4lthr9m8ncpgfr\",\n                        \"reward\": 219662383572372579250,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.48e+22,\n                        \"delegator-address\": \"one1jrvn0x6xwfl35cazxp6fpxl2xx0qnxsawl5r7f\",\n                        \"reward\": 23055673306441929985,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sx2lu574e3xxqp67zm6x3hqds9ppnkmzf76fkc\",\n                        \"reward\": 1820044267894932201,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.19869978e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zr9pqt6nhls5q4qesnl2v609umrqrh9hs2kdqh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.17e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 94809706405077231584,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.8e+21,\n                        \"delegator-address\": \"one1q8n0et2teszhw9dfuup07cyzs5ekemezhwdpfd\",\n                        \"reward\": 44609900483973812104,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.764718897e+21,\n                        \"delegator-address\": \"one1w5qfpepheyt0lsfynd3cuarqa8ytra9mrplavw\",\n                        \"reward\": 18713984513379941161,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.55658e+23,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 8835602084489814316,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.03449737528e+23,\n                        \"delegator-address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                        \"reward\": 2.909179671724128471727e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.04e+21,\n                        \"delegator-address\": \"one1gclsr6czt25s56e7dkpy7cn22096xtqwjqupcm\",\n                        \"reward\": 4878632923219515387,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8066e+22,\n                        \"delegator-address\": \"one13xnd5t6sns2qd6qh9rp60pw3lv47q929e9sgtq\",\n                        \"reward\": 3169714392445619436,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+21,\n                        \"delegator-address\": \"one14ew2n5677rufu6e8n32j8pmvkgxt7gug3zajgy\",\n                        \"reward\": 7858242145842449785,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.178e+22,\n                        \"delegator-address\": \"one1acyxv69xjgunv3z5ymnjt2w70q7rdardr4a3uz\",\n                        \"reward\": 134596154002196641607,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.15e+22,\n                        \"delegator-address\": \"one1kx5t0efz6deqcggtrvjxg58llr2agp34y3jvzq\",\n                        \"reward\": 81519555683424591490,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 121636095180511770546,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4972912e+23,\n                        \"delegator-address\": \"one18pqt2455nl3n0qs8v5l2zfl7ez5dygwy3q8tm8\",\n                        \"reward\": 224982512611389716557,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vrpmaqnzs4pzhyqyhv4rxf2952zzjvrsqjpjex\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 26249581881684624067,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1mv3ta8wgdeehrsja9pv7474chmu62dyy7cfqg5\",\n                        \"reward\": 140523928242154715809,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1jm9erjgeudx44jxvpyr09u2wevfrjykuvch5kf\",\n                        \"reward\": 291430746794441996424,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4985e+22,\n                        \"delegator-address\": \"one1rgl6f9qgr40a2pv95jey22pstdfmq9gsak8u9w\",\n                        \"reward\": 118152874881702578296,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hlatxd4q8ld78djaerr4hhv0g6vcraxxluks97\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.13556835743e+23,\n                        \"delegator-address\": \"one1l85psy64zvjjqwz2j6224tekjsslk37ecdggfc\",\n                        \"reward\": 934489076025816565865,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1e+23,\n                        \"delegator-address\": \"one17zh0n602sshq3akqfrxsfpkyj7udmkx4glwy2u\",\n                        \"reward\": 22172208299314058770,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.174e+23,\n                        \"delegator-address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n                        \"reward\": 262429105884695208861,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8e+22,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 151652160749462610043,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.233e+21,\n                        \"delegator-address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                        \"reward\": 21408810826568167420,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yy96kgumhfw6tjwdkxtspju4qf0sc9ay4tf50s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one108acxe4v8jacnvzpvy5laufmhw0a5rd8d7zsjp\",\n                        \"reward\": 394311398482994874814,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9764222751e+22,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 27305064048399147338,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+24,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 3.281446748312751233229e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 139620564264666787379,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17uudye02ffxhlpqnvvm8fkc3wyqsgn320gg86k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.23e+21,\n                        \"delegator-address\": \"one1ausldvnqxmarafdcswmp5drtj85ak35qw4xud5\",\n                        \"reward\": 33358744311661389103,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.262e+21,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 336387387695066979,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.02628e+23,\n                        \"delegator-address\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                        \"reward\": 53315107918531362664,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8884e+22,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 11482833062675892766,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 88171418650814837842,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.15e+22,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 23188810047212927137,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one1axv7pm9duu4qygc0krwr0z4p4dzedlh5qlpqrs\",\n                        \"reward\": 11121267757166463975,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.7124376709e+22,\n                        \"delegator-address\": \"one143tc4hfttqrtun6nl3x78nqcm3pnt9m8jj7mtz\",\n                        \"reward\": 687082696441700926838,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one15tjsjcff0mcxc76qjrspmc8ml53yg9px3d2qgp\",\n                        \"reward\": 16265839678572217829,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 112817832420637869686,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3e+22,\n                        \"delegator-address\": \"one1ckyzz90hwkcjv9ge2rc8qk5g42kpt2vcha7pek\",\n                        \"reward\": 260245522998776479205,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.25e+23,\n                        \"delegator-address\": \"one1572l5gau2d7gcestc7qaxdvcsa7hj2467tpf57\",\n                        \"reward\": 167625428080740811751,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nwjw8xkvtxdrlc65vtjnqc73czz6vdvp33d78w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.14446578139e+23,\n                        \"delegator-address\": \"one15y6dh6h4xm6lz9h3pf75v5jeekfwswkftr5jj8\",\n                        \"reward\": 649067881817024339453,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1khhv78nax8qgyygutvxmfawz3t4taztqv4mrdm\",\n                        \"reward\": 10260258245696882,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1782xv62cx49zdhr474lt4emc97xnvrpt8d6yrx\",\n                        \"reward\": 46722501748247339357,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1yg5cuu5m8l92gsrkxm753vxe74qax3u2m620s5\",\n                        \"reward\": 59525268950271881850,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 5.1646288695e+22,\n                        \"delegator-address\": \"one1rf732ne5z74ahp79c39jpezz07qzuwz2gtwgyn\",\n                        \"reward\": 178775025052478850537,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.302535e+24,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 5.032528403812056405695e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 242987001094882818795,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.01884e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 167494563571755109450,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.580816e+24,\n                        \"delegator-address\": \"one19verfm5jyu9ys6s4nrzm6a8888kzdlvmqpenh4\",\n                        \"reward\": 831996292919309923968,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 20541571837310614104,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.39661e+23,\n                        \"delegator-address\": \"one1drvtd8ry50teatkmucae2tajg7ngjr7cdk02ul\",\n                        \"reward\": 662483112606076980393,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12yctampe4hqeug668v48kd2tvm85j0u0lk9lh9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.041469e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 459670058315794322205,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 7153533364388252839,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+23,\n                        \"delegator-address\": \"one1983tu4snhurnned0n25jn55s4v7rmkknvqfu8g\",\n                        \"reward\": 398109539236380038066,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1j9g7uyg8kx5pkh82hpmuahcd6a3k347fdrg396\",\n                        \"reward\": 211657343504886433329,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.7e+22,\n                        \"delegator-address\": \"one1z9uyar8g43em3ejdm779qpy5sc2uaxcfayvr7m\",\n                        \"reward\": 336272533581372625858,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+24,\n                        \"delegator-address\": \"one1wvaxshh8c7kxda02c5pszvme564274x3uaywek\",\n                        \"reward\": 565353509309289074077,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1qy9mum6mtp5j5u0y3ekaqn8quahvsezavxwu32\",\n                        \"reward\": 56845069482959254182,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sr39wfrc3ww0urs2p8cwy9a3vjpxlsg36apgyv\",\n                        \"reward\": 155295015662843022,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zf9gchjhtjnk95h6z7cf0duu76wllfmn44mr8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.369914776192e+24,\n                        \"delegator-address\": \"one15v8eg400r3fg8789zzpt987e85lkdn7u0h9umf\",\n                        \"reward\": 1.720865724380235018755e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1elgrh05nuesu9chyjlev8rlfexfsq4a87xtp2r\",\n                        \"reward\": 8506163113474200254,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.50005e+23,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 1.512904719225708565661e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 18749316589693432355,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nx3rcxupc465lyduzn2z3p0e6kvg3pfkrndttr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one17gvzdt059427y0razhx36ej86f5sdv3cgxh7fq\",\n                        \"reward\": 7690768930791743968,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.4715e+22,\n                        \"delegator-address\": \"one1yas7flqkssv9dgtlczy4l9rcqnpvq927v26jja\",\n                        \"reward\": 417899625156506091625,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x2t20n2rs5pxjg24duh8hkxq9fx9tk684qe4ax\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1yjf47da7ymljt09x8w44d8as3csvqp8czk3suj\",\n                        \"reward\": 64575388264931673114,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.72e+23,\n                        \"delegator-address\": \"one1dqm6nv6vfa8ks7mnprnchzsk6zggk9zcs44al7\",\n                        \"reward\": 761991946770659931480,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.22e+21,\n                        \"delegator-address\": \"one1j0nmr445gf35lskevtac7khtudt5vah27af2c9\",\n                        \"reward\": 5577473077609350541,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1muus26kz85zfn8lavcgxlt2n9zcxeza3d9tl4m\",\n                        \"reward\": 968630823973977096945,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17td8n6wa7l57gj727gl4u3z7hn7mpyftj9fhef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one10ayjz83f0lrawxtpcryc4xrpjhtr4a8p9aure0\",\n                        \"reward\": 289039516294086116006,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.004411123e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 4426588082531812724,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2e+22,\n                        \"delegator-address\": \"one1wyu4my3uhm8xmyacnm5k94a4psc532kehzn7aq\",\n                        \"reward\": 242793193687032324206,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one1ps4gky30d2y60q59ydu72l7dtch6zvvtmu6x0z\",\n                        \"reward\": 5213591119988193063,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one16xrctvk782mc4gx49nxl69789mu3qluj7zhtzs\",\n                        \"reward\": 4255365656158261770,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 3711216626431205329,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5189333333333334e+21,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 2149147656434695253,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.645e+21,\n                        \"delegator-address\": \"one162lm56fmu60u4hxqx23ez7fwjythhs8y8c09ds\",\n                        \"reward\": 32632561389602359449,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.85147e+23,\n                        \"delegator-address\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                        \"reward\": 583894427164125988,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+21,\n                        \"delegator-address\": \"one1vlva5q8jhmuuhfxl7knhyy0vxctpk0v46fs9n9\",\n                        \"reward\": 26013556466467690322,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 79156721644514314898,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.999e+22,\n                        \"delegator-address\": \"one1ynw79cnv4epyxqhg7w5qn50fxtgkezwdltrx03\",\n                        \"reward\": 173365901873192856381,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.065921e+24,\n                        \"delegator-address\": \"one16yvnyrac2nfaapm8tyraesa7khtg3d9tr786pv\",\n                        \"reward\": 1.701445424196323718555e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.54763687e+21,\n                        \"delegator-address\": \"one1fxtypxnzz0vll0vtpea2m8h9utx2vpqjjsmp3n\",\n                        \"reward\": 28125387374252285995,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0fzq4shcj6t9mgp9whjd2wwjs5cum9qlq8x3d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kj6jtey9esdpwv4qpqsgldzqckpqe6padlp04k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.233e+21,\n                        \"delegator-address\": \"one1jlh0wxlpwkzxaqk536uqukkpqvczgcw57t0c5k\",\n                        \"reward\": 30250875775339048974,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1te2tfurcvk678g9j5u920l72jdz58fr0lrkpsv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one19jvw9uruqem0hehduv95km63947p4cvxfgnsg0\",\n                        \"reward\": 7963425431934466248,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+21,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 2218604435235977849,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1l6v5djd7ss7axpfxgr9rq2v2chp3trnvhzl7aq\",\n                        \"reward\": 11332616208776658395,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.03e+23,\n                        \"delegator-address\": \"one1g4upvdt9xcnkc9mr5t0nf6pvm8ez7vu5gqk0c3\",\n                        \"reward\": 2.580278787913920344829e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.556e+23,\n                        \"delegator-address\": \"one105nyzvqzrxlfa3h67najs8yr3q0vjmrpwh7d0c\",\n                        \"reward\": 112550252957747616480,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.2297e+22,\n                        \"delegator-address\": \"one19qh6s6258xn27pstyxul6cg9nzq33l77dn3tx4\",\n                        \"reward\": 87178008451690350596,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+23,\n                        \"delegator-address\": \"one165stpdzl6c6pwdkt9f5xrad063e00symwyznd6\",\n                        \"reward\": 616671992411174030657,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.08944339079e+23,\n                        \"delegator-address\": \"one18cj3m04q7zwk27v2erw3ss5dakyh6xzc0kl8pn\",\n                        \"reward\": 69560894160632091151,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.78e+22,\n                        \"delegator-address\": \"one1wx7e8m39hls5m9vcdygkr00gu74trys5de5npt\",\n                        \"reward\": 91473012207657565372,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1h2kljdu542mrg6zjv33w9nfwt3lpxnzhn6dscz\",\n                        \"reward\": 5138933270093126527,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vcnek4wft94u8hyqnpgs8k7hxffh3ggjtgl72a\",\n                        \"reward\": 28534085780540214379,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 3e+23,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.84e+23,\n                        \"delegator-address\": \"one1l672kfy4fpvkmmg6d05unv8ln6sdq6lwq980lk\",\n                        \"reward\": 136799634759652228378,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2052e+23,\n                        \"delegator-address\": \"one1f7rrg8hraq6m9h6d5l3rp6y7kmvsgq4r5t7anz\",\n                        \"reward\": 16362453759207409014,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0247e+22,\n                        \"delegator-address\": \"one1tzjapdswlu93wr0mjul2vggs8x5mqqeelk2pt7\",\n                        \"reward\": 12073826922317122793,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.21e+21,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 5488715489823892060,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4410059167e+22,\n                        \"delegator-address\": \"one16pzrzly843qum2vdjdj7cua0eawxe4y7yc0m0g\",\n                        \"reward\": 246811020291036034467,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1cn93rndj40fsdstmzs4sv62ufgch2g52y8lkrw\",\n                        \"reward\": 9248079503112436908,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+23,\n                        \"delegator-address\": \"one1lnlt7l5930ut590ezlul7hmz6xhg7a64kf475p\",\n                        \"reward\": 544335420478413996650,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.6e+21,\n                        \"delegator-address\": \"one17pddfz8pkfy74ktn0w3g8s5rs6rdanhx2x6q5n\",\n                        \"reward\": 29938448126312826089,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h3hrez2c4urd40mzn4en7x8vsnvy0m984fgmry\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1963vpvuj9x4l5defkk4dkx8de7lutnvdr8hvdz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.560365e+21,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 27097675283646819710,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pzgdvkce57c323l55l8nwkr6acrswtezlpwsgs\",\n                        \"reward\": 138583865847067684,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.46e+22,\n                        \"delegator-address\": \"one13k7vlreqgy80w4kvkqknpgsvp2ux92lwf0kssa\",\n                        \"reward\": 428323719156155575700,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uclaccq744v8j9xzqhdwxncx0paduaw5ymgpz9\",\n                        \"reward\": 119528479457480101,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.155e+21,\n                        \"delegator-address\": \"one1fwlnqxr49vfeg9sxaxjn4xlgcu7drglm57qpdn\",\n                        \"reward\": 4565462544487665111,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.611939e+24,\n                        \"delegator-address\": \"one173aj6q5daans2nklgu5phdezfaeelnqp29jwky\",\n                        \"reward\": 2.695920632803781520899e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 3952781423798974667,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0434051727e+22,\n                        \"delegator-address\": \"one1s7uz9fdnsedu5ljxf7nw5tewg52s2d9z34clnm\",\n                        \"reward\": 21297289485098683883,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8475e+22,\n                        \"delegator-address\": \"one1svw5m8w4mztmp37l7p72tkglqvfvmfqluddjcx\",\n                        \"reward\": 405030574966009502,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.000007305875e+23,\n                        \"delegator-address\": \"one1vh2pxsm52m73k9vedcppmx9jgrdawevkfge9er\",\n                        \"reward\": 38985623271915541811,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1yxfylrfm3r2vee07kynwjc605nq5nu2suff4me\",\n                        \"reward\": 399256142678389846000,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4523645035e+22,\n                        \"delegator-address\": \"one1l8p7ytcsq2c97t75a5er6kqedw0qddgyjpd7eg\",\n                        \"reward\": 83444878383387971154,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+22,\n                        \"delegator-address\": \"one1ewhakak5wfhjlk5aulejksp5eapqpg2pm27qvt\",\n                        \"reward\": 114630661290169921776,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.89404595e+22,\n                        \"delegator-address\": \"one1km7cvmy6da8l7cj22htqtm9phs85auajepe8kv\",\n                        \"reward\": 391090010373733372911,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.396e+21,\n                        \"delegator-address\": \"one1hy2mkkn4av7mfnwc7gn5ak3trcnq2mrg80297t\",\n                        \"reward\": 390710968797940379,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.25e+22,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 39596827581338095361,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3e+22,\n                        \"delegator-address\": \"one1xvyfjz4ypmcwqxvd7q28xp3jwv5xy7wa85jr4n\",\n                        \"reward\": 169969601223355367773,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.542293556063e+24,\n                        \"delegator-address\": \"one1ga0r42vuw995ct96anzemx896an4dvwtu4snql\",\n                        \"reward\": 192598293986436607009,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.100072602e+21,\n                        \"delegator-address\": \"one1870rta9syx7m8lpqqnxlu9aherka7utlx5hqvt\",\n                        \"reward\": 16217567495168200311,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7sx6j5pclehfmqvnsczfj6372lr6yx3v7zqae\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10z6ssedgr9a46ycyy24m4czy35qmjthcxft8z9\",\n                        \"reward\": 202176720239732982,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1482e+23,\n                        \"delegator-address\": \"one1m30dzxrjg3kfmadzppan0y5lxvmenm4w0tc9yq\",\n                        \"reward\": 453858363080596669683,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1gg8p84y09svpxa5xlqc36v4epwyjv8mk0cmrj5\",\n                        \"reward\": 3952781423798974667,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 8536426189572708052,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one1jfswdzr7cruvpyp2t2ed5znun6uvku7ynqzq22\",\n                        \"reward\": 16467392188588374720,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.915e+23,\n                        \"delegator-address\": \"one1qka5ahyct3k4hc6gqujedyj9xq3d68nj0ws4st\",\n                        \"reward\": 363587439945920000631,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                        \"reward\": 9793738496958484243,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.818e+22,\n                        \"delegator-address\": \"one12ql0r53jkrpv99h7eqhwy9fd3uaq9lcwdj4zeq\",\n                        \"reward\": 61560936344653395158,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one14m8mtlzu6gk9557ya4nv004lew0ve2tf3kxhzp\",\n                        \"reward\": 29114297157618782656,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l90q8v4v3erqv9ptuzhpuu6ywye99v7cc0c3q5\",\n                        \"reward\": 10720187683424605002,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.012389e+23,\n                        \"delegator-address\": \"one19u0l4vvzhqntlyefjgtxlcmnml99et7jk5nm86\",\n                        \"reward\": 133556813646629832300,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0303172e+23,\n                        \"delegator-address\": \"one16cje0z4pswgck88eprtrd6v04jdy7n6vpcue3x\",\n                        \"reward\": 348884992101218372732,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0073e+23,\n                        \"delegator-address\": \"one16feu33uzfjkn9tvqzaffjs08p4aztdltdukr9g\",\n                        \"reward\": 341090930582889784772,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4007e+21,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 8129226616205215753,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.95e+22,\n                        \"delegator-address\": \"one17yk3vcj47jdm04p3uq2yqpm4sp57vjv9utlh8t\",\n                        \"reward\": 99892608480048070863,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.347e+22,\n                        \"delegator-address\": \"one1hdf03n7fdms7rakkekse7atftnl42vm299pcap\",\n                        \"reward\": 16172920178197742716,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one18prt8uam55vsy23j403zykx3uvxs6f7xrs4g56\",\n                        \"reward\": 33861901179677225066,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+22,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 53568424990231552675,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.7548e+22,\n                        \"delegator-address\": \"one1t29eh6egv870g44dwzx76d7awrwc04u4acmlsd\",\n                        \"reward\": 217498084414443380206,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.24073794491e+23,\n                        \"delegator-address\": \"one1df49l0afjgltkaheussp8e7y708ac9zuyfpfle\",\n                        \"reward\": 1.038022218915177234905e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0134e+23,\n                        \"delegator-address\": \"one1xuqzd8u0950vkfufylr2e8d4p5ud789x3alzf6\",\n                        \"reward\": 74310339580255954820,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+22,\n                        \"delegator-address\": \"one123fdvcj5dk4l55jz990fukssq7sryvt7v9zdce\",\n                        \"reward\": 66291349865117151138,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.058696272e+21,\n                        \"delegator-address\": \"one1wtel9v7gdfe6w3d8dnxjgts6gzvz3neqxcwhga\",\n                        \"reward\": 5686406451381921850,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.37e+24,\n                        \"delegator-address\": \"one1khau8lyy2hqesvve6wp33ful5d3yysuemy97w6\",\n                        \"reward\": 684815268746500287859,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.565e+21,\n                        \"delegator-address\": \"one1j3frzp0l0ex0zhp4ft7w6kp9n8rmnj5962gasr\",\n                        \"reward\": 5987233593519123753,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+23,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 37787871972795161895,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2e+22,\n                        \"delegator-address\": \"one1xhguj2npkujvlkgmvw6ez4j0w4wn2qaeg5d5mn\",\n                        \"reward\": 87519209779332224002,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9241e+22,\n                        \"delegator-address\": \"one10dc350yl5g9sqlfkphcstq4rhdzmhnyxa5mn0e\",\n                        \"reward\": 85648784196614395308,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.999e+22,\n                        \"delegator-address\": \"one168d7cx7r3f3el9ytytmz04vpmnlv7a7mpyqsf4\",\n                        \"reward\": 196415333193683467971,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1kh5pn90gclnqwm2hwe7d44nzywes4r7rxjmuah\",\n                        \"reward\": 18966254972314748536,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one134ujy0hvfu4eksfprrpawyn6szkmg74cdd6zwf\",\n                        \"reward\": 21826351060527022758,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.21e+21,\n                        \"delegator-address\": \"one1643ly0hpr2kssjsgpmhtrrq8hghag42xl560dv\",\n                        \"reward\": 2640988478323735647,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.201901975e+21,\n                        \"delegator-address\": \"one1ft9sknz8cuq5sc4p9nhvuyysu2ejhsznjqntv2\",\n                        \"reward\": 15719124080985342823,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 1.091317553026355233155e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one14x79dn9qunnputr3n0z3594ve7lla77vc3wjrr\",\n                        \"reward\": 983134798700703056176,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0462e+22,\n                        \"delegator-address\": \"one1u8pu8pwfh7q7x8e70ptnztwdk6n505adm42yva\",\n                        \"reward\": 9907788584885218068,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.331e+21,\n                        \"delegator-address\": \"one16lexpnvm40w7dj7u328stxdnxyzv4n6ypd9qum\",\n                        \"reward\": 2131994660927332732,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.35e+21,\n                        \"delegator-address\": \"one180mfv4dneefp9g74duxhspjvkmcjffstd0sj6q\",\n                        \"reward\": 6967826277260836401,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5201e+22,\n                        \"delegator-address\": \"one1nrd84ldj3ldtdwz5ktrcqvvekuavpeypwz3lpe\",\n                        \"reward\": 40366940232931162227,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yzw0t2u950des2ht08n0secrpaqpmvg7pkmqtj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.699e+21,\n                        \"delegator-address\": \"one1u6fkwz2vmaaaxttsgn49r3fsyxcckyysrsme8r\",\n                        \"reward\": 2721456745992228293,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1q22gqh06q0ct8h23ey3f5crj5wc2ps9avvf8ax\",\n                        \"reward\": 32035982883957968296,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+21,\n                        \"delegator-address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n                        \"reward\": 7208096148890554708,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4793e+23,\n                        \"delegator-address\": \"one1vuw02s26lxyy8w9k3y9crfsxkq50hfs045s9yk\",\n                        \"reward\": 73722427297888905131,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one10zsqhjwjwq0wuda38f4y3d7wdymfkcrfkmezqz\",\n                        \"reward\": 6407196576791577902,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+25,\n                        \"delegator-address\": \"one1z62wq6ucttx2ksj5v3s0vk0hup7xg0yez8qkyw\",\n                        \"reward\": 882137690371581378117,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9277e+22,\n                        \"delegator-address\": \"one10zsqm4mk7gc3n4z6xtywr2am0jnmq283lvwrlw\",\n                        \"reward\": 78931856428639786169,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one10utt7kd7jnjmcyq50an7d32jr5exdfzdps39lm\",\n                        \"reward\": 1536554621325315762,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.02e+21,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 1044857142501164024,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1s8gms2ryuzghc3v0zqcasyfx4j2pkmtuskwgn3\",\n                        \"reward\": 1024369747550167701,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.45e+23,\n                        \"delegator-address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n                        \"reward\": 353407562904818103660,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.17573513487e+23,\n                        \"delegator-address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n                        \"reward\": 530186649349346919203,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6347265567e+22,\n                        \"delegator-address\": \"one1qup2xu4zj2m7aeld7z7cjkcw8fpspfaprs4tc4\",\n                        \"reward\": 14760793183805112558,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.995e+21,\n                        \"delegator-address\": \"one1x735wv6fqlkfd6n6s27h7td3x6t8qhkpzkevxm\",\n                        \"reward\": 2043617646362646717,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one12kkwq0tg6u67p8kp9hgsx5yqlatzmm3vwlfvvs\",\n                        \"reward\": 47364123882865935021,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+22,\n                        \"delegator-address\": \"one1tk90nrhjww9dw46vvm6gh3rljrweckcxf76jre\",\n                        \"reward\": 23208420702604268489,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1kf33vtpamnr5xraq8lf88rnkeagf72payxmulf\",\n                        \"reward\": 33154886718006142786,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2e+22,\n                        \"delegator-address\": \"one14xvqeuw9v6mqarw5uathtys6wc3r228sdyp7hg\",\n                        \"reward\": 4478141697236869160,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0554443383e+22,\n                        \"delegator-address\": \"one1zn5axvgpx23t606xs0t59qf8xfc4fmavkh4ffc\",\n                        \"reward\": 28681081580504070990,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.39066e+23,\n                        \"delegator-address\": \"one1s4604lg40q9tvzaaf3wp9rtr3txzl2796p6dgf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19zhpgyhd7qlcu09yswqqqdq9lkajwzqntz98rc\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.5e+23,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.021e+21,\n                        \"delegator-address\": \"one19h2v4fe9hggd6w77cv36qyss0qkg073xa88srh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.49599992e+22,\n                        \"delegator-address\": \"one1gnsker2z6sdepd0a9xm644tlvc4m2x9kgdd2ns\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+21,\n                        \"delegator-address\": \"one1axx0khq6c7sf8y5qed70yengk0elmqezgs7sjd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.068e+21,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1qn9jwx2mrj7jx3tzls7ejhtc2n8k9r408u53gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.491974716315e+24,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"We are a team fully dedicated to the best DPoS. We offer our services across a variety of protocols, including Harmony, Tezos, IoTeX and Icon\",\n                \"identity\": \"Multi-protocol validator with over 5 years of experience\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.250000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"StakingTeam\",\n                \"rate\": \"0.025000000000000000\",\n                \"security-contact\": \"https://t.me/stakingteam\",\n                \"update-height\": 3620850,\n                \"website\": \"https://stakingteam.com/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 13555,\n                    \"current-epoch-signing-percentage\": \"0.996544625790324952\",\n                    \"current-epoch-to-sign\": 13602\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"11568743170613593221500000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.115528059048016528\",\n                \"blocks\": {\n                    \"signed\": 517970,\n                    \"to-sign\": 537986\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.120503099329025000\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.120924560165576743\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.121466815741074856\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125572661426444950\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.118509525621780445\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124495167811092105\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123209256550436635\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119195545699407883\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116138740165111321\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117352363344012327\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.113754835275306478\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115867241518208801\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118326945099390926\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.117612360347925788\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120062114275555237\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118631550537725825\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118063527500604445\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119695630130426767\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.119693203593475888\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.119120512832686746\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119503288208308196\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.123159277394162624\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.115753323336637640\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.116977073885773689\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.115929964053746382\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116615055711328873\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116919583772747651\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.116998708666400756\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.116819770409992817\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115793490257846716\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115528059048016528\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 16338,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16305,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16324,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16176,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16328,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16253,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16333,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16281,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16290,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16282,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16314,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16291,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 6,\n                            \"to-sign\": 6\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48522,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49750,\n                            \"to-sign\": 49754\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52718,\n                            \"to-sign\": 53036\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 91161,\n                            \"to-sign\": 93918\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50989,\n                            \"to-sign\": 65530\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15754,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.04391074771897826752492e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.530017348827380207207e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1efe44ddb21ca28cf2d15e357a0ea292e57bea000981f2f467163030cf70549412c0529a3cf774d9eced7e61526ff402\",\n                            \"earning-account\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                            \"effective-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"group-percent\": \"0.006022605734398797\",\n                            \"overall-percent\": \"0.001927233835007615\",\n                            \"raw-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.531339687144883838777e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"202770994a16d8bf6ed5d8c11985302352e5a9739588236c0d4d1a2a99c2dc97a74542b7cd30a7f6515b6e36a44f8c86\",\n                            \"earning-account\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                            \"effective-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"group-percent\": \"0.006022605734398797\",\n                            \"overall-percent\": \"0.001927233835007615\",\n                            \"raw-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.2247280934132e+25,\n            \"validator\": {\n                \"address\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                \"bls-public-keys\": [\n                    \"710366b83f9d120a763f2e68c994e10033940ddf7ec0eeefef3d4c990dd5d45f4c7d7ccc7ca67d99f0e40c354e539e00\"\n                ],\n                \"creation-height\": 3358987,\n                \"delegations\": [\n                    {\n                        \"amount\": 5.721517716e+24,\n                        \"delegator-address\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                        \"reward\": 84786335993862991924,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.057127928595e+24,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 1.866822793095526445433e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 67393105874820913841,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1qfs3q0mwzmg3dsyzc6vf2telzx54t0t3zlc8a7\",\n                        \"reward\": 14899472398448832268,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 89736592391122605814,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d235ehhlcdec9vsg6vua3j6gq2csz3u9hvju0e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 6707916873550772077,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 51929849174438759466,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1la2fefj8hfwg33ww4l2qcsv2g7zkdxxp3gethz\",\n                        \"reward\": 1.42708550040493841713e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.84866889737e+23,\n                        \"delegator-address\": \"one1zr3y8tr2l5djdff5wjvtf0ec6j2shsp6rp5j80\",\n                        \"reward\": 299169644552762355513,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kl6wxrxhxualmrl5fshqzvs4unq5cc38esf85q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x8kgyyqgslzrm7jrlj4m7rpg285etdywjk7gez\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 608670582111998041,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5111e+22,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 268917153504554914,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 22620949662503933327,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                        \"reward\": 3.336915447079706834593e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nwjw8xkvtxdrlc65vtjnqc73czz6vdvp33d78w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.87324e+22,\n                        \"delegator-address\": \"one1a9x2hfav5a2q378mpq5zcydvr2s6eekh7swdu9\",\n                        \"reward\": 65611468365794967065,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 2211014537799142648,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 10018213968596996787,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 4.031905506298379063434e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 7067205800861433420,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9093e+23,\n                        \"delegator-address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                        \"reward\": 906528490035447526153,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 186725331888518805867,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1dqm6nv6vfa8ks7mnprnchzsk6zggk9zcs44al7\",\n                        \"reward\": 305511412612786747689,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.494e+21,\n                        \"delegator-address\": \"one1mwhe2kjsxs3fvr8th39nhkgllcap4cplr5pdx3\",\n                        \"reward\": 12621446270294747615,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.000009998e+23,\n                        \"delegator-address\": \"one1vkncynzf0kegy80nfa0ppfnktg4ltr7dvlzag9\",\n                        \"reward\": 1.178875873018570253354e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 49169330073068203774,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.045e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 113933008128332733043,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 10597770383068960986,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Creator of https://github.com/Robovalidator/harmony_autobidder an open source program which bids for your validator by managing BLS keys. You never have to set an alarm again for election.\",\n                \"identity\": \"robovalidator\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"RoboValidator\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"hsiung@gmail.com\",\n                \"update-height\": 3424216,\n                \"website\": \"robovalidator.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.119504230260352090\",\n                \"blocks\": {\n                    \"signed\": 119329,\n                    \"to-sign\": 122655\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.132561604776586799\",\n                        \"epoch\": 288\n                    },\n                    {\n                        \"apr\": \"0.131589386168049710\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.123046675059908151\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122784511652263164\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125900551499111163\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.091507571923916258\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.128137874299936913\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.105696214592078312\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123803732576371181\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119903494720246858\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118139443274059028\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117465650287358533\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.116331404090511324\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.118506157031140946\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121467397337339844\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120878781142729879\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119093141703581925\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119298341883299543\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.121619860611890034\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.122775704917107261\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122187525085597601\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121189263885437904\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119058420776010499\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119512350142093382\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.120180056098920187\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120111498208871937\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.119756642762091660\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117386015011214592\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.119286369181849860\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118964371344450411\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119504230260352090\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 202,\n                            \"to-sign\": 203\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18765,\n                            \"to-sign\": 20542\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20110,\n                            \"to-sign\": 20178\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18675,\n                            \"to-sign\": 18735\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23626,\n                            \"to-sign\": 23695\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25248,\n                            \"to-sign\": 25346\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 12703,\n                            \"to-sign\": 13956\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 4.3359802758302007061532e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+23,\n            \"validator\": {\n                \"address\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                \"bls-public-keys\": [\n                    \"0a551033f14306b088545b07ee0f8919b6bbe41d1fe220dc37749b8fdc71ae01dc520f786c8dd3af4bc9cf1fc4b4168f\"\n                ],\n                \"creation-height\": 3359061,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yxfylrfm3r2vee07kynwjc605nq5nu2suff4me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ds5h88zazdwnc8tk8j2m0t0wk90x23jcj2dyks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Proudly Foundational Node since day one. Running on reliable cloud host for more than a year. Help small validators to decentralize Harmony One ecosystem with your delegation!\",\n                \"identity\": \"Even Solutions\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"ESValidator\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3404705,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1n2dfgcv0lykh42p2pgxcd8k7s820qkcdf8lelf\",\n                \"bls-public-keys\": [\n                    \"5abaee8b43f9358fdf369a653e551a928b3fa3a748a1fe8df16f809c9543f3403eafff5d9753efc8dd499e65113dcb88\"\n                ],\n                \"creation-height\": 3359220,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n2dfgcv0lykh42p2pgxcd8k7s820qkcdf8lelf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Avid harmony supporter\",\n                \"identity\": \"Foundational node runner\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"napsterRocks\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3359220,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.117923162031000361\",\n                \"blocks\": {\n                    \"signed\": 39887,\n                    \"to-sign\": 40810\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.092185958154480013\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.090965203228429016\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.093465841808753182\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.086770851528634736\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.086439934839353925\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.085528871046446517\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.084218377568045979\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.083789057514877845\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.082245608951720483\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.080840803229235868\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.078818334669722087\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.081093437658635930\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.082560214892125182\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.086917602887443051\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.086097012378257065\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.087740647546785197\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.087738661667701757\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.088954590584762229\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.089783000933647814\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.088850968991226376\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.089754601500691071\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.090359221099471869\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.090656265343835871\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.091241092706369951\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.091934385787456981\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.091466954010617132\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.089185168099217335\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.087503969397005375\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.089256417857674996\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.091754893630953977\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117923162031000361\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1508,\n                            \"to-sign\": 1508\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25200,\n                            \"to-sign\": 25346\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13179,\n                            \"to-sign\": 13956\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.4436861689977166209868e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x\",\n                \"bls-public-keys\": [\n                    \"11fe3720af7c383558400a2ab16b76caee83bb158d973e5fecb7b21f2fea82eecca2a68d1c8a50814d54f80041edac0f\"\n                ],\n                \"creation-height\": 3359226,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grt0frrmy7a8239sg3tygh83nd5q74yymq2ljh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0au0p33zrns49h3qw7prn02s4wphu0ggcqrhm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zdxjy50aa9kk33pxrjy8yerpgz49hx0nhc2r6k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Keep faith with us\",\n                \"identity\": \"KeepNode\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"KeepNode\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3386570,\n                \"website\": \"https://www.keepnode.xyz\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 195905,\n                    \"current-epoch-signing-percentage\": \"0.999642811583110091\",\n                    \"current-epoch-to-sign\": 195975\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"168292955178272827207600000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.119194197527195979\",\n                \"blocks\": {\n                    \"signed\": 5862500,\n                    \"to-sign\": 5896247\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122484590511553308\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122603805343830095\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124494377604012880\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.132493745164926296\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.128578163726565429\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.125136999372444247\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.124182155933578919\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119857680507052669\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117660014312153214\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117651322406270737\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115719275684888462\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117645829597741310\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120522866763217196\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119964690768090941\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119552232571773596\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118498804850232616\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.121064215519961175\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121695834168015459\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122114439204733623\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121243894637563653\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121215932278628475\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.122777121620882446\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118751216376179833\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119799056026296655\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118878210361449827\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.119869964539529136\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.119694466237789574\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.118698826858926740\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120414396712675451\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119609171740632942\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119194197527195979\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 224425,\n                            \"to-sign\": 225636\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 217743,\n                            \"to-sign\": 217788\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 246088,\n                            \"to-sign\": 246146\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 240855,\n                            \"to-sign\": 241160\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229986,\n                            \"to-sign\": 230117\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 219519,\n                            \"to-sign\": 220817\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 241419,\n                            \"to-sign\": 241530\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 237011,\n                            \"to-sign\": 237042\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 238437,\n                            \"to-sign\": 238514\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 237626,\n                            \"to-sign\": 237664\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 242212,\n                            \"to-sign\": 242279\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 267953,\n                            \"to-sign\": 268026\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 402325,\n                            \"to-sign\": 402746\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 425101,\n                            \"to-sign\": 425124\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 383202,\n                            \"to-sign\": 383272\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 337061,\n                            \"to-sign\": 337182\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 641115,\n                            \"to-sign\": 642532\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 362920,\n                            \"to-sign\": 373793\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 271597,\n                            \"to-sign\": 288904\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.893197492021552263940232e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.434943861088960594404e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1dfd33e1ba1f48640d64bd0a878b21840758f44c6d5845d9e0e804997d3207aa2c40d04b2eee3dd03cdd7a6453395508\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434943861088960594404e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"43ad254f6cbec380f5f99df0369f96fb6ba7c7518d89241939faf6d9d69c5490afeef05b421fffbf926b479390fa0b90\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434943861088960594404e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a7d5341af7a9cb69bcc366a41a98d0eeb3e9bc68e2a73d9e3799825738bdfd6b183d0bbbdf4448d6bf064b6e0e16f218\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434943861088960594404e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3c9ff839972f68a9179d90211d086252ac66f04d975934a6e91e45f805ce746b8b59156bd79cfac414c9a77017c11680\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434943861088960594404e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"61756a1a3f55ac33cf86a884ddc0795a91ecb05ee4486b89da20c7c0ecd8977a7225a789b91e02d52ebed33ddbc31f94\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434943861088960594404e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"16e3d373df7e5c01c2dd21be40cc04e5036b259cc3f28844659501d06e46b1f223891c7eb1f6c2eb41eec8eb606dd604\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434835202543443158102e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ce72a574a4ad4b116314c82162250211476066e1403f65f83baac852c378650d4796fb34c39a1012a632ff5f7f508b90\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434943861088960594404e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4d4aa3f120cc3cf27edac2a29029dd640e712f92e47ee751a20839896a0ff5bb185c33d7c832961c21df070ac2d85314\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434943861088960594404e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"715f484e66a6c6e4597dacea5fedbb318414c73c6e82b092a7d3399f5410a5b1afd5ebff47ea58e08a0012fe6eece98c\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.434831122728737194164e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6d1f4132b9beab5ad84b9038bcbf0ab9a6d23ca739f1bdaf8d9020fec83b7eaa741b78b66c00a09ce7a7c906bc18310c\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005789887827065708\",\n                            \"overall-percent\": \"0.001852764104661027\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.406878732719068140483e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"00b6377e7d3eb5c8d7e88fcb82754f45c89e21bc4d65ddf8d68b9d9646f779bcc010318a5f943d57f8cd0e06629e320d\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005492791967164783\",\n                            \"overall-percent\": \"0.001757693429492715\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400422792813764248152e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"298a240c89c51bb025d613d240c7d9ac7f25efce5e78dcf709cee013b67fbb6703a961d7a5e8c561560fcb07218baf8e\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400319373582473868865e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"74a4274fa9f794536921cb84ef4c6644a278a1bb8778da6c6c694aac1c12bc618a78c2eab321662b1a5976339c20c402\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400322103337904019652e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"70a36816c4d0c0b97f352378cc22ff7e0d337322c89962867b5017cb0565197899cc0d4b151985d7ab25e047d8563502\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400422792813764248152e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2826b297f1c212b89e510d7fafd7979de781116b44277e3c879286088be7b4d26cf4e4d439d99ff85944d9e0266c528a\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400422792813764248152e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e1c465d5d4b654b6d9a4244fe62dc417adbffb1536c6adc179d0d60ab584869ca5c653175ffebd9dda8c374a1a25c90e\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400319373582473868865e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bcbe661d60d81334dcc30881f18ff6f4c64f8071f0f21d62d99b992ed28d6051aea58c691cbfaee674c98355c1de5182\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400422792813764248152e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c86a5171077eed06fd29e5add5561e649f60af1455130d15fecdd2784ba7ed87fb68c4e72ef01f4f64c0c4e51b3e3c86\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400422792813764248152e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5b13791fa1787deaefb5edaa4c614865660f041ce6f99017bf26b28fe6734b564fcf3f1827706dd11a729fbf58a8780a\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400319373582473868865e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8133ed48cc607ccfcb890d8780dc8610b038a0e0e09c05f8f61981cc53486ea6672293cb9c249ac86fd2aa50bdc19b12\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462100\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.400214133119142243122e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f4dd50ff795d7ac3947c2eed19b6a029ce959c1ae753d6ff0ce3af8d9570c00fad3897a6a5cde612c0a72a524c952106\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005475757510819061\",\n                            \"overall-percent\": \"0.001752242403462038\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448509182526233108694e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"16c76b244e7cac2017f505234579991d68e40f6be0989e501da98e6adc271526a69b4ffaf232b1e137a85ade615e740b\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448509182526233108694e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"028e33a20bdb4c3badb5b32107899b3e6abef57af2f9d330e47c1318c439938164fb9c4d6eda4c133089648e33400987\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448509182526233108694e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"55d36ffc75e6be957415dcfb8bdf3235f6e95167d644bb6d50ddfcc868594f852b7ef520140a5d44f3a0723a16d0d417\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448292792128006700362e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9b413252ce0cf2f289c1838b3e35a4b70ec6ef659bd23c606b8e93be3c2e4e065400310cfdbb299ea65bd357c7c9da0f\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448281220688968866897e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a60da09df9a6aba6754d2a2541ee41274d00e991ef1b14d7d6d889227a5a437d0b9f201f155e0e1ed535770b1f8f2a83\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448509182526233108694e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3dd79d723b8aac2182660a12cc173dd76973c1f6c459ce4f3b797cfa0d9114924f12cd211d36d7356318c75026afbd13\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448509182526233108694e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fcd49de42863a6059a8a60a1565e4616a7933a5f918b8eac986da5594fa3b0f0177e66f01b5f54c453c4adfda836c913\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448401469311958650769e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7e2ac7bea191b33fd9efe9326e727c4a0c357cc7e0019a41085cc5cf2d01aae6c2ef98746185aa99ee2837d2d079638f\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448401469311958650769e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8778aef9a71ae1cac71a8c86e07df5e0764d0b1287e03f92cbe0bb4ba4fa278ee8584d33048e69425dd6b7d732f9f887\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448398869990390589019e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"949e0e2fa9643fac1ddfe01c91254ca2e53cd29aa8a37dbf52df804a02a6f58bd34f9f7b2f7c84eeece714715459df83\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769608\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.448509182526198669785e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d4eaeaaff529c66ded783947df40503622ea653bbc3bcf7d2f6165550b76a053842a18acec09a230babb3579f6444683\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"group-percent\": \"0.005673175221155026\",\n                            \"overall-percent\": \"0.001815416070769565\",\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.344364289892053333334e+26,\n            \"validator\": {\n                \"address\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                \"bls-public-keys\": [\n                    \"74a4274fa9f794536921cb84ef4c6644a278a1bb8778da6c6c694aac1c12bc618a78c2eab321662b1a5976339c20c402\",\n                    \"2826b297f1c212b89e510d7fafd7979de781116b44277e3c879286088be7b4d26cf4e4d439d99ff85944d9e0266c528a\",\n                    \"4774583ce0f710def0d4e0662ac91f450816fc1a29e73af221bdea3b744a4f9b586dc5796bfc68147f1c1172dd321082\",\n                    \"bcbe661d60d81334dcc30881f18ff6f4c64f8071f0f21d62d99b992ed28d6051aea58c691cbfaee674c98355c1de5182\",\n                    \"493ac74996ee36e3807645c1dc5483ecf447ddf0560b9010071ba0423090afcac2b071c3364eabad2b6eb0abd6baca0d\",\n                    \"666c3975c87e28935e7ef283928b1b01bf13331654397e81ff823b369aca562b7f84b25a46afe69d82dc341c59444209\",\n                    \"eca05137c61b8b6fe479ed8d59287617353728fd3b316eabbdd2c481d355be833b02cee8c8243fed539f41dacc715589\",\n                    \"c86a5171077eed06fd29e5add5561e649f60af1455130d15fecdd2784ba7ed87fb68c4e72ef01f4f64c0c4e51b3e3c86\",\n                    \"f4dd50ff795d7ac3947c2eed19b6a029ce959c1ae753d6ff0ce3af8d9570c00fad3897a6a5cde612c0a72a524c952106\",\n                    \"5b13791fa1787deaefb5edaa4c614865660f041ce6f99017bf26b28fe6734b564fcf3f1827706dd11a729fbf58a8780a\",\n                    \"1ad1c2dee4178c4295b92eb07da332d1a2c9f2f5549e42328e4cfbf546e7d4a83c39c26458d9922ee9c123264f9da792\",\n                    \"6e11238133364268601095c4459f016a20229e9b6a3970747d0c5819495d6336578bfa651b94ab8efc2cf57a47583b15\",\n                    \"fcd49de42863a6059a8a60a1565e4616a7933a5f918b8eac986da5594fa3b0f0177e66f01b5f54c453c4adfda836c913\"\n                ],\n                \"creation-height\": 3359293,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                        \"reward\": 3.26266631705139718305e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.40115787507e+23,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 243593704004162478945,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.19948e+24,\n                        \"delegator-address\": \"one1nhz9g98na0x2mgal2z9yth77lw83arf7ndr7zs\",\n                        \"reward\": 1.50762813892072597979e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 370314126955529179588,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1e+23,\n                        \"delegator-address\": \"one13zqn0g4r3zs9ppjqqzyan6h9vzdznndw9t33zh\",\n                        \"reward\": 6.007578056706763004205e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6042e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 91763296896263316292,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4249e+22,\n                        \"delegator-address\": \"one1kcmct2rrvxhy0xalrjzgglcmmytdw26phzxg6v\",\n                        \"reward\": 29104310982945772207,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 1.660402404570967173691e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.70221e+23,\n                        \"delegator-address\": \"one1xyvvte88cau9ka0jhw37pp2qtp7zq9k0dw6cf5\",\n                        \"reward\": 268905307398244735172,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+23,\n                        \"delegator-address\": \"one1jkr4mqpee3gqeykql0cchmul4e2k5x35h9kutm\",\n                        \"reward\": 3.602483555553710530122e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2500398e+22,\n                        \"delegator-address\": \"one1ueaf3s2t4s9gff0sfa6gkyycffd0fll5dqf82f\",\n                        \"reward\": 360259825863011714794,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 19759416745864609863,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 140919511353720443570,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7lxuqkg3sedxz9j6a4v2axxmrdhhr45d2ckv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1d9vl22yqm43ut87wh2c2lja5yt55jwk62q74a6\",\n                        \"reward\": 87473413531176357598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.178562e+23,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 327520312283256465266,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 256310507436337521262,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1n24e0eqg0ajwf2ehtvy0fw02ruvu4955ks27xg\",\n                        \"reward\": 629950340266603143,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 28819868444429258390,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pqt6c9vfsy72nsawu5c9cedtw5vkr2wcn4g6a3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dygg8ugl06pely2q3xqwkuhza9evdnyjesl6qy\",\n                        \"reward\": 246817612367746166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.75235007872e+23,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 735230576665998124815,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.012e+21,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 15246264943820984084,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 27546642647841108132,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6285e+22,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 41310699731156410540,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.999e+21,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 3140236399668181187,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 379171503888859358023,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.52e+23,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 28236427478928971769,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.516e+21,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 11341013744846933878,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 1.130960910581009509123e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1vlafys3hgv098te6c40vapwdmr26prsrp68ywf\",\n                        \"reward\": 44405728285653119324,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one197wwsy7fnkts6mj3258gysaeqq7qz8nqnyent0\",\n                        \"reward\": 14117913763070395265,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.04e+23,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 122385792795643844722,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6611133333333334e+21,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 1241003074736685306,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 34093412540445546243,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16m5r7awa4y2z2cyage4cns4uejxx8rn0gw77ug\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18zj55tkmgw78fmjagkfcaey9x5j7t8698nr2vm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.39461e+23,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 10362936433766731981,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6e+22,\n                        \"delegator-address\": \"one1l4dtuj5s7sj8q34urqmyev5jjx2s6t8yp28wjx\",\n                        \"reward\": 37947634944393331418,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4118e+22,\n                        \"delegator-address\": \"one1fql0lwnx4dyzy4z3nrfcqem0ejxdhshe4hud84\",\n                        \"reward\": 436360694237427949010,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.36311393e+22,\n                        \"delegator-address\": \"one1d6vmmq6elrx0z52zv5v7su2sykua8smaxy330d\",\n                        \"reward\": 166402341101983584223,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 110955933494891476515,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+24,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 549863855457029123864,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.12e+22,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 92566955743667808791,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4017701e+24,\n                        \"delegator-address\": \"one1v8tg5hgtmxrsa9x8wwcy3rnue7nqlmcrps4ezy\",\n                        \"reward\": 1.567026222185673912539e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 87121928369743978,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 16375246078638751518,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 10051087561051405494,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z250uy4fvkzwxvkjz30s26rwgwwezvdtvpwygf\",\n                        \"reward\": 4690414503386007225,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xcy78f2hs6wmxxtgm7u5gwtc73m22mm72yj0c0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 29071169516980433113,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.266831476e+21,\n                        \"delegator-address\": \"one1prc5xaxhrwhzr6t9npwntw5jvrtjun25hkezgg\",\n                        \"reward\": 11888353971621744867,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 21680101795005662216,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one14kr7gvrrmhvfa3p30q8tmy8nkrlqtcjpce6jqq\",\n                        \"reward\": 29127214430096119009,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n                        \"reward\": 234078210536357863024,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 2137656132982903837,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0a43e43kvlw2uzmmk3xv93t6gcz5mr4whr974\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17td8n6wa7l57gj727gl4u3z7hn7mpyftj9fhef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1428e+23,\n                        \"delegator-address\": \"one1th6dqkvnsc9wc023mr306yykflcqlpssmxzqp6\",\n                        \"reward\": 2.604331947209206369177e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4775135425e+21,\n                        \"delegator-address\": \"one147w9xun8eqrdg6yka7ejnr4mpjwupl4pgs9dtz\",\n                        \"reward\": 21146930830474043696,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13z3n2gqg3ptk8cgs2jfn9cp6mec0kgu7xd9ywn\",\n                        \"reward\": 7263311956297138968,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 38636869135790393106,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+23,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 166785805342496216480,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18tfdjlj2ya3q48s0xynjjs44jpcq2u4q3mtcpn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6111e+22,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 186781960404864256,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.48848997975e+23,\n                        \"delegator-address\": \"one1z22h2hedqev9yptfwj2vtwv0wxnuw97u6t8dfz\",\n                        \"reward\": 1.31489285100019839031e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 22232840023066890087,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 96171399506287021319,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 398305868276136732776,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.25e+23,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 499946736866204601238,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 585211592533657884609,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9300397491e+22,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 9394046758697492344,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8e+21,\n                        \"delegator-address\": \"one1xrvqsydzs9he5rw0plnpq8xyp2hpu5t8a6snul\",\n                        \"reward\": 23252479678790698145,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.87e+23,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 28626511598308781651,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 328502019922611849826,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 128806240093379500,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h2t0k0g9fjqh249w5pddv9wuudm8d9cj4nzyw4\",\n                        \"reward\": 92861149707835871,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.13471519e+22,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 19703408360081086912,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5325446839e+22,\n                        \"delegator-address\": \"one1dh2f694yfw2tpe3zqsvkgaj0ykeustw93gdyq0\",\n                        \"reward\": 261064746848669097188,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgsdhg36jdsst6hpagxxum3ncmgax5amqawptv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 3636347875901308282,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.592e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 98011122832465436993,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eexqspq9vlu73pp4gse0q599xzhz7eln8lu6mk\",\n                        \"reward\": 20550838343294913816,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.054e+21,\n                        \"delegator-address\": \"one1r8p9p4hnt3kx9ymvznxgfcm308md5fxwezy55d\",\n                        \"reward\": 17206581796556928018,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.276408313057283203112e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1jqq8fcscn9udqnqh2qy38424u6hf95efp5y99a\",\n                        \"reward\": 4.188554478227141399145e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3200461046e+22,\n                        \"delegator-address\": \"one1d33sufcyef8k4eedfj84akatekack9suvmc8ru\",\n                        \"reward\": 182877782163323861388,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1137867e+25,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 7.112468706792579235905e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+23,\n                        \"delegator-address\": \"one1ugcjmc89hdju06s6s3l7ypevrhvf3yzhl68zea\",\n                        \"reward\": 2.13004607801570742001e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05e+23,\n                        \"delegator-address\": \"one17zh0n602sshq3akqfrxsfpkyj7udmkx4glwy2u\",\n                        \"reward\": 11051947707822937839,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n                        \"reward\": 109495341908217558311,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one15ad34lhszdnz7n8uvnmuzd3w0ay3vy8fdt3343\",\n                        \"reward\": 82359698900840424086,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.55104e+23,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 408658224184526990290,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.398721e+24,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 2.194145889340510986395e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 260298519617086617561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.57e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 11803429965825077223,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.5559e+21,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 48718905448393558841,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 76541598774313769227,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.1799999977e+22,\n                        \"delegator-address\": \"one143tc4hfttqrtun6nl3x78nqcm3pnt9m8jj7mtz\",\n                        \"reward\": 690162337956208878593,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.389e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 48566937321253442666,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.3e+22,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 140685948847547014140,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 99318210857069776217,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9910351134e+22,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 13090804783559315908,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.8884608070045e+24,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 1.4541858230711688042866e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.21e+23,\n                        \"delegator-address\": \"one1z9fvhzdxn76rdckva824xvvhlpd8rt0fnv404c\",\n                        \"reward\": 499432060146794224368,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 5142380222641125084,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0085e+22,\n                        \"delegator-address\": \"one13eec5h4k6xw5h8up4duqzpvsdtcrypnekqjnhy\",\n                        \"reward\": 15198041694396090624,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 123752089027855402810,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.125e+21,\n                        \"delegator-address\": \"one1mv3ta8wgdeehrsja9pv7474chmu62dyy7cfqg5\",\n                        \"reward\": 34294449809730078185,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.95362e+23,\n                        \"delegator-address\": \"one1xven3mqyznvta70g4nvum0pk3pmrnyzghf72vz\",\n                        \"reward\": 2.551953474359250971904e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0446e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 55720978928902027203,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 10143302704436359571,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4998e+22,\n                        \"delegator-address\": \"one1lpy9wdzcvyek6g629zzv728lnpmxqzqyxhvpl6\",\n                        \"reward\": 3807553561092761881,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6810578897533599676,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n                        \"reward\": 2.870200473993426929885e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tysvkwnp78hwxkhzh8a4amyea54n580q80v44m\",\n                        \"reward\": 70599767646241540,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 20465240015898117333,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15xsj5dfqxes7dxwa02cpfdvzdvmzg2vgtchkcx\",\n                        \"reward\": 26757310137732179270,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.28903497627e+23,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.00005e+23,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 615957308635335705086,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 9194433355100574045,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6571e+22,\n                        \"delegator-address\": \"one15lh5pqwpfu4xq8dz0mjh2qvhwx6tv9n7p0p74x\",\n                        \"reward\": 87442363242592015121,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1gwdl55he6nh0n06xuhvkuupnlp28260ccsnn6n\",\n                        \"reward\": 1.670111720548633589127e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.19551e+23,\n                        \"delegator-address\": \"one1lju2qtnf5cx0fs78xrhcwzz3sm0ymjhegxymmq\",\n                        \"reward\": 112398214207658148239,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n                        \"reward\": 582205307973083893218,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1h2kljdu542mrg6zjv33w9nfwt3lpxnzhn6dscz\",\n                        \"reward\": 4978484862054902494,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.809684808e+21,\n                        \"delegator-address\": \"one1fxtypxnzz0vll0vtpea2m8h9utx2vpqjjsmp3n\",\n                        \"reward\": 26052740369683831845,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 308781047524285752144,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+24,\n                        \"delegator-address\": \"one1x8kgyyqgslzrm7jrlj4m7rpg285etdywjk7gez\",\n                        \"reward\": 2.637503134468411427681e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+23,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 490452332697465424065,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1gg8p84y09svpxa5xlqc36v4epwyjv8mk0cmrj5\",\n                        \"reward\": 1009112846423371720,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a869ad50qkw0446x3q3mhzx7fm0azx5fvcu7wk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.04927e+22,\n                        \"delegator-address\": \"one1wwajz8k0t3z200c3qjxwxz0gsfua8ffy2a6asy\",\n                        \"reward\": 9518096689605034991,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.041e+22,\n                        \"delegator-address\": \"one14xvqeuw9v6mqarw5uathtys6wc3r228sdyp7hg\",\n                        \"reward\": 3818318248841620054,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.035e+22,\n                        \"delegator-address\": \"one1zn5axvgpx23t606xs0t59qf8xfc4fmavkh4ffc\",\n                        \"reward\": 18741073720181531786,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.05e+21,\n                        \"delegator-address\": \"one1wvaxshh8c7kxda02c5pszvme564274x3uaywek\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Chainode Tech is your partner for staking & validating on cutting edge blockchain protocols. Our Validator is run by a team of early contributors that joined the network as Foundational Nodes since the 1st public testnet. Current P-OPS member. Stake with us for best experience!\",\n                \"identity\": \"Chainode Tech\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.490000000000000000\",\n                \"max-total-delegation\": 5e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Chainode Tech - We know Tech! - Active Backup & Mngmt., Low Fee, HSM based Security\",\n                \"rate\": \"0.049000000000000000\",\n                \"security-contact\": \"https://t.me/ChainodeTech\",\n                \"update-height\": 3391432,\n                \"website\": \"https://www.chainode.tech/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1a0au0p33zrns49h3qw7prn02s4wphu0ggcqrhm\",\n                \"bls-public-keys\": [\n                    \"084f12db443894715c3b18870fda1e2eeb2f13e6a212a834fa162c7eb401808ef9a40e9ceea19022c0b443aa88e4950d\"\n                ],\n                \"creation-height\": 3359297,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0au0p33zrns49h3qw7prn02s4wphu0ggcqrhm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"KeepNode2\",\n                \"identity\": \"KeepNode2\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"KeepNode2\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3359297,\n                \"website\": \"keepnode.xyz\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1zdxjy50aa9kk33pxrjy8yerpgz49hx0nhc2r6k\",\n                \"bls-public-keys\": [\n                    \"d1b8cee9df1626f64f233661d6e531396245d8dccc34715936c5f1c00c62b22352f0f6bbeb71e03eaf5a4cf4fe384a14\"\n                ],\n                \"creation-height\": 3359353,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zdxjy50aa9kk33pxrjy8yerpgz49hx0nhc2r6k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"KeepNode3\",\n                \"identity\": \"KeepNode3\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"KeepNode3\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3359353,\n                \"website\": \"keepnode.xyz\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 15124,\n                    \"current-epoch-signing-percentage\": \"1.000000000000000000\",\n                    \"current-epoch-to-sign\": 15124\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"35718665072759509126800000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.115951547777028245\",\n                \"blocks\": {\n                    \"signed\": 790799,\n                    \"to-sign\": 801890\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.120854284578023308\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123940508960133341\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125152672084780007\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123575206501259368\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121830296467403423\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121772205475388244\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121113176652122316\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122717134840594712\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119355975265017019\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116904101983444051\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117434849846750830\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116602018812571628\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119191784439062988\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119763383614971611\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120573875930265615\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117280393746725706\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118601760235018727\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120285951372578172\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118358096586817127\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118679825446469835\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.116491518428951012\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.117570262222578784\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116395868803277841\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.115968927583330157\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116499217173239924\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116692050947769802\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116507317274002265\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114579514416541003\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115907771876561931\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115450600971779714\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115951547777028245\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 17143,\n                            \"to-sign\": 17418\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18234,\n                            \"to-sign\": 18234\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17715,\n                            \"to-sign\": 17715\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17285,\n                            \"to-sign\": 17285\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17821,\n                            \"to-sign\": 17821\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16914,\n                            \"to-sign\": 16929\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17588,\n                            \"to-sign\": 17588\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17105,\n                            \"to-sign\": 17106\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17163,\n                            \"to-sign\": 17165\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17150,\n                            \"to-sign\": 17150\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17448,\n                            \"to-sign\": 17448\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17945,\n                            \"to-sign\": 17945\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 21814,\n                            \"to-sign\": 21814\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82454,\n                            \"to-sign\": 82454\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 60748,\n                            \"to-sign\": 60778\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 56398,\n                            \"to-sign\": 56400\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 120584,\n                            \"to-sign\": 120915\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 164596,\n                            \"to-sign\": 164781\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 59570,\n                            \"to-sign\": 69820\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.91571946101798040546392e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.592758907745140189484e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"48427664b04ca99d1ecff349d0a6eab684ce682559f5cb1398716e5bf5288b9d77eaf3d5d9969b1d17bca70a9f633e95\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592981253125189191903e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"77310a150e5df07db4ceed3daf98967b70b8156beb7c39a046d505bce3620ec048a24903d9a9432724b6327808e66499\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.593205471850231626e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"997e1cdb546c1050f44d642ab9a137349b66054e588a38e6700cc440eb7106e62951108f55e357e75af7ccb45d56b795\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592876130765429110709e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d3895a8bab3769a8d9bb524b6f824a0a99796ed2bf7ca6487cc524f8ea63ffb0b1f0bd29a194c250a88c5568be459519\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592985619112482207994e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"cfda73a32b8d612aeb5b9a4c963086da8daf44ffde42ec73107ab2dff56f1568d2a9d453fb0c6040995317a3a268b78d\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592873758420194899465e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"97fe22f0ecb1db616d51d741cbf9afe27ed45ded467f45227b0d837e142d59b49bc84400b513ec2e939624aa4957e181\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"group-percent\": \"0.006217576848075763\",\n                            \"overall-percent\": \"0.001989624591384244\",\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 2.18130391779854e+25,\n            \"validator\": {\n                \"address\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                \"bls-public-keys\": [\n                    \"cfda73a32b8d612aeb5b9a4c963086da8daf44ffde42ec73107ab2dff56f1568d2a9d453fb0c6040995317a3a268b78d\"\n                ],\n                \"creation-height\": 3359368,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.5601819e+23,\n                        \"delegator-address\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                        \"reward\": 18231007830151074584,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hrrej58t6kn3k24fwuhzudy7x9tayh8p73cq9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1xpezw8k5e76t0jntvlgtug0t9wdzletvnl7r9f\",\n                        \"reward\": 268968255063520290067,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.199e+22,\n                        \"delegator-address\": \"one1zvdmhs9s0k6atfdgmeqf4fugnsl2xsyu0jkmxk\",\n                        \"reward\": 1.129397703011721514374e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 83510907247949511638,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.78887e+23,\n                        \"delegator-address\": \"one1ftj28mq86gywa2uu8cz33fltx2mqgq49677zf0\",\n                        \"reward\": 4.811492424354794883356e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 10863789800116803372,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 19115456736811965917,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.638429993179e+24,\n                        \"delegator-address\": \"one1mrgas6psdpafce9f8rdvzj4wlncjd8g6wehh2x\",\n                        \"reward\": 1.4271542973024997079197e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.03235994064e+22,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 19246797759443166802,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 554422203428899798,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dsvacurqg54u3q4k7p9t7k2k44rldzsjk39aup\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+23,\n                        \"delegator-address\": \"one1azvl4jf93ndfx8886xrumqmvmta9cv453xak2f\",\n                        \"reward\": 177086039921628430158,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8e+22,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 112374536515933465862,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1g4u3hy78vux7mtqerfqechx7q7seyg6avtnq4h\",\n                        \"reward\": 24493975916990255651,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.09e+21,\n                        \"delegator-address\": \"one1kj7s0p7mg200j6sjtljj9yv52tem9jja3qt80k\",\n                        \"reward\": 74112230366841066281,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+22,\n                        \"delegator-address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n                        \"reward\": 11365142928915478807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one15tjsjcff0mcxc76qjrspmc8ml53yg9px3d2qgp\",\n                        \"reward\": 69751846069828243727,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+22,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 24630383755249574896,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.868e+23,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 1.309026881706276750516e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 186371657622914176191,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 61046016260553660044,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 379286062912293711076,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 5880450394242017822,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5e+22,\n                        \"delegator-address\": \"one1dqm6nv6vfa8ks7mnprnchzsk6zggk9zcs44al7\",\n                        \"reward\": 267903223084786020924,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1623405273243196393,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1qtx776yews0t80k9ppe6d2qd76clnpp2tjs8wt\",\n                        \"reward\": 729407492775172069002,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1nrd84ldj3ldtdwz5ktrcqvvekuavpeypwz3lpe\",\n                        \"reward\": 27403680543224119213,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5033e+22,\n                        \"delegator-address\": \"one19day69t6zzqrk3yr5086v9892c9ajvkw84fegv\",\n                        \"reward\": 20597976480314411069,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.300304e+24,\n                        \"delegator-address\": \"one1w03wuvm77ujywjes3rejmay8j93udal9kfnv66\",\n                        \"reward\": 1.781655771253825298548e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 417938050224312655195,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.6149683954e+24,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.130695e+24,\n                        \"delegator-address\": \"one10j2mrd7hcf27t4fj0jmp93rfk35lujt8wrmxsc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Located in South-East Asia, running on our VPS and DC colocation. Delegate with Us for decentralization\",\n                \"identity\": \"d31de168-0f4e-4aa5-ab90-03f2b4547fc1\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 4e+25,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Moto Trust - 1% Fee\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \" \",\n                \"update-height\": 3359368,\n                \"website\": \"https://mototrust.one/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 122418,\n                    \"current-epoch-signing-percentage\": \"1.000000000000000000\",\n                    \"current-epoch-to-sign\": 122418\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"91177771711181145079247879.999999999999999997\",\n            \"lifetime\": {\n                \"apr\": \"0.119281241275659066\",\n                \"blocks\": {\n                    \"signed\": 2313000,\n                    \"to-sign\": 2315547\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121908942978790078\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121212159236460254\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.122575680076819015\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.132288647527399225\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.135615916375567323\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.138499793726974353\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122974042476027302\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117394901134922151\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121744256441613584\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118804592670798081\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125939948449009359\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114632726763401664\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121086467653972963\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121423744585604414\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.113508298221297102\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.089240280752171766\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119422846810782537\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120748767211597381\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121582557511387231\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120910833653237917\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121838376288106580\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120846894359014941\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.120962469412600862\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.120480838366833510\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118633803536876720\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120778568443218438\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120337856646150585\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.119058112846354844\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120556817814816382\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119501166610098293\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119281241275659066\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 147860,\n                            \"to-sign\": 147860\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 167836,\n                            \"to-sign\": 167836\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 151693,\n                            \"to-sign\": 151693\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 152229,\n                            \"to-sign\": 152233\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 172000,\n                            \"to-sign\": 172000\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 150087,\n                            \"to-sign\": 150156\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 146691,\n                            \"to-sign\": 146781\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 149632,\n                            \"to-sign\": 149703\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 150337,\n                            \"to-sign\": 150477\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 150365,\n                            \"to-sign\": 150445\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 168456,\n                            \"to-sign\": 168510\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 88590,\n                            \"to-sign\": 88630\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 232919,\n                            \"to-sign\": 233543\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20541,\n                            \"to-sign\": 20542\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20178,\n                            \"to-sign\": 20178\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18734,\n                            \"to-sign\": 18735\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25203,\n                            \"to-sign\": 25203\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50664,\n                            \"to-sign\": 50692\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 26567,\n                            \"to-sign\": 27912\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 7.789119535412597989726e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.465492345388369218139e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4c65f90e6354e10d190f213a8665c77d97f52b3d5223047f5ce1d8e8dd783c32d3d2e70a307661ba32241cae513d6994\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465492345388369218139e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3122d1a0c32421c267cfa8c3994357608c9868a3460a5d325c70d5f7c5b2e87626be14c50262d6fe56cf80ed735fde8c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465617581463568557141e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2ca7cb0362db342d82d51fed78ba24c88fd061ddccc929923cb7443ff99ddfaf5136e14adf2068cc3d1e1653d11f5b88\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465492345388369218139e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5366ee770e6bf00cbf65d683bc0aa00ce600adcd644ac6ba078f0f825fce10283bcf19fa6c08ebddeaa23a8e2f63a108\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465492345388369218139e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4b4c85ced3f516d101022dee1c728823f900356d50dddbc2b47e4d8c3d7f91c501748ecb9c494178703b262f76fba790\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465400569449878668643e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8d14f8242ee01fc3ba63bce5f6d789bb5dde518930406e1d8c21d2ef5acc3659482aaec12eb32ab21292a11796a6028c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465492345388369218139e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4f50f328160160d3773f434b7f769c7eaca25e08daa717bc4062be94237da4d0fe973087b68c3e13dfe198682266c218\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465382319328209728031e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"57320cc0aaeb7090f8fcfd4d4670264c086e541591378a7b2efc58c1ceb43e7f22630401b3ae53d15e96561f50d2b68c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465617581463568557141e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"087472b5eb52a05589341d95d009e9bcd0c22f314842d824b496e321d642a7f7cd71983bb8a4a81f3d9006e8155f4494\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005904651151513649\",\n                            \"overall-percent\": \"0.001889488368484368\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.435373748174498191185e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4d668e1c2ac9bfb632ceb654042eee79ff927de2b290440b0c55d8b323130b911caa2599772f69d2c0d823ac2d6d2a11\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005601666454111838\",\n                            \"overall-percent\": \"0.001792533265315788\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.435157189043631624113e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"00b3f69f0e90d2373555dd6827794945d7465b067fe4b1e8a9bc695508f9071af2ffba3b330fb42617534f23ece5c409\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005601666454111838\",\n                            \"overall-percent\": \"0.001792533265315788\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.435486744921890140602e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7a3ce87d76839d870f2c27bd00fbe3731323a24c3142ee32470783e792a03adb6e7487d09d85aa118fb4c44c73b70009\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005601666454111838\",\n                            \"overall-percent\": \"0.001792533265315788\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.4351686478938934937e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0b12ee68ad020e4a72cd302c1ba112b51b631221917a0862485bf9520af2ec60bc2c9ee387964811c5e009bbd258b191\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005601666454111838\",\n                            \"overall-percent\": \"0.001792533265315788\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.477072577345858966146e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"04cf6b75d961be22599741dafb25394a1fed85e0232744e645a8720acbb9b8f2f7a46909b1d70935e500e4ad0f940d8f\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005785625145575305\",\n                            \"overall-percent\": \"0.001851400046584098\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.477092981952649162499e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"08aca306ce6f5b79f0f58c8fd9e91f4a0864ea7354646a5c0d38f8266f93902ac43691ee73d0578d707fc364d6655987\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005785625145575305\",\n                            \"overall-percent\": \"0.001851400046584098\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.477079533389086372426e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0fbce1adfb35da5d812f795f5acbfff10651309727271cf68cf6f8a21b36521dbac758ac874f7d5e3a01b7dcd41efb17\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005785625145575305\",\n                            \"overall-percent\": \"0.001851400046584098\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.476510016960314106926e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3cc36b809ac60b2aacf1c8a4e989c6f8d3a389d5d0a6940e36275ab7a359572baa8fae0d03e50a37d7ed27c4318ac10b\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"group-percent\": \"0.005785625145575305\",\n                            \"overall-percent\": \"0.001851400046584098\",\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 9.5357938601872489668339147e+25,\n            \"validator\": {\n                \"address\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                \"bls-public-keys\": [\n                    \"4b4c85ced3f516d101022dee1c728823f900356d50dddbc2b47e4d8c3d7f91c501748ecb9c494178703b262f76fba790\",\n                    \"4f50f328160160d3773f434b7f769c7eaca25e08daa717bc4062be94237da4d0fe973087b68c3e13dfe198682266c218\",\n                    \"087472b5eb52a05589341d95d009e9bcd0c22f314842d824b496e321d642a7f7cd71983bb8a4a81f3d9006e8155f4494\",\n                    \"ee160e6f8a09cb27803449fce08517294fdba55490491dd910e6288fc89c04940490f5a40d8de396fe4eb4f386481110\",\n                    \"57320cc0aaeb7090f8fcfd4d4670264c086e541591378a7b2efc58c1ceb43e7f22630401b3ae53d15e96561f50d2b68c\",\n                    \"5366ee770e6bf00cbf65d683bc0aa00ce600adcd644ac6ba078f0f825fce10283bcf19fa6c08ebddeaa23a8e2f63a108\",\n                    \"4c65f90e6354e10d190f213a8665c77d97f52b3d5223047f5ce1d8e8dd783c32d3d2e70a307661ba32241cae513d6994\",\n                    \"8d14f8242ee01fc3ba63bce5f6d789bb5dde518930406e1d8c21d2ef5acc3659482aaec12eb32ab21292a11796a6028c\",\n                    \"2ca7cb0362db342d82d51fed78ba24c88fd061ddccc929923cb7443ff99ddfaf5136e14adf2068cc3d1e1653d11f5b88\"\n                ],\n                \"creation-height\": 3359375,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.155890986897489668339147e+24,\n                        \"delegator-address\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                        \"reward\": 36929696544255741849,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.19283e+23,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 10627680594463383294,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.91527e+23,\n                        \"delegator-address\": \"one1c6c3lwl82v749gcdqr09j9n25rwvas04mhc9rd\",\n                        \"reward\": 1.018155192687138761312e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 4259713257004459642,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.969e+22,\n                        \"delegator-address\": \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n                        \"reward\": 222881605077485115785,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 12175534680930625968,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.905e+21,\n                        \"delegator-address\": \"one1jxwwk5z3596gynrz382stsanzug2v52u0d97ql\",\n                        \"reward\": 21449265001243629132,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 88285349290770541294,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4e+22,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 80100086764887691350,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.059225e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 78296114092998215803,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.1140580607759768304249e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                        \"reward\": 33289227873192359000,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 5156371936265146524,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5885e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 91359218287468359573,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 19566198217585878630,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.43997e+23,\n                        \"delegator-address\": \"one1dnh7wjg8mkvru3fantlqcazsrw3ma6ucdkqvps\",\n                        \"reward\": 222108243681028442418,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.51e+22,\n                        \"delegator-address\": \"one1aw2hx2ydu4l8xkqcvksru7xeg6prt3rsr7372c\",\n                        \"reward\": 95948060168653846076,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 118736055460448676,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3e+21,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 3169958809991101344,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 108305224680626592896,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 19613151713885670006,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6852923537091381580,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6xz73724nja8cn2c2d2gun2n5nenyr7da8r64\",\n                        \"reward\": 857126846555183514,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one1ps4gky30d2y60q59ydu72l7dtch6zvvtmu6x0z\",\n                        \"reward\": 5071455705116817603,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1798425604321892011,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1jm9erjgeudx44jxvpyr09u2wevfrjykuvch5kf\",\n                        \"reward\": 111389248141176401913,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 131560140664046028405,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.000364975e+21,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 29992160257551809264,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 455118101066572515851,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.75e+22,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 31219627475238399025,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.66e+22,\n                        \"delegator-address\": \"one14m8mtlzu6gk9557ya4nv004lew0ve2tf3kxhzp\",\n                        \"reward\": 31239642172067059983,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+22,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 51812981866687267586,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.03031e+23,\n                        \"delegator-address\": \"one16cje0z4pswgck88eprtrd6v04jdy7n6vpcue3x\",\n                        \"reward\": 276960205844546451092,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 297761601898523624022,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1l6v5djd7ss7axpfxgr9rq2v2chp3trnvhzl7aq\",\n                        \"reward\": 2672784156619518570,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+23,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 429527825031570920778,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.29437e+23,\n                        \"delegator-address\": \"one1mv7g0rj2dqfnw9jgqqxa8aqea9g8dw4kay77gc\",\n                        \"reward\": 200926574001120640312,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+25,\n                        \"delegator-address\": \"one1z62wq6ucttx2ksj5v3s0vk0hup7xg0yez8qkyw\",\n                        \"reward\": 836838664573857451371,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 2034258789043480590,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.42e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 8725989725228142378,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 26448478169651907570,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one12kkwq0tg6u67p8kp9hgsx5yqlatzmm3vwlfvvs\",\n                        \"reward\": 44080796949419764782,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Harmony Foundational Node Validator - Actively managed multiBLS nodes backed up by at least 2 geographically separate instances at all times. BLS keys will be added/removed as needed per epoch to optimize rewards as best as possible.\",\n                \"identity\": \"jc-harmonyOS-N1\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 5e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"JungleCity\",\n                \"rate\": \"0.040000000000000000\",\n                \"security-contact\": \"info@junglecity.tech\",\n                \"update-height\": 3473365,\n                \"website\": \"junglecity.tech\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.116336774757096322\",\n                \"blocks\": {\n                    \"signed\": 82347,\n                    \"to-sign\": 105286\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.120324191253117622\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.121122221177564072\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.121477451897282280\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125598249064113636\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.118557787429251849\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124514197612216964\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123216987772452949\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119227359954801973\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116153140078645774\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117367581522872980\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.113794475970519187\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115883781844926719\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118345291922995464\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.117635801682403152\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120100357990093209\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118559609849653265\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120087336617889629\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119834334555881579\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121064268305491976\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120765231096610738\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120947751422143744\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.123457381351213063\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116341470728674989\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117835500647410864\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116287139016755265\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117256635193483681\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117160706661973273\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117096081563097115\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117832954910476481\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117046188070527594\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.116336774757096322\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16381,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16382,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 5923,\n                            \"to-sign\": 11858\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 10892,\n                            \"to-sign\": 27892\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 3.3916632842414557653824e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2.10692e+23,\n            \"validator\": {\n                \"address\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                \"bls-public-keys\": [\n                    \"8f797e45b12648c3b9c8e8bb7eaabe7eaac7836d901eb798470cccfb6414e2e54516cbb2de1aeaf7a5d381651cdc5f0a\"\n                ],\n                \"creation-height\": 3359442,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.07692e+23,\n                        \"delegator-address\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 12324001974472388626,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rzrwq4cmav25mewzlz77ehen27pxhktvqqphas\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17uudye02ffxhlpqnvvm8fkc3wyqsgn320gg86k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cnuwda5cm4ghmz3qhxhjd7je3jg7uz9p5tuwff\",\n                        \"reward\": 3246277863012138774,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zr9pqt6nhls5q4qesnl2v609umrqrh9hs2kdqh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Foundational node\",\n                \"identity\": \"LG\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 2e+23,\n                \"name\": \"Gordo\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"telegram: https://t.me/luisgogo\",\n                \"update-height\": 3505432,\n                \"website\": \"https://gordo.pt\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 149892,\n                    \"current-epoch-signing-percentage\": \"0.995378117778309029\",\n                    \"current-epoch-to-sign\": 150588\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"89700955425561000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.113352066571918069\",\n                \"blocks\": {\n                    \"signed\": 4464752,\n                    \"to-sign\": 4545977\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121827084930395753\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.118622549926660766\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123682244006128762\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.124782308999482633\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.116744163920817213\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124159966725586889\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121081142134125403\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119172594606465530\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117307150171224169\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116666760113550822\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115196299098185058\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116826777509908888\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119290401223885324\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.118869170777497223\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.117771703371855880\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118326309460638987\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120093860109732959\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120429189284739086\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120871748052227341\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120297602962632606\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119651081697532640\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121124433035229062\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117425926522039730\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.116488871849009008\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.113461634695859485\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.110805650547378963\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117091849230220899\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.115232059930430953\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118154513086180738\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.114548418298889965\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.113352066571918069\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 189868,\n                            \"to-sign\": 191453\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 198759,\n                            \"to-sign\": 200009\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 192320,\n                            \"to-sign\": 193829\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 187751,\n                            \"to-sign\": 189849\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 192801,\n                            \"to-sign\": 195205\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 198265,\n                            \"to-sign\": 203400\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 200877,\n                            \"to-sign\": 204688\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 199734,\n                            \"to-sign\": 203148\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 200388,\n                            \"to-sign\": 204562\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 217723,\n                            \"to-sign\": 219841\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 199891,\n                            \"to-sign\": 221673\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 233707,\n                            \"to-sign\": 243964\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 267803,\n                            \"to-sign\": 277814\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 308649,\n                            \"to-sign\": 311192\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 306036,\n                            \"to-sign\": 307380\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 140275,\n                            \"to-sign\": 140347\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 283007,\n                            \"to-sign\": 284379\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 367397,\n                            \"to-sign\": 369536\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229609,\n                            \"to-sign\": 233120\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.505856732736043247143276e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.499066037614580285552e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7335f5c266cc3d4223004af9cf13ad41bb69a7748359ea115e58ace47ccfae64a2e9d2e9e6e9e06a2f5c78465f8a2489\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005855369131602700\",\n                            \"overall-percent\": \"0.001873718122112864\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.499207444660402600902e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"858b2be4b3118e3cf0b6167a4f7b9283a5b0079006fbead0074b1444759ac5c281822c86265aadf4e4a9452765bf3009\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005855369131602700\",\n                            \"overall-percent\": \"0.001873718122112864\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.498568589248386706001e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fad66c30983f8a7e5bccd3ccd237e8443c36fb07f50abfd988793ada2270c1db717a33730a8865ba0da5132f6c15750d\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005855369131602700\",\n                            \"overall-percent\": \"0.001873718122112864\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.499748382652326597822e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"743fdce65c15a85da507535ceeeb2ddea98931dd6afa2d748e742622710d95094bb4c6157eb65dfc9c1c1d550d360911\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005855369131602700\",\n                            \"overall-percent\": \"0.001873718122112864\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.455409083823182211385e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d0c5083510829c72bd84b46cf35c1daf98bb11af492ded14503e10f857e29e0589d45c2f05d678f73d95d115b865a816\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005837210237099390\",\n                            \"overall-percent\": \"0.001867907275871805\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.454986864730822019612e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e2c5dd827855c9cf75c9ae81f6d98f4227bc2069f9d8a047852df975fad9ca36956540557b18b537d37d5b9e50729306\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005837210237099390\",\n                            \"overall-percent\": \"0.001867907275871805\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.458472941594053188417e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"21a94c1f5d0913e0e0471e5b4d4e2b476a1070411e9d98944821ddf1c933bf63f9f4c876213fc33a07fefb93ff401316\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005837210237099390\",\n                            \"overall-percent\": \"0.001867907275871805\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.459447359934141609614e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bff7b508f8c1ff32b633cb4585e7fe6fb468acca9b141a87e081fd1a1e6c4b55d1faecc726beb4c6a4b36d0daacb9c8e\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.005837210237099390\",\n                            \"overall-percent\": \"0.001867907275871805\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.533163886899577531377e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"87cb22352223067db94c29e67917b4a0824e551c06b7baf9f15cf96a71ca58cae64c771b43cc222ba6d1a60a178cce93\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.534654966222020224247e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a80cdcf67bb376bace4d031d86d80c99c5eaa280438c3af70cbb0d3bbb7dc7bf3438a9ecf028bdc6692b7f7ba89ec503\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.533446858803120154412e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b03e54fd1267d5b94ef63d755cd928517d3cf4719837014c37d120a7de2c5fbd6d87f9387e591810a35960e4963d7a83\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.535724019995170485303e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0f0bd671199fb1b2ad42647cab032cb6edfd77c65a042fb8165aa2a31336373a514e8846b521b2ccf4ac3b9802341e0f\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.531985677110942696602e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c1e5df086ad98ada37ca3075125f91aac090ef13487551442d3692c326c6d85351d86f9953171bebe8d562142c5f6f17\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.532995015207048483777e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f772638b2125262f47fe20bd658508c1739c9c6d2be3dae9eb30670b6a04b09679bbdfabf88f1e134e1736538885a313\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.532488537499140468491e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b9d80fa33835f8795b43046f393aa956f3eb010c908d5c23e5f42317bef40070f6deb9956f3f3717683b4116a797f603\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.533761485818305460379e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c47283b4bbb2cbf18c6ef0575f487c330841801cd756634c6b1444d4e9254d3e63c08cfc22d6d992ee1f82bb46a58087\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"group-percent\": \"0.006047659417414799\",\n                            \"overall-percent\": \"0.001935251013572736\",\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.07471436822296e+26,\n            \"validator\": {\n                \"address\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                \"bls-public-keys\": [\n                    \"858b2be4b3118e3cf0b6167a4f7b9283a5b0079006fbead0074b1444759ac5c281822c86265aadf4e4a9452765bf3009\",\n                    \"7335f5c266cc3d4223004af9cf13ad41bb69a7748359ea115e58ace47ccfae64a2e9d2e9e6e9e06a2f5c78465f8a2489\",\n                    \"fad66c30983f8a7e5bccd3ccd237e8443c36fb07f50abfd988793ada2270c1db717a33730a8865ba0da5132f6c15750d\",\n                    \"743fdce65c15a85da507535ceeeb2ddea98931dd6afa2d748e742622710d95094bb4c6157eb65dfc9c1c1d550d360911\",\n                    \"bff7b508f8c1ff32b633cb4585e7fe6fb468acca9b141a87e081fd1a1e6c4b55d1faecc726beb4c6a4b36d0daacb9c8e\",\n                    \"d0c5083510829c72bd84b46cf35c1daf98bb11af492ded14503e10f857e29e0589d45c2f05d678f73d95d115b865a816\",\n                    \"21a94c1f5d0913e0e0471e5b4d4e2b476a1070411e9d98944821ddf1c933bf63f9f4c876213fc33a07fefb93ff401316\",\n                    \"e2c5dd827855c9cf75c9ae81f6d98f4227bc2069f9d8a047852df975fad9ca36956540557b18b537d37d5b9e50729306\",\n                    \"0f0bd671199fb1b2ad42647cab032cb6edfd77c65a042fb8165aa2a31336373a514e8846b521b2ccf4ac3b9802341e0f\",\n                    \"a80cdcf67bb376bace4d031d86d80c99c5eaa280438c3af70cbb0d3bbb7dc7bf3438a9ecf028bdc6692b7f7ba89ec503\"\n                ],\n                \"creation-height\": 3359540,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.65441177e+25,\n                        \"delegator-address\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                        \"reward\": 1.40538008466317960605493e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0600615743e+22,\n                        \"delegator-address\": \"one1u2r0ee3t4gp255axsjlnv3swepaqu2rjkswftc\",\n                        \"reward\": 274578717777268504360,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 5.49757627541170186038e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0382695e+23,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 147063064817062588263,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0890060696e+23,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 427635227927564731079,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.7880949593e+22,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 58681773586317447809,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 7578792694431426210,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.04e+23,\n                        \"delegator-address\": \"one1fp2nnpwyjzy0j68j38p6x9vcp8e7zzem3nt9e9\",\n                        \"reward\": 318030337999134280291,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 104462956284071316880,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.035e+21,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 46542683176429935352,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.95e+21,\n                        \"delegator-address\": \"one1ghv5s6qqwdxafunjd6syxj2qx5naje5neh722e\",\n                        \"reward\": 4919191501764432846,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.04137e+25,\n                        \"delegator-address\": \"one14hr9evj6dk7q39ukgquawqvcjcz92zq6ehlwpd\",\n                        \"reward\": 3.850520201145428450972e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19mqs8kpuu3vzytsq5gmxauxv8g6yf4j93mll7j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7925e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 109721919243816528,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 13671408669542035730,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 546865902884519333885,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 289831908811876723486,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 73763918000747882,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 1.9264943348523206407416e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.45475e+25,\n                        \"delegator-address\": \"one1zfeegaapgy7lhkq2g4u5sgfntavn45emvju3kc\",\n                        \"reward\": 9.7150776927581806417206e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 9544214062975742908,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6320822443391129090,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1a869ad50qkw0446x3q3mhzx7fm0azx5fvcu7wk\",\n                        \"reward\": 8740909946796125312,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"SNZPool is a professional & reliable POS validator for a dozen of projects.\",\n                \"identity\": \"SNZPool\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SNZPool\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"hi@snzholding.com\",\n                \"update-height\": 3359540,\n                \"website\": \"https://snzholding.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.041636907400789182\",\n                \"blocks\": {\n                    \"signed\": 82649,\n                    \"to-sign\": 83770\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.042575628683252172\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.042673563089160759\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.042807397331993231\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.041944146311398158\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.041737007991593629\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.041738442600846678\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.041345049063764053\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.041985440108084729\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.041217209129241104\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.041703163584554991\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.040406397923772895\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.041399379795560476\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.041672906789842336\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.041163926105772878\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.041749513909554387\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.041908327154680209\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.041430459382384319\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.041357935853095324\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.041673084019959782\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.041589660084420974\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.041718790532655960\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.042700198066519395\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.041062323334917884\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.041529551924475323\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.041253101855797611\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.041468733443634193\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.040484662239941258\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.040948080161685241\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.040621149720086980\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.041120818163284174\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.041636907400789182\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 204,\n                            \"to-sign\": 204\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 19557,\n                            \"to-sign\": 19884\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 303,\n                            \"to-sign\": 303\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23981,\n                            \"to-sign\": 24088\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25002,\n                            \"to-sign\": 25345\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13602,\n                            \"to-sign\": 13946\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 3.3241412270861838672468e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2.6176e+24,\n            \"validator\": {\n                \"address\": \"one1tqa46jj9ut8zu20jm3kqv3f5fwkeq964t496mx\",\n                \"bls-public-keys\": [\n                    \"edb61007e99af30191098f2cd6f787e2f53fb595bf63fcb4d31a386e7070f7a4fdcefd3e896080a665dc19fecbafc306\"\n                ],\n                \"creation-height\": 3359554,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1tqa46jj9ut8zu20jm3kqv3f5fwkeq964t496mx\",\n                        \"reward\": 3.438987247178873811068e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6076e+24,\n                        \"delegator-address\": \"one174vhgptamqr522l6fj6sn2fn7uuhm4muvtznuh\",\n                        \"reward\": 2.6042483516218370269959e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Secure node infrastructure and investment capital for elite cryptonetworks\",\n                \"identity\": \"validation-capital\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Validation Capital\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"andy_blockchain\",\n                \"update-height\": 3359554,\n                \"website\": \"validation.capital\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 120802,\n                    \"current-epoch-signing-percentage\": \"0.999586270810578228\",\n                    \"current-epoch-to-sign\": 120852\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"89051699261644000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.117461607994713449\",\n                \"blocks\": {\n                    \"signed\": 2612290,\n                    \"to-sign\": 2666346\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122037359762899514\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122030958250133787\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124096002274920167\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.122789696139771189\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121202515569397366\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.127004303569936595\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123101420246216136\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119693317601298610\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118314921698882386\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117315973586907208\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.116875256578118335\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115661490869964757\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.117319275656071064\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119914462212333214\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119515968231410208\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.112081549753742576\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120100119302210080\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121050152392199691\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121161931119094154\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120592924098725343\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120144597696428929\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121245414532304476\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118295909311167658\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118702086396736566\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118040540829077548\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118649831683982279\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118563389721002038\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117240150875447227\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118559478660868138\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118076310701127909\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117461607994713449\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 137714,\n                            \"to-sign\": 139219\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 159877,\n                            \"to-sign\": 163443\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 157444,\n                            \"to-sign\": 158503\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 138854,\n                            \"to-sign\": 155251\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 158877,\n                            \"to-sign\": 159479\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 131608,\n                            \"to-sign\": 135905\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 153479,\n                            \"to-sign\": 155941\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 151506,\n                            \"to-sign\": 152733\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 150426,\n                            \"to-sign\": 153789\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 157845,\n                            \"to-sign\": 170108\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 173123,\n                            \"to-sign\": 173168\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 178784,\n                            \"to-sign\": 178834\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 268667,\n                            \"to-sign\": 269010\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 80336,\n                            \"to-sign\": 80346\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98183,\n                            \"to-sign\": 98252\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 91413,\n                            \"to-sign\": 91462\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 90171,\n                            \"to-sign\": 90176\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 4991,\n                            \"to-sign\": 5929\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 8190,\n                            \"to-sign\": 13946\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 9.57821258698468412099712e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.73757383913005609861e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"818fa92a1fb6d63134d96f73231bd39330c5fecc5d8f5c124f508a4d2a9d7c99ba69c6601218b6647fbcd06e95b84500\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.007002745882545238\",\n                            \"overall-percent\": \"0.002240878682414476\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.73770987141546728763e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bbc239e80ce221bd886af2aa739df9ae09c929ae805a21c3f3aa85d32a4ddec38ab6816cb90d4ca22de35ee10ccebf04\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.007002745882545238\",\n                            \"overall-percent\": \"0.002240878682414476\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.701518741542257342439e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1958891e8ab1ec4e2c528f5a89310cec5d52282c313765d256954b20568683660deb834b291ad603cc564fd1cd6af099\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006643414774278012\",\n                            \"overall-percent\": \"0.002125892727768964\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.701380818489893916897e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1d6f1f85f26322febbf7a4e247fc5eb596c6dbc423b189882764aed458ff331f9039f83faa336c0e8d62cb48b1fad905\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006643414774278012\",\n                            \"overall-percent\": \"0.002125892727768964\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.701380818489893916897e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"61c835bed899c970e375f6ce1e1b29783294a386b262efacbb46c69306f345815a6046507b20f301c1438402e5929701\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006643414774278012\",\n                            \"overall-percent\": \"0.002125892727768964\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.701135268905650684468e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"85f2366637f19043d5ce7f95a5b29c3a80661d07fa6896e183e6c715d567d546729691839bf7285f2b01089266fac40d\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006643414774278012\",\n                            \"overall-percent\": \"0.002125892727768964\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.574752449288000108136e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d9700e0c3187201017599418f5fd330547265cd23adf6ffab61246e0e764479f649065f0ca09cbdd37c70988c8e8fb8a\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006622811962513893\",\n                            \"overall-percent\": \"0.002119299828004446\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.576144811729712671991e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bcbf5434cf3885d07076474141a23b666c9ebe56480bec8f4d384f0174d935ce613a2edbbc8a33be5c023392d0656c02\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006622811962513893\",\n                            \"overall-percent\": \"0.002119299828004446\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.575374113115924121234e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"18caa96991cdfda9ad7f6b95cfe2d77ad3102956e6865a211ae7d751937092f98888938655ce3d0cd238860114a82702\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006622811962513893\",\n                            \"overall-percent\": \"0.002119299828004446\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.575884710247748550585e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3f91a010a3037020469ad89cf9dabff813ac2a75ebb1f27fcb7ccd912bd74fa979d3cb8426abddaa6855abb7fde6370a\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006622811962513893\",\n                            \"overall-percent\": \"0.002119299828004446\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.751511146166230325854e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dfbe83358f924eb424afc0b25c5f44d35a45ceb353446cf976ef9988e9a4147f634df1c8afd8b3661e68de2fcfdffc17\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006861584474087284\",\n                            \"overall-percent\": \"0.002195707031707931\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.751642615705289770454e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0c8a858c17af55b4631b9f6b98300281b34d510d84b9ee72110780ccfce0d540ae1401521a13825bd427439e43c68317\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006861584474087284\",\n                            \"overall-percent\": \"0.002195707031707931\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.751783395247542775791e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a6081239b7110e4e325cfbd868e0228a3346c2dad0324d243bfe4c5fc1a9b0c584f9ca272f758e3a845ca50ab973c107\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006861584474087284\",\n                            \"overall-percent\": \"0.002195707031707931\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.751520090486763727849e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a9c5cbb9ee93e31d42dde922a5bac46844c08d98cec14eb352c61dd7716b73d9f79bcee6da30b73747ffd00df8cae583\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006861584474087284\",\n                            \"overall-percent\": \"0.002195707031707931\",\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 9.456972235e+25,\n            \"validator\": {\n                \"address\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                \"bls-public-keys\": [\n                    \"d9700e0c3187201017599418f5fd330547265cd23adf6ffab61246e0e764479f649065f0ca09cbdd37c70988c8e8fb8a\",\n                    \"bcbf5434cf3885d07076474141a23b666c9ebe56480bec8f4d384f0174d935ce613a2edbbc8a33be5c023392d0656c02\",\n                    \"3f91a010a3037020469ad89cf9dabff813ac2a75ebb1f27fcb7ccd912bd74fa979d3cb8426abddaa6855abb7fde6370a\",\n                    \"18caa96991cdfda9ad7f6b95cfe2d77ad3102956e6865a211ae7d751937092f98888938655ce3d0cd238860114a82702\",\n                    \"1d6f1f85f26322febbf7a4e247fc5eb596c6dbc423b189882764aed458ff331f9039f83faa336c0e8d62cb48b1fad905\",\n                    \"1958891e8ab1ec4e2c528f5a89310cec5d52282c313765d256954b20568683660deb834b291ad603cc564fd1cd6af099\",\n                    \"61c835bed899c970e375f6ce1e1b29783294a386b262efacbb46c69306f345815a6046507b20f301c1438402e5929701\",\n                    \"85f2366637f19043d5ce7f95a5b29c3a80661d07fa6896e183e6c715d567d546729691839bf7285f2b01089266fac40d\"\n                ],\n                \"creation-height\": 3359608,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                        \"reward\": 4.8059048844906690128348e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dfd0g3p8z9z0mgk6ydufr4a69kdk3x5wn2xmpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e2whthzfvwq86cyevg3xzgj6ztps58c5vx6hna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1161e+25,\n                        \"delegator-address\": \"one1dtrl3pvd9cfr6vgn6k5sdc7fwvk9p9hqn0gg0q\",\n                        \"reward\": 320477407652024278459,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 8e+21,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zdy6xmss3du3g6t8kpj5j4kvmpyp62n83gh4fw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aurkwpe7p3zz9k2z70xg758m26p7q5wvem5prx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7e39h6z0c0jqx9vu2epx3v5d3d44nx7sqmjsg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d235ehhlcdec9vsg6vua3j6gq2csz3u9hvju0e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yms3yzl9d8jcgqdk0fx8hasn4k4zuaaw0rshu5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1azvl4jf93ndfx8886xrumqmvmta9cv453xak2f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.17723e+23,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 31794960520011623543,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.2765438516450529783385e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1nwjl5832rhrxecpw06v0k56twmqg588lxh27lt\",\n                        \"reward\": 31286310796239288483,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1d5dly885talw7gwptz92lr2eynzrxtjczns0ea\",\n                        \"reward\": 156456232265712805402,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 10105607082442286200,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+24,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 1.797001242583771941512e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1c0stsfewuu9cpna830xhcc482v28gyepfr900u\",\n                        \"reward\": 74227191628262759810,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one105nyzvqzrxlfa3h67najs8yr3q0vjmrpwh7d0c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.99935e+21,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 15599453291817869424,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1q622dgcsyc6tt969vempfusxyc2keydc53alan\",\n                        \"reward\": 156485236525870367413,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1e+22,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 35762967057635163811,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 5190007693837710999,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 13122777288508920920,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Best Harmony ONE Staking Platform\",\n                \"identity\": \"HM\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 4e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Honest Mining\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"support@honestmining.com\",\n                \"update-height\": 3359608,\n                \"website\": \"https://honestmining.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.120398654994126799\",\n                \"blocks\": {\n                    \"signed\": 38652,\n                    \"to-sign\": 40810\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.128555103324032363\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.123277855752342455\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122077841444860799\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.126723661261220514\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120651497612810352\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.126144152545485734\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.125196955440314599\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119103687933660838\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117786682335840843\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117744629087677915\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115996920123103447\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.118795769452863575\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.117900230333138662\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120747318743895103\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.118493851518709864\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119751969000876648\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.122040371121052158\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.122984890115306105\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122848732739500884\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121756810433313560\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121096575548178444\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.122221397941348211\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.119782431586116110\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.120264817206693780\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.120837178872593595\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120893114533781411\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120470287741180104\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.118139882851388865\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120184110926036710\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119969304263550651\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120398654994126799\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1487,\n                            \"to-sign\": 1508\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 24783,\n                            \"to-sign\": 25346\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 12382,\n                            \"to-sign\": 13956\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.1585515405291313181108e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.1e+23,\n            \"validator\": {\n                \"address\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                \"bls-public-keys\": [\n                    \"149b64db1423d6ff7ff8e192ae39cc836ae06bb8b8fc45c1aba84dd87329756ea0041bfb62535d082312a6fcca988b87\"\n                ],\n                \"creation-height\": 3359679,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.1e+23,\n                        \"delegator-address\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Ript.io is a Harmony blockchain dApp warehouse, building all the latest, cutting-edge decentralized applications. DeFi, games, betting, and more! running exclusively on the Harmony blockchain.\",\n                \"identity\": \"Ript.io - Harmony dApp Warehouse - Coming soon! 🚀\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Ript.io - Harmony dApp Warehouse - Coming soon! 🚀\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"admin@ript.io\",\n                \"update-height\": 3400731,\n                \"website\": \"https://ript.io\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 30122,\n                    \"current-epoch-signing-percentage\": \"0.998144343561534893\",\n                    \"current-epoch-to-sign\": 30178\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"26618454592751201900622000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.094812680108670469\",\n                \"blocks\": {\n                    \"signed\": 714257,\n                    \"to-sign\": 724922\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.101708179904274222\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.087726939996814330\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.102582220399649174\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.100510458555325453\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.100097391730721709\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.100200809179596721\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.099191339094976942\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.100747696797214159\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.098948389205497444\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.100006167372308088\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.096879997896133691\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.099272960622877592\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.099986714350394554\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.099316019117595655\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.100730694972863135\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.100517977369321766\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.099420483619599037\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.098006729032664473\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.088481971796270117\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.099904867966978200\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.100105074559978924\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.100080265693318810\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.092184638317966093\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.090903001630877514\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.078799515806510657\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.079082774100143759\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.093995556113187123\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.095022840086755116\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.094361583350036784\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.093365891242270252\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.094812680108670469\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 34269,\n                            \"to-sign\": 34672\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35812,\n                            \"to-sign\": 36112\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34601,\n                            \"to-sign\": 34990\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33982,\n                            \"to-sign\": 34406\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35045,\n                            \"to-sign\": 35268\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33335,\n                            \"to-sign\": 33994\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34543,\n                            \"to-sign\": 34670\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33731,\n                            \"to-sign\": 33752\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33867,\n                            \"to-sign\": 33968\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33721,\n                            \"to-sign\": 33778\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34422,\n                            \"to-sign\": 34454\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34960,\n                            \"to-sign\": 35062\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 808,\n                            \"to-sign\": 816\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 80042,\n                            \"to-sign\": 80344\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 81622,\n                            \"to-sign\": 81868\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 73897,\n                            \"to-sign\": 74171\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 21628,\n                            \"to-sign\": 22544\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 5928,\n                            \"to-sign\": 5929\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 7922,\n                            \"to-sign\": 13946\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.78294274338041845421272e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.74300417043572875976e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"817c6a12af36c867b094fbb51aed5ec7f959ba375c77609f230094a0b7d53f68fe27b7f78e29c73b333c1cd8ac84328a\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.738995085766629313568e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ed59468d36e33f0e2cd21951c55e41420a6736d23ef013eb3a39f6b4a9290c6353c0a3ea996bc5ae65bd4a5776f76c96\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.742402619245572098691e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"aa70ed1b13435ae2dcb18c94441aaae8bb6875f82e3b8ac79e0b150aa19bd80eff0e645bb7f9c11357f3eec08cbb8b86\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.744564620869433879173e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1da48ca1279c4945c620c2e5358355d2dff218ea4b36c8a90e06baedbad673a749854593618000de20936205060d1106\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 2.3015252e+25,\n            \"validator\": {\n                \"address\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                \"bls-public-keys\": [\n                    \"ed59468d36e33f0e2cd21951c55e41420a6736d23ef013eb3a39f6b4a9290c6353c0a3ea996bc5ae65bd4a5776f76c96\",\n                    \"aa70ed1b13435ae2dcb18c94441aaae8bb6875f82e3b8ac79e0b150aa19bd80eff0e645bb7f9c11357f3eec08cbb8b86\"\n                ],\n                \"creation-height\": 3359734,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.7214976e+25,\n                        \"delegator-address\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                        \"reward\": 7.5343316732912527590989e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.05112e+23,\n                        \"delegator-address\": \"one1m7r9dpnf2t60yutm5v68akjc3y2490ywfeaxax\",\n                        \"reward\": 3.005543535333624688682e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.041564e+24,\n                        \"delegator-address\": \"one135qsakzl3vt0txnstu5u9jj05c0a4s9wzp83jp\",\n                        \"reward\": 2.1489020070420234044566e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfuvmhz4zgvpeyap5k7qngj25xv84t65vnecye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.51e+22,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 2359847385263872905,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 10419280884962200420,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6836960442146978101,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 3917307233444962985,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5e+21,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 17984537928500461050,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 21810177968842405319,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"a group of cryptographic infrastructure companies consisting of software development and cryptographic compute facilities\",\n                \"identity\": \"CypherMines\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"CypherMines\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"suppasit\",\n                \"update-height\": 3472725,\n                \"website\": \"www.cyphermines.io\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.120113646134942838\",\n                \"blocks\": {\n                    \"signed\": 144776,\n                    \"to-sign\": 146952\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.123339330435163266\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122332000428439095\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124500245109115375\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.126604606806472276\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120753853077224795\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.125206178456165700\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.124287483472996946\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119447051338345593\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118032554830791044\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117899564957804715\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.116312123854898005\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.119191676952653925\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.122243603844689492\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121348427165168439\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.118990784833282429\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.120054488455275871\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.122403087075728515\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.123718895789959865\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.123510534983962179\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121582603895907344\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120461688940578733\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121452595889008797\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.120022241760008748\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.120497253990798561\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.121265037463577932\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121106425343722935\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.119572303750895316\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.118170981351658137\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120021327826744731\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119748713915655595\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120113646134942838\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 406,\n                            \"to-sign\": 406\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 39605,\n                            \"to-sign\": 40881\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 19820,\n                            \"to-sign\": 19875\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 601,\n                            \"to-sign\": 606\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 45605,\n                            \"to-sign\": 45882\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25109,\n                            \"to-sign\": 25346\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13630,\n                            \"to-sign\": 13956\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 4.7578644573310661684748e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                \"bls-public-keys\": [\n                    \"0c625906b4a10a9772ad58099ab35cb0e959e5e7231a05a5bda30141b5448b4e8cbc4f623d4def4633f8845b48c09183\"\n                ],\n                \"creation-height\": 3359847,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p3u89p0p4nxaj5sdcx0s20g5u9a3xjccjmfwuu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ljvq9tkvfp583zzl85mgjh3qjvjufnuwmn7krv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12c23ekslj469g0g0tu9jcvecfkla7rahmrhe37\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19l9equxmql4jkcah8g4f6qva732npajarffj6q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhsvtu2hppmhxemycxr0kujwlgefwn7lu09vwp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jnm0mmlw2rur0hjvq3nl4uw3v7r9fd3gjvzcna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"积极管理的独立节点运行者，支持去中心化。\",\n                \"identity\": \"G.E.M.\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"0.150000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 3.5e+22,\n                \"name\": \"G.E.M. ♓ 独立节点 ♓\",\n                \"rate\": \"0.060000000000000000\",\n                \"security-contact\": \"stakingwithgem@gmail.com\",\n                \"update-height\": 3469044,\n                \"website\": \"https://staking.harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1sgcpjc405ueglhp5udsskjxcn8crrc2lmuf35c\",\n                \"bls-public-keys\": [\n                    \"24490f5de1e89cf19c5f11298ea9fd9ba33f51f5397a0a2f4c04bd2600304a262d7c2eb4375786d35cb6cba9e0b0108c\"\n                ],\n                \"creation-height\": 3360090,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sgcpjc405ueglhp5udsskjxcn8crrc2lmuf35c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Shadowstake1\",\n                \"identity\": \"Shadowstake1\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Shadowstake1\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"Shadowstake1\",\n                \"update-height\": 3360090,\n                \"website\": \"Shadowstake1\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1teymhzlyuxv73hw78gy7vlfuyv3e4stvsmer5l\",\n                \"bls-public-keys\": [\n                    \"0731ccbf196190b1b8aa3b05aae26a22e16812438aa5cd0cca0e9661123ec6fdecfe1a9f7c5a68c227e4f81f534b1f19\"\n                ],\n                \"creation-height\": 3360122,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1teymhzlyuxv73hw78gy7vlfuyv3e4stvsmer5l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Shadowstake2\",\n                \"identity\": \"Shadowstake2\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Shadowstake2\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"Shadowstake2\",\n                \"update-height\": 3360122,\n                \"website\": \"Shadowstake2\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 116586,\n                    \"current-epoch-signing-percentage\": \"0.995066744051073709\",\n                    \"current-epoch-to-sign\": 117164\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"33507604186894275000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.038632506874187848\",\n                \"blocks\": {\n                    \"signed\": 2322602,\n                    \"to-sign\": 2360248\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.116915495717224157\",\n                        \"epoch\": 228\n                    },\n                    {\n                        \"apr\": \"0.115163940762547548\",\n                        \"epoch\": 229\n                    },\n                    {\n                        \"apr\": \"0.088083753975553673\",\n                        \"epoch\": 230\n                    },\n                    {\n                        \"apr\": \"0.093506404753694327\",\n                        \"epoch\": 231\n                    },\n                    {\n                        \"apr\": \"0.097123795136013775\",\n                        \"epoch\": 232\n                    },\n                    {\n                        \"apr\": \"0.093171473730417049\",\n                        \"epoch\": 233\n                    },\n                    {\n                        \"apr\": \"0.097581659273515017\",\n                        \"epoch\": 234\n                    },\n                    {\n                        \"apr\": \"0.094764059972637087\",\n                        \"epoch\": 235\n                    },\n                    {\n                        \"apr\": \"0.095307759531728871\",\n                        \"epoch\": 236\n                    },\n                    {\n                        \"apr\": \"0.095900792621137564\",\n                        \"epoch\": 237\n                    },\n                    {\n                        \"apr\": \"0.096965781468829093\",\n                        \"epoch\": 238\n                    },\n                    {\n                        \"apr\": \"0.097906794508918683\",\n                        \"epoch\": 239\n                    },\n                    {\n                        \"apr\": \"0.098989641381658417\",\n                        \"epoch\": 240\n                    },\n                    {\n                        \"apr\": \"0.096002531649165447\",\n                        \"epoch\": 241\n                    },\n                    {\n                        \"apr\": \"0.097334465766404685\",\n                        \"epoch\": 242\n                    },\n                    {\n                        \"apr\": \"0.098003428798527650\",\n                        \"epoch\": 243\n                    },\n                    {\n                        \"apr\": \"0.097336255852841272\",\n                        \"epoch\": 244\n                    },\n                    {\n                        \"apr\": \"0.097857339525888939\",\n                        \"epoch\": 245\n                    },\n                    {\n                        \"apr\": \"0.079267090576865270\",\n                        \"epoch\": 246\n                    },\n                    {\n                        \"apr\": \"0.079008993819205483\",\n                        \"epoch\": 247\n                    },\n                    {\n                        \"apr\": \"0.078085563236084435\",\n                        \"epoch\": 248\n                    },\n                    {\n                        \"apr\": \"0.077153501793515729\",\n                        \"epoch\": 249\n                    },\n                    {\n                        \"apr\": \"0.076918015198918101\",\n                        \"epoch\": 250\n                    },\n                    {\n                        \"apr\": \"0.076503719911233130\",\n                        \"epoch\": 251\n                    },\n                    {\n                        \"apr\": \"0.076165213911138385\",\n                        \"epoch\": 252\n                    },\n                    {\n                        \"apr\": \"0.075982384768770242\",\n                        \"epoch\": 253\n                    },\n                    {\n                        \"apr\": \"0.075994276890178624\",\n                        \"epoch\": 254\n                    },\n                    {\n                        \"apr\": \"0.076450899366876417\",\n                        \"epoch\": 255\n                    },\n                    {\n                        \"apr\": \"0.076378540767763277\",\n                        \"epoch\": 256\n                    },\n                    {\n                        \"apr\": \"0.075589954689444735\",\n                        \"epoch\": 257\n                    },\n                    {\n                        \"apr\": \"0.038632506874187848\",\n                        \"epoch\": 258\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 133759,\n                            \"to-sign\": 136829\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 105462,\n                            \"to-sign\": 105803\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 154187,\n                            \"to-sign\": 154898\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 150523,\n                            \"to-sign\": 152726\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 153664,\n                            \"to-sign\": 155584\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 145575,\n                            \"to-sign\": 150852\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147285,\n                            \"to-sign\": 151496\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147564,\n                            \"to-sign\": 150726\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147582,\n                            \"to-sign\": 151432\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147582,\n                            \"to-sign\": 151385\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 168017,\n                            \"to-sign\": 170214\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 138325,\n                            \"to-sign\": 139840\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 154910,\n                            \"to-sign\": 158670\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 204,\n                            \"to-sign\": 204\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 36465,\n                            \"to-sign\": 36501\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 910,\n                            \"to-sign\": 911\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 88820,\n                            \"to-sign\": 88923\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 127381,\n                            \"to-sign\": 127810\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 57801,\n                            \"to-sign\": 58280\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 8.09256849894713092101376e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 24641078843139038796,\n                        \"key\": {\n                            \"bls-public-key\": \"5ecedd158925d1a991edd9dcec5e3053902392f8e78b5dd3f9b1e88d49d66dc48287ad1369ae978c6217ba759fa46911\",\n                            \"earning-account\": \"one1u94mkkzdjcudwk7wzlm2sxjpsnmm6havuz45w7\",\n                            \"effective-stake\": \"6701520837378855000000000.000000000000000000\",\n                            \"group-percent\": \"0.006947636667615521\",\n                            \"overall-percent\": \"0.002223243733636967\",\n                            \"raw-stake\": \"8177188738374700000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 24641078843139038796,\n                        \"key\": {\n                            \"bls-public-key\": \"564ce8478ab2d63b05bcec1a80fd61e6036d805ef146742e7369c8b8d164899d2e8000c62bd2590011aa84e54a41620d\",\n                            \"earning-account\": \"one1u94mkkzdjcudwk7wzlm2sxjpsnmm6havuz45w7\",\n                            \"effective-stake\": \"6701520837378855000000000.000000000000000000\",\n                            \"group-percent\": \"0.006947636667615521\",\n                            \"overall-percent\": \"0.002223243733636967\",\n                            \"raw-stake\": \"8177188738374700000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 2.042184347563796543527e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"188ea953e0eedecada1318916c0a581aa3fe06db0a1f4bc05cbab1c354f0e36c5e8ef668fc629beddaa7ba2975284f8e\",\n                            \"earning-account\": \"one1u94mkkzdjcudwk7wzlm2sxjpsnmm6havuz45w7\",\n                            \"effective-stake\": \"6701520837378855000000000.000000000000000000\",\n                            \"group-percent\": \"0.007013825952933105\",\n                            \"overall-percent\": \"0.002244424304938594\",\n                            \"raw-stake\": \"8177188738374700000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 2.042184347563796543527e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1a56e98ccb400503e8f13b00e52a209794006887376afd718e82c60c285f2be1ee4a8ba56a4f71381f50f6577d4c2e86\",\n                            \"earning-account\": \"one1u94mkkzdjcudwk7wzlm2sxjpsnmm6havuz45w7\",\n                            \"effective-stake\": \"6701520837378855000000000.000000000000000000\",\n                            \"group-percent\": \"0.007013825952933105\",\n                            \"overall-percent\": \"0.002244424304938594\",\n                            \"raw-stake\": \"8177188738374700000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 0,\n                        \"key\": {\n                            \"bls-public-key\": \"01b7fd906c43de9d22d16ccd5a4139c6d214f2586d08bf360eaec9b0bbc0696219a4aeab884fa8f7cb94dc17e6245493\",\n                            \"earning-account\": \"one1u94mkkzdjcudwk7wzlm2sxjpsnmm6havuz45w7\",\n                            \"effective-stake\": \"6701520837378855000000000.000000000000000000\",\n                            \"group-percent\": \"0.007113561470678375\",\n                            \"overall-percent\": \"0.002276339670617080\",\n                            \"raw-stake\": \"8177188738374700000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.41767714743115e+25,\n            \"validator\": {\n                \"address\": \"one1u94mkkzdjcudwk7wzlm2sxjpsnmm6havuz45w7\",\n                \"bls-public-keys\": [\n                    \"481be1a8c3ad5f34c7de03287826d85bb373becd928594925093037d7838f5486fea860fa059d1d7e15ba88d4c44c584\",\n                    \"188ea953e0eedecada1318916c0a581aa3fe06db0a1f4bc05cbab1c354f0e36c5e8ef668fc629beddaa7ba2975284f8e\",\n                    \"01b7fd906c43de9d22d16ccd5a4139c6d214f2586d08bf360eaec9b0bbc0696219a4aeab884fa8f7cb94dc17e6245493\",\n                    \"9b90e9fee7f5d0d96a289bd489038f21fe161cf25d3dc725a36d60fb4355c046d1bfe6550534f5b774e95834749b5480\",\n                    \"5ecedd158925d1a991edd9dcec5e3053902392f8e78b5dd3f9b1e88d49d66dc48287ad1369ae978c6217ba759fa46911\",\n                    \"1a56e98ccb400503e8f13b00e52a209794006887376afd718e82c60c285f2be1ee4a8ba56a4f71381f50f6577d4c2e86\",\n                    \"4a2611d81443cda4fcfba7af82fb4fd69bcc75c352138c15c439d805f33a8240f6984ff90526eb75f73b8b41ac585217\",\n                    \"564ce8478ab2d63b05bcec1a80fd61e6036d805ef146742e7369c8b8d164899d2e8000c62bd2590011aa84e54a41620d\"\n                ],\n                \"creation-height\": 3360134,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.275e+23,\n                        \"delegator-address\": \"one1u94mkkzdjcudwk7wzlm2sxjpsnmm6havuz45w7\",\n                        \"reward\": 6.7778796506618255772987e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one13zqn0g4r3zs9ppjqqzyan6h9vzdznndw9t33zh\",\n                        \"reward\": 2.221362558712242968669e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.875e+21,\n                        \"delegator-address\": \"one1adyd3udxj05yutue6c2x4gk6m76hgn843as87r\",\n                        \"reward\": 41650547975854561598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1lj4fj7tz2ftp6ahcxsk07usqvaedu524den8kk\",\n                        \"reward\": 4165516147544548496,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+23,\n                        \"delegator-address\": \"one1jkr4mqpee3gqeykql0cchmul4e2k5x35h9kutm\",\n                        \"reward\": 2.776703198390303709064e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s7s40ku4ms63066h34xwmm5j5k4jwk74gml5nx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 22213625587122495282,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.235946918735e+23,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 1036214257206027828,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0478e+23,\n                        \"delegator-address\": \"one1th6dqkvnsc9wc023mr306yykflcqlpssmxzqp6\",\n                        \"reward\": 2.065327299971434345009e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xjq4xf4uhd9fyszvm2aw63j4hvhcddn0aq4hg7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.0373897212251558588409e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 18972259924234345258,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.995e+23,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 23017976395160662924,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 6776452851143206330,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 2735529111521974269,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 99185101190646138488,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7018040769e+22,\n                        \"delegator-address\": \"one1tlqxc0t908dxhmc7cqnpsn70g2dlglsxhuh2rq\",\n                        \"reward\": 111034532676822921468,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 9318781831003126123,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6163964534980536621,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 72847124422687901074,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 1.1102209349963514046365e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00005e+23,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 555138223021550725147,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.398741669e+21,\n                        \"delegator-address\": \"one104fv5j5a935yz2vhxhdy62dlvcn3f3eepnhr5j\",\n                        \"reward\": 26863276792613192202,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.756e+23,\n                        \"delegator-address\": \"one1pcnt5c4t5r8v2rtp26tr8g4eykf64ld9qr0pgf\",\n                        \"reward\": 77372562402634758036,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 115625662149659835,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.15e+22,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 30489172196647747045,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Figment Networks Inc.\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.250000000000000000\",\n                \"max-total-delegation\": 1e+30,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Figment Networks\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"security@figment.network\",\n                \"update-height\": 3475661,\n                \"website\": \"https://figment.network\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                \"bls-public-keys\": [\n                    \"f73b1ff6f5544c6a856efb2f56588fe3fed94f5f837d5b6507e2640090b937819707dbbf4e2a4a6f0a48eced5d4f090a\",\n                    \"86cdbf48388177fca81eb5ed04890bbe003f141f2215cbc44ddf1dd3ec5e7eb7b55adf386b4cdeff7300517085744516\",\n                    \"4315b11cf5452ea1729f5a251be64acb98c765bf02c3b1d0b3cac3fb681b8643924c2d629ae29cdc3c9fa9ba7616ea0e\",\n                    \"4cf21bef39d871ee24c8ed298d02b02e2b394fcb9849beee46a8f0663ebd42a54cd6f91347a995fa9d60c545fbdae412\"\n                ],\n                \"creation-height\": 3360285,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"“203OGS”\",\n                \"identity\": \"BCK NODE\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.500000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2.000001e+24,\n                \"min-self-delegation\": 1.75e+22,\n                \"name\": \"BigCryptoKing\",\n                \"rate\": \"1.000000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3360285,\n                \"website\": \"https://twitter.com/BigCryptoKing\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1vmkzy3a34ppemm2yhtc97hlfssy9g4qc3gglr7\",\n                \"bls-public-keys\": [\n                    \"2b48469cc67c03fde78b71987876b74199e9e8d94eb5ed1ba95ef1adabb86463a7b202d27df29739e33eba59fbf3518c\"\n                ],\n                \"creation-height\": 3360458,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vmkzy3a34ppemm2yhtc97hlfssy9g4qc3gglr7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jpxwmkc4ad7p0p66ya6vl3c379qwhuywqrq95v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wu6lcfdhh0llcv8pndv2qr2kfnaaj77lwcj787\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10cg3jrdvpx76n97v9gnrx2tsashl4fu96wlwgl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zm6h6y06cg3lmnlwnlq7l89ec07vq0hptl6ms8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Micabytes-Validator\",\n                \"identity\": \"Micabytes\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.050000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HarmonyPH-Micabytes\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"micabytes@gmail.com\",\n                \"update-height\": 3375015,\n                \"website\": \"micabytes.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du\",\n                \"bls-public-keys\": [\n                    \"e13041c650a66effe42014a5e7fc708092edb5691adbe288633d8657083b1ae17eb18f692602d91b0dea9f4362f02f19\"\n                ],\n                \"creation-height\": 3360461,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lpgxyxvgxnprgflx4myzh5m9se83u0racw22du\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tskp6s7dx5n2wqp7282390qcpzvuy5fa3n6kgg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"ALWAYS ONE Staking - Hosted on Google Cloud Provider - With ALL GOOGLE Infrastructure and Security - Fees Always 1% - Telegram: @Allayom - SINCE THE  BEGINNING - Site under construction.\",\n                \"identity\": \"ALWAYS ONE\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.030000000000000000\",\n                \"max-rate\": \"0.030000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"ALWAYS-ONE\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"Telegram:@Allayom\",\n                \"update-height\": 3360461,\n                \"website\": \"Always.harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.115966029767856684\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121391602862233666\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123475443451912925\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125121152874416456\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123288288905296383\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121651066407914297\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121726138641604294\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121042897273287908\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122596676274460475\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119300760210212838\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116769743420600473\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117333021904919031\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116469719010173541\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118958538766360547\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119400550563459859\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119727121398076693\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116528351798441028\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118227673424731734\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120174736095506709\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.117934599352106006\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118404795999045899\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.115737775669337434\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.117499569374367012\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.115182626975470795\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.115838288955890607\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.115172468977415398\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116621447757384915\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116542936811110289\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114597643352296936\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115897639524755035\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115461190907488383\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115966029767856684\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.0000736579e+22,\n            \"validator\": {\n                \"address\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                \"bls-public-keys\": [\n                    \"f1558e3fff2d89c37acec3d055bf0131c864fb222574bef27ca0af13dd3fd73173d8e818d842b117f5c6d5bcd545250d\"\n                ],\n                \"creation-height\": 3360476,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0000736579e+22,\n                        \"delegator-address\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Twitter: @Mintbes\",\n                \"identity\": \"Go BTC go\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Mintbes\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"@JosebaSdB\",\n                \"update-height\": 3360476,\n                \"website\": \"Not_Yet\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 123516,\n                    \"current-epoch-signing-percentage\": \"0.999457854235614931\",\n                    \"current-epoch-to-sign\": 123583\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"98142762070403742856999999.999999999999999986\",\n            \"lifetime\": {\n                \"apr\": \"0.118050325612354145\",\n                \"blocks\": {\n                    \"signed\": 2430682,\n                    \"to-sign\": 2450497\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122130281514460267\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122137780333754202\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124524049381164161\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.126293725219017790\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120289094183189652\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124426864788400738\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123470652906540522\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.120410235600508067\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117866014101228053\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117419045497266697\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115845004425277583\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117285608320447507\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120028775297138192\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119694460411388506\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119840528164162006\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118782423521342543\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120735226204377349\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121332827218752490\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121056035870461149\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120606285774586964\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119870756718800546\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121903515888412316\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117545521546468076\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118222525080066623\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117922503412152471\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.112095155509634516\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118331669527328213\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.116812476772062277\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118293236655474520\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118035575665371679\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118050325612354145\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 148744,\n                            \"to-sign\": 148754\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 167612,\n                            \"to-sign\": 167638\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 166379,\n                            \"to-sign\": 166398\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 165857,\n                            \"to-sign\": 165868\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 151444,\n                            \"to-sign\": 151587\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 148927,\n                            \"to-sign\": 149076\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 146890,\n                            \"to-sign\": 147051\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 148667,\n                            \"to-sign\": 148723\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 182737,\n                            \"to-sign\": 182845\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 184790,\n                            \"to-sign\": 184944\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 188358,\n                            \"to-sign\": 188497\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 202707,\n                            \"to-sign\": 207942\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49113,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49152,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49148,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49455,\n                            \"to-sign\": 49455\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 71364,\n                            \"to-sign\": 71534\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35822,\n                            \"to-sign\": 49146\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 8.70817738123998455885416e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.458573205451877895251e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fe809303969f91a644580f1515e6d3029802c3a964a5eb6413ec2a72c1e17c70c795ae72d8647af9aa68538b368ac009\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005694596592679134\",\n                            \"overall-percent\": \"0.001822270909657323\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.458236434592889500669e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9756abbc889d65aa2739fecc1bc7188640395c003de39c4704525136764d5b607750fb86f8d6b93a784ff52456147b01\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005694596592679134\",\n                            \"overall-percent\": \"0.001822270909657323\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.458246412729372711579e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e3750661e4996422239dbdc369793e3cd248c6f4ad54f17145a5396347af67abc8fac82a5e51a45055b483874b9ac691\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005694596592679134\",\n                            \"overall-percent\": \"0.001822270909657323\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.457995512842042429635e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2a2091d221e02a0982a4c4501f94d88980ccff0a447b3d47d0f78aa1e77504daca95cc35698ceaa1c984b819af5a160d\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005694596592679134\",\n                            \"overall-percent\": \"0.001822270909657323\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451744680157071517209e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c1fdc6946494e5caf6590c04b8e38172b481cdd570b884628dec1a1e4c8a553b697cfa5c6ae678003b6b73e5903d638a\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451849306211273507141e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6d14b744ddc346f422d50d9df92e885732fa4963192cec2023390056f04afebe7accb5fdb8a17deeabba46b0d055a802\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451849306211273507141e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1781c77e68eb73118dc75cbaa5c3531f76434462463b2e6a07a91ed5c0a6cc85c14491f64a8bce7165feaf619519ef86\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451849306211273507141e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"417c2b9d293c24c03cce180d279968855abcd8407a56ad3d38ee41f7231da51adc90f9afb1f6f054c28cac4465cb9296\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451849306211273507141e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"907d2fcf1857be1d1880f86af693e0def624a2d886eb19ab6002e2aa0965a06b0bdcf065ef768da4ff7d0fa5f1977d0a\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451849306211273507141e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8a8baf28a1aa17c58a30a8472ddba616e9b5c37105f2d754530850927722144f4b5b263de9339aa13a07013654559586\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.451849306211273507141e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7c5ca6fd99109e79b2ba94caabba3e8b0e40785fc15e9b62a6804ed7ec6ff04b3a954172290b1e2dd9e26edfefd8ab02\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005676936292117167\",\n                            \"overall-percent\": \"0.001816619613477493\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.499820536557774150031e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"59cd2977ef1f46ade77b8dc56d26883acf9f1e8b05eea76f1a35f4ef636d241d4d63c35a7aa3873ce64bcca76018e213\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.500124251105964486916e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d2f6b1c9903d38fde61a77a293ec8c9107255ff7867bcfd8e9189b1fcb1ea220fc55a35c81bb0ad1a32cd39ee06f8683\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.499820353485661475412e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f2a4539f1251cc5b173d43d52ffc41f95da5999e782f8c3f82bdd76d2f85fc4ce35ebca5fd6130fb018efd3bb140b78b\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.500490339343909284081e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d57cd6de45014b79f81a7752deb0c385a324b0efaed86a8c06a1b5d4212430d21a7361f2f799f434967d5558aea85e8b\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.499902131712590191927e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"cb6a52fd791c3afb7a0243fa1b5388ce451707ecf94ef7262905929db69588d68ad027c8736d6a868195ab740a459c8f\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.50002736606667470564e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"38f4891a6abe036c75d1dadcdf8c19f8769d0ba01c421fe1b8fc2c5b681416251ccb77abc51c336228bd74bf345bc407\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.498808388899931758385e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"365ebf1f7867198e2c3291e515717e0caa0b8eb65dc181a178dfe5dde0cdffc354d3c40fd5cedff9e192cdb6ffdf350f\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"group-percent\": \"0.005881607109314342\",\n                            \"overall-percent\": \"0.001882114274980589\",\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 9.6081119492526e+25,\n            \"validator\": {\n                \"address\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                \"bls-public-keys\": [\n                    \"52775efdc882ad2312ef8f056b70504d077048d12bf7235b478f19c8f832f16724624909c7249cb37ae87741d94a8e84\",\n                    \"e3e50f1b92b3346e653518f01fec2171b0c95811c9d8675db308c578bce2cbae7a0e3c089e1a687effd3d03b827e258c\",\n                    \"4cc7b607f5efab4e337c2502fa67f4de40357f7bee37ec4128bb9813d96f83745ea8602694178806f1137ab6062b8218\",\n                    \"d57cd6de45014b79f81a7752deb0c385a324b0efaed86a8c06a1b5d4212430d21a7361f2f799f434967d5558aea85e8b\",\n                    \"1a38d6b2ea897a1080af7770a3e54a541360520f8e8ee3fdb58e0b32e683b872cb3103d52048d2dac066386a67bf600c\",\n                    \"434c21de79dc7f850ad19687836fde0363f6757e8ec2d459d92918a695a7e43d85748cadaaed8978cf63cb5a141b4b08\",\n                    \"58bfef67d75479776ede531368c0ffa2ebe0011ba75e22e1325b7e8cfc192337835070ff687e6e622e1ebf3deda9a588\",\n                    \"c3d7ed07e4cafb60f783e282b58a711668be803089f04a442aa0e8f77ae78c594913a796d5f41ab344dab0d63f59b18c\",\n                    \"b01be805ee5b3d245350051029c99869313669c8c18ac9acdd0f61beb1aa1d6ce5e54bc762d5a874fede59ac4aca3210\"\n                ],\n                \"creation-height\": 3360566,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.86942182e+22,\n                        \"delegator-address\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                        \"reward\": 2.986273638467805383309e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kcmct2rrvxhy0xalrjzgglcmmytdw26phzxg6v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19day69t6zzqrk3yr5086v9892c9ajvkw84fegv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e2whthzfvwq86cyevg3xzgj6ztps58c5vx6hna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n                        \"reward\": 2.821524869016757255286e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.01e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 108730027376179814298,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.14401509e+24,\n                        \"delegator-address\": \"one1atdwrxe98t8kx2cy9r42qjvuslps7dqtxtn6aj\",\n                        \"reward\": 1.1825224282103195121e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kj6jtey9esdpwv4qpqsgldzqckpqe6padlp04k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.25e+24,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 1.062890918368593275492e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.147289e+24,\n                        \"delegator-address\": \"one1fa40ekglflnh0rl4ed2rhf2gxywrg9wgqwgu7l\",\n                        \"reward\": 2.140702097077995321604e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.33914e+24,\n                        \"delegator-address\": \"one1pc3yfnkrj0mey98nla8aswftyy23nat38hku2m\",\n                        \"reward\": 2.502872520400430106123e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1wf8dzkk2f53hpkgd2vc3t8k5ydw8e6qf7j6043\",\n                        \"reward\": 350268268364996035756,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.15601417e+23,\n                        \"delegator-address\": \"one1hyqgueh0fv7mwwtt82f74wq9guzmw8ytf74qhn\",\n                        \"reward\": 2.946641574635808489222e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                        \"reward\": 57089545921794445,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.184051484e+21,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 3595537835526950764,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2111e+22,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 842904566990414797,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zr9pqt6nhls5q4qesnl2v609umrqrh9hs2kdqh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.57e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 94567672058316398977,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.0965484252851500911987e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8880598187e+22,\n                        \"delegator-address\": \"one1wml3558gjdgfa739sjyrgx34ehdc5z28ujy7nh\",\n                        \"reward\": 544497247285922796230,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfuvmhz4zgvpeyap5k7qngj25xv84t65vnecye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qa4cn2u9axkz545ys6mlzk37erl365xqmn3nxd\",\n                        \"reward\": 15771047528577139186,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 8702253198112362757,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7509e+22,\n                        \"delegator-address\": \"one1cnuwda5cm4ghmz3qhxhjd7je3jg7uz9p5tuwff\",\n                        \"reward\": 133504578230619898169,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.44402e+23,\n                        \"delegator-address\": \"one135f4zp70a6dsv759rx72f7t49ev8hmqn67e4ta\",\n                        \"reward\": 483235909618108888401,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.35e+22,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 28699486323752047283,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t37kzu473luvuz99ec3mjafqpldxnvvp9nnfd6\",\n                        \"reward\": 37933935501589854240,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 4.975e+21,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1t6ynwcj7wtd2t8lpcwdxsgzh2j36unngd3l4u2\",\n                        \"reward\": 33068163492691423926,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 34594091580408282833,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6cfkvgjyxw7l89urs25rqe57mkx304und53de\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.81038e+23,\n                        \"delegator-address\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                        \"reward\": 118326225077070957123,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 157013492023677082974,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 9757394631606521435,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6918818316081572593,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 7151659929767952767,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.049e+21,\n                        \"delegator-address\": \"one1daf4g7ulu9hd6tr8wa78sz6pdj5ef59lv7vj72\",\n                        \"reward\": 2284152132794325985,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16qnqy34wvj3q2v75ul9ss3svvzhnxwhz2wq3sv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.48e+23,\n                        \"delegator-address\": \"one1fnrlvje767q02th6xgln763xvplw5pswwkj77m\",\n                        \"reward\": 1.545626773686910934274e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6xz73724nja8cn2c2d2gun2n5nenyr7da8r64\",\n                        \"reward\": 1161338123949164312,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12yctampe4hqeug668v48kd2tvm85j0u0lk9lh9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.157e+21,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 288257474651034277,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 16719168534592504531,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uevnvfzez0kk0vkc2p45208neatzsmuwn6n0zl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1780919271757236242,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+23,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 157517741231163732439,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.689e+21,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 48424285132358365268,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.51319e+23,\n                        \"delegator-address\": \"one1psr27d55xca2yv7l0mtdqwjvcjry7mc7lsjvqs\",\n                        \"reward\": 255442958948142999990,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 60382922369126357802,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 108569833454504544,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9wkftf7e0x0eee65wfucaet5akpcek48j0a78\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6721118268e+22,\n                        \"delegator-address\": \"one1rztveplnzzx5q2za6aucxlckqsek65juvlq73w\",\n                        \"reward\": 55673592498724011385,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1hlatxd4q8ld78djaerr4hhv0g6vcraxxluks97\",\n                        \"reward\": 16228188180340277687,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.92e+22,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 8865224210505713690,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 4385496224686638876,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1219999387e+22,\n                        \"delegator-address\": \"one1gnsker2z6sdepd0a9xm644tlvc4m2x9kgdd2ns\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Co-operatively building the Harmony Ecosystem organically with information, and engagement. We have a 5% Fee.  50% of all ONE earned through fee will be put into a fund which will be used to market Harmony.  https://medium.com/@ogreabroad\",\n                \"identity\": \"Co-operatively building the Harmony Ecosystem organically with information, and engagement. https://medium.com/@ogreabroad\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+30,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Harmony Community Node\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"ogreabroad@gmail.com & apps.support@prarysoft.com\",\n                \"update-height\": 3555334,\n                \"website\": \"https://PrArySoft.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1ds5h88zazdwnc8tk8j2m0t0wk90x23jcj2dyks\",\n                \"bls-public-keys\": [\n                    \"4946b9626ccc478ca7bf7704fcdcbda0a33f6f89de0633f3cd195c40848aa640d61b3e117d21c5b2c1eb7f0d27941407\"\n                ],\n                \"creation-height\": 3360621,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ds5h88zazdwnc8tk8j2m0t0wk90x23jcj2dyks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yxfylrfm3r2vee07kynwjc605nq5nu2suff4me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Affordable validator for people\",\n                \"identity\": \"Validator For People\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Validator For People\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3360621,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25\",\n                \"bls-public-keys\": [\n                    \"aaf3bf3f56decfe5e5b261d1213859e1f20196ddf9f09087ef19fafb8fc6a4c5366c32a95ded3d3134934a88c7e7400a\"\n                ],\n                \"creation-height\": 3360672,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5yhhwn42qnxkj2n6xucrl5plqgy03082xuw25\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"KeepNode4\",\n                \"identity\": \"KeepNode4\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"KeepNode4\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3360672,\n                \"website\": \"keepnode.xyz\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 179540,\n                    \"current-epoch-signing-percentage\": \"0.997887950200088928\",\n                    \"current-epoch-to-sign\": 179920\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"104052112551116609523399999.999999999999999999\",\n            \"lifetime\": {\n                \"apr\": \"0.117656892144714234\",\n                \"blocks\": {\n                    \"signed\": 4643032,\n                    \"to-sign\": 4724993\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.120889850651017971\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.121610350940734414\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122467741277501378\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124084892150142553\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.131992120903099578\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.133256721006815478\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.122552374680020614\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.039860087681801852\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117648467395551967\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116854444833645294\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115479516841411683\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116949528072087990\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119521195617117805\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119100587809211510\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119262353933552814\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117999941511893902\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119760908055520677\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120617353893391368\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.119935050280697502\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.119658068530539288\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.118917342039345409\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120196605418600754\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117383080805281801\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117610483057231919\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117999691054012305\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118159682545617433\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117977308306530905\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.116273895341436692\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117583041645850356\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117378661354044376\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117656892144714234\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 183580,\n                            \"to-sign\": 208932\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 217135,\n                            \"to-sign\": 218292\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 210615,\n                            \"to-sign\": 211492\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 206008,\n                            \"to-sign\": 207148\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 212015,\n                            \"to-sign\": 212864\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 201291,\n                            \"to-sign\": 203402\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 219142,\n                            \"to-sign\": 221072\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 217365,\n                            \"to-sign\": 219532\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 218779,\n                            \"to-sign\": 220946\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 235296,\n                            \"to-sign\": 236828\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 239158,\n                            \"to-sign\": 240406\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 262138,\n                            \"to-sign\": 263296\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 302347,\n                            \"to-sign\": 303402\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 241632,\n                            \"to-sign\": 245049\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 182272,\n                            \"to-sign\": 183201\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 167604,\n                            \"to-sign\": 168400\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 315960,\n                            \"to-sign\": 318174\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 360251,\n                            \"to-sign\": 371237\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 270904,\n                            \"to-sign\": 291400\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.4977333391417355444206e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.465738309985902695952e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c7f6d67cd32103215bdeb574bac7576f553a9dd3028afd138dd8627d200b8c3b09c34e0b2178d3bb85d1ff13bcf30919\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.46445481802375230499e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8047e6aae13b6c4cba7707529d32ffd66e935fe0a624a0b9b744898dcf5e8ea84877f1809cad5d7d9e5dd5eba2ef6189\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.464457568215096649034e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4c20bb0b2837e06c60e7a377798987a66f216c6d6c466b31d024d174a120267a65cf91d25308c6d9206bba1a37073b91\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.463180721115510241511e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e5ea8826643e9962b21abcbf9ee087137ec336a8828600726fd1acce369417a40798b0c52f0cd18d21200768e793aa09\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465738309985902695952e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"575fa22442d33042bee0760b72b2cdc4c9d8f81164a19a190d9923bcfffa750c8e7d10c1efd34553444020e76105e585\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.464025020293631597075e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d7f3aedc704744bbe78a2e85068c2307e6c3c7a3b8bc6495a1a39dd4f2dc503170b3d0e4cb40943d41fa8e795a363e85\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.465738309985902695952e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3af3cc91916bebbc240a5ca9c7aa478a0ffb54ca6d1e6c09089271d48a62072bf769676de303403c3465c45c7ec24e15\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005719716373910959\",\n                            \"overall-percent\": \"0.001830309239651507\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.45338855155464809541e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3a483fca6153214c083b944b69a65eab16aa58b94679ff80151dcd6447541390ae1d0fa176179fc9973c20568abaf88e\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005701978170923529\",\n                            \"overall-percent\": \"0.001824633014695529\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.453748373778465538404e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9b33b36c5d82e80d45fd49f136d76da580b77a21eb68692b0b44accaf8cea8647ad75086f3f872385bc8d25236fe8312\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005701978170923529\",\n                            \"overall-percent\": \"0.001824633014695529\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.454459330651828268048e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8c0f977fc49b0b5741c4c4d25c8db148f401c7e14d9bb4b829931418b47349e6079aff8bda5e1e5976fa0c0bf4162802\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005701978170923529\",\n                            \"overall-percent\": \"0.001824633014695529\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.452447301858051587317e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"433bd1eb567b540d1cf324abc83b3fc33d4a96d7daf9644901cb339bc393b0f300cae82c800f04590cc74bc5f35c6d02\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005701978170923529\",\n                            \"overall-percent\": \"0.001824633014695529\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.504501540763950446868e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fdf618fbaab9588f74ac1b681018f474459afb047afec0dc9df9da8381cebe85a08790bf49f121cba75c2939da9cb68b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.494591008780335975737e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b7c1e4947c0133e786360d605eb8bfb15ef5c39022de9f89546a9fa3792f333e1e50e03436e831571fc9e9fde3d04197\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.496085304875799892296e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2220759df1bd1d68d40fcf746c894283e80088df83bde4618458dc6adb9f180dc0ae361e0d554a5a0f61d3d86d57ba97\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.505395376919113528134e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f9e741cb120862af08828345fb967e66eb3fc5e25b7a6688074b80cdd2acbb898af484110eacdb7ba300da9d39ed2b8b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.492786350080652906664e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dafd8989fd7dcc29ccbd5e38f90f27c990488b7875c3a83bc51268d60f1651ade03bf4c990278351ee4835dcf9234007\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.507444705133796063419e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"66ab282fbb88b2dddb564dee12064f61cb11041aa18ed553338867b0ab8a3f4ea7f48a96ef98a81fbb10bb853188a78f\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.500139449613865577295e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"19a42db0ada7e82134f72dd17e20d2d3ba2e36a33dc8a93c5fc4e40d472403538af282b1a427abfa61371c4814818e13\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.506244679419559921675e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a472acf4f4f3faecb283217b4bf0b99eb019c55dc079afacea88695b63a1b7f3371074981db77929e3859fb2929e490b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"group-percent\": \"0.005907551824005364\",\n                            \"overall-percent\": \"0.001890416583681716\",\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.193863098653367333334e+26,\n            \"validator\": {\n                \"address\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                \"bls-public-keys\": [\n                    \"19a42db0ada7e82134f72dd17e20d2d3ba2e36a33dc8a93c5fc4e40d472403538af282b1a427abfa61371c4814818e13\",\n                    \"2220759df1bd1d68d40fcf746c894283e80088df83bde4618458dc6adb9f180dc0ae361e0d554a5a0f61d3d86d57ba97\",\n                    \"8047e6aae13b6c4cba7707529d32ffd66e935fe0a624a0b9b744898dcf5e8ea84877f1809cad5d7d9e5dd5eba2ef6189\",\n                    \"e5ea8826643e9962b21abcbf9ee087137ec336a8828600726fd1acce369417a40798b0c52f0cd18d21200768e793aa09\",\n                    \"3a483fca6153214c083b944b69a65eab16aa58b94679ff80151dcd6447541390ae1d0fa176179fc9973c20568abaf88e\",\n                    \"8c0f977fc49b0b5741c4c4d25c8db148f401c7e14d9bb4b829931418b47349e6079aff8bda5e1e5976fa0c0bf4162802\",\n                    \"9b33b36c5d82e80d45fd49f136d76da580b77a21eb68692b0b44accaf8cea8647ad75086f3f872385bc8d25236fe8312\",\n                    \"dafd8989fd7dcc29ccbd5e38f90f27c990488b7875c3a83bc51268d60f1651ade03bf4c990278351ee4835dcf9234007\",\n                    \"4c20bb0b2837e06c60e7a377798987a66f216c6d6c466b31d024d174a120267a65cf91d25308c6d9206bba1a37073b91\",\n                    \"b7c1e4947c0133e786360d605eb8bfb15ef5c39022de9f89546a9fa3792f333e1e50e03436e831571fc9e9fde3d04197\",\n                    \"433bd1eb567b540d1cf324abc83b3fc33d4a96d7daf9644901cb339bc393b0f300cae82c800f04590cc74bc5f35c6d02\",\n                    \"d7f3aedc704744bbe78a2e85068c2307e6c3c7a3b8bc6495a1a39dd4f2dc503170b3d0e4cb40943d41fa8e795a363e85\"\n                ],\n                \"creation-height\": 3360746,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.535e+22,\n                        \"delegator-address\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                        \"reward\": 4.254414070559790943463e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.74340314025e+23,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 290273557467729913185,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.600296e+24,\n                        \"delegator-address\": \"one1n38alfvq8g5pf3v9ll2z7unxy9thwkafm8hgl3\",\n                        \"reward\": 2.5782925449010892516921e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 86042701001825942220,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1wlukdnvl5lsvhkfxefnpzqjuc2xjxj2rgwmtaa\",\n                        \"reward\": 319686474245305722563,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.038e+24,\n                        \"delegator-address\": \"one1tpcvm7gc6ux6zs3gap9hdusdsf5f7w48sjserz\",\n                        \"reward\": 3.318215966039238896623e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1ld7ysl9f2rz4pj4kse5alnkrzhftkmj2vma5ct\",\n                        \"reward\": 3.196802315386725746931e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5645e+22,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 24655261872428964247,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+24,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 1.9383754007191268202106e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 61412681787948846395,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 19010155992581707307,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+24,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 111129613415573397359,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 112041852684028052437,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.579874e+23,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 512537420337917973455,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 254158244826760557628,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.29087e+23,\n                        \"delegator-address\": \"one1wcd73jcajz7wsaquzxvcjv94fere2xtqyyjz2q\",\n                        \"reward\": 469335895528685852,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1s7s40ku4ms63066h34xwmm5j5k4jwk74gml5nx\",\n                        \"reward\": 852357674463853054196,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 28978508730550241396,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01e+21,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 1459428002256476607,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.737142047614e+23,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 712369892721624094299,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.1720120376e+22,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 124568528219517245948,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.013e+21,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 14915342343166650109,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 33988445571335142124,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0042e+22,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 45047756925334498400,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 2997508121811950740,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.863e+22,\n                        \"delegator-address\": \"one18w3jggmav7fva93d7h224j50pkj87lf4krp04v\",\n                        \"reward\": 25644983642657908395,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 1.120119208329163182014e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.575e+23,\n                        \"delegator-address\": \"one1jxwwk5z3596gynrz382stsanzug2v52u0d97ql\",\n                        \"reward\": 1.223049144707060049183e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 20974348403775101358,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 103841586552568083582,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+24,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 542748088382719953089,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.0948e+22,\n                        \"delegator-address\": \"one1ar5vx0ehu9lnlmyar5fdduy2t8tc4danjtfv36\",\n                        \"reward\": 933242456607801434027,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.137489253e+21,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 75244919310499819683,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.72487013036e+23,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 139084067251135963933,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.08355554613e+23,\n                        \"delegator-address\": \"one1u8dt4hz56jzksjaw7vayf8d4n5k5tj5heagnpw\",\n                        \"reward\": 5.828222496570706380204e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one1x8kgyyqgslzrm7jrlj4m7rpg285etdywjk7gez\",\n                        \"reward\": 5.229684835211622904149e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.999e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 16129037851077516178,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+23,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 74369274930160911075,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1wsy0f9p245mugshnsud7se805htq3sram33ek0\",\n                        \"reward\": 2.165614896544472281542e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.03e+23,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 24871234932909099490,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.22518e+23,\n                        \"delegator-address\": \"one17mquutrtzjecd0sgaqf3q5ncemxvwg3snve06k\",\n                        \"reward\": 61533287888911724612,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19mqs8kpuu3vzytsq5gmxauxv8g6yf4j93mll7j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 2061200200516953171,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.451062e+22,\n                        \"delegator-address\": \"one1d6vmmq6elrx0z52zv5v7su2sykua8smaxy330d\",\n                        \"reward\": 54156227429560754183,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.29e+23,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 383746489990943892842,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1qpczdf6s376y2qay80ustlr5k3lvtml6y4j5az\",\n                        \"reward\": 1.713235716691836074677e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 236945462582282470368,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wmz9574u0w86hza0ftxvqtuas6j7jsvgjdgjat\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 123528077493027418997,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.40712e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 86371502973538918092,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 4173444369993326620,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.498e+21,\n                        \"delegator-address\": \"one1mdapsxyja33033q4zgdd4zxl9cq7mhmds8dhha\",\n                        \"reward\": 21627274100157360805,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6111e+22,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 183102736555088768,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 27967735383318638332,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 22737910557912496,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1744118921124107106,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1z22h2hedqev9yptfwj2vtwv0wxnuw97u6t8dfz\",\n                        \"reward\": 8770172341885297157,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.999e+21,\n                        \"delegator-address\": \"one19x784ltvty9yyau22y4xlc5yuq3lqdu0flew7a\",\n                        \"reward\": 1396820430194800584,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 125620839699428198779,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.420923545e+21,\n                        \"delegator-address\": \"one1rv6eyu3am6rtl8xq4tgw38g2cpd7j33l2vac7j\",\n                        \"reward\": 55946251029797619559,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 1806978072110454188,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 574557527638630009483,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.009862e+24,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 122428766329050207076,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 45314727660471847724,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 28724318316029846379,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.62e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 92192561215672472208,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.2569792100602036307966e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1693028326e+22,\n                        \"delegator-address\": \"one1eexqspq9vlu73pp4gse0q599xzhz7eln8lu6mk\",\n                        \"reward\": 44937198033810878430,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1e+23,\n                        \"delegator-address\": \"one17zh0n602sshq3akqfrxsfpkyj7udmkx4glwy2u\",\n                        \"reward\": 21791218335271615583,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+23,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 151846212843931637245,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 229449451381517031383,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 20344310629304292930,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1d9vl22yqm43ut87wh2c2lja5yt55jwk62q74a6\",\n                        \"reward\": 85412628766382654257,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qa4cn2u9axkz545ys6mlzk37erl365xqmn3nxd\",\n                        \"reward\": 14971863336276663252,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.08413e+23,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 170020658854232724778,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 19838226411981338520,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+22,\n                        \"delegator-address\": \"one1r0tp6l9g2s4m5np99ec0ugu0kvqc58nhq2mega\",\n                        \"reward\": 92529009245983781813,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.594e+21,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 5896784509069217933,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n                        \"reward\": 327937597793328919172,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 318703381635926820,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.133076484188e+24,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 2.707584114416192935147e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1atdwrxe98t8kx2cy9r42qjvuslps7dqtxtn6aj\",\n                        \"reward\": 50133051249336066205,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1557e+22,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 73163722895087880506,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.95362196763e+23,\n                        \"delegator-address\": \"one1xven3mqyznvta70g4nvum0pk3pmrnyzghf72vz\",\n                        \"reward\": 2.512998079554730572039e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tysvkwnp78hwxkhzh8a4amyea54n580q80v44m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 9433932428291790554,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.63e+23,\n                        \"delegator-address\": \"one1kjncp7r9er5cuvnxxwuw9xquwsgr4q6uqggr97\",\n                        \"reward\": 527997050184685455261,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1wgk7kjup55segu7zluzwsd2nkunatul92ycpdg\",\n                        \"reward\": 2.784082560436953669107e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6709824196421807846,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 33549120982108517179,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zf9gchjhtjnk95h6z7cf0duu76wllfmn44mr8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.24575e+21,\n                        \"delegator-address\": \"one1dztpmj96q2f7rmu8gl8hne8k2z84s8tjmmcj4q\",\n                        \"reward\": 397886619346807287,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 1.2122378751101160815839e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00005e+23,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 606149243501935608375,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0473333333333334e+21,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 485705149424137851,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 455330721430912746345,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3176436215e+22,\n                        \"delegator-address\": \"one1l9jy4x6f6dcr7hzge72099f5269gqupx9hnzzg\",\n                        \"reward\": 52510625556470398886,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 78573026807983560636,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.4315e+22,\n                        \"delegator-address\": \"one1l8lkqr69rmw0lw95l75sln6e2y7l0cjj8ufysc\",\n                        \"reward\": 62971961572186789949,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1c0stsfewuu9cpna830xhcc482v28gyepfr900u\",\n                        \"reward\": 69605253016023270213,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 141867198315690480,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rr5n6qvjxlyhrhnkzxtjslzffrp4trl3wtsuh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3000996902e+22,\n                        \"delegator-address\": \"one1elgrh05nuesu9chyjlev8rlfexfsq4a87xtp2r\",\n                        \"reward\": 6880341951550072951,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1s5sqy8ufg5pegfzv6j4a5n879udsaasu2u5hdp\",\n                        \"reward\": 3034591245322313611,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 46372396445420752732,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fj9k0j3ext5a63l6msqr0rnq5nlgnrl2hwj2sd\",\n                        \"reward\": 5781879739781634118,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 384344438402038271140,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.75e+22,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 30394925009000917758,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0335e+23,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 179101493025632829666,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3e+21,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 10921086195799731021,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one10zsqhjwjwq0wuda38f4y3d7wdymfkcrfkmezqz\",\n                        \"reward\": 2244058807356185598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2e+22,\n                        \"delegator-address\": \"one1wvaxshh8c7kxda02c5pszvme564274x3uaywek\",\n                        \"reward\": 15459637774130670221,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1a869ad50qkw0446x3q3mhzx7fm0azx5fvcu7wk\",\n                        \"reward\": 24341536469929916846,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15ad34lhszdnz7n8uvnmuzd3w0ay3vy8fdt3343\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.18e+21,\n                        \"delegator-address\": \"one1nl0xvlleputa5zzr7rz6ah3x4h99hcp6ke3dzz\",\n                        \"reward\": 1106975041664872404,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.24e+22,\n                        \"delegator-address\": \"one1dnd69723taqllad0efjte0sy3xm5ukk7fjshl5\",\n                        \"reward\": 42676249972762322026,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Validator for Proof of Stake blockchains. Delegate to us for a easy staking experience\",\n                \"identity\": \"S4A01\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 2e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Staking4All\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Shez\",\n                \"update-height\": 3360746,\n                \"website\": \"https://staking4all.org\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 95050,\n                    \"current-epoch-signing-percentage\": \"0.998277564223748608\",\n                    \"current-epoch-to-sign\": 95214\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"40991192666470333333299999.999999999999999995\",\n            \"lifetime\": {\n                \"apr\": \"0.119061887010519618\",\n                \"blocks\": {\n                    \"signed\": 1894038,\n                    \"to-sign\": 1969894\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.127405783752386548\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.122282696907733501\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.000006366088024934\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.128096996144216773\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.124494560124985496\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.138234078676880559\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122204195151299820\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.116343685093847390\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.120904052007841583\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117742498837418014\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125215215379228816\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.113327481795604922\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120103307921565242\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121422191061913285\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.123411797456807942\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.112955031440594797\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.113393652008200902\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.118922301886331427\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122048541974587429\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121001378073843815\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.122946815540233067\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.119744077339482539\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122026802493248250\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.121462349253885434\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117703677545720859\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120931912637684886\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120316210817781667\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.120035481570849478\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.121655031239951322\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119893688887394825\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119061887010519618\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 114521,\n                            \"to-sign\": 114690\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 107665,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 129351,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 130955,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 130911,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 130424,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 130968,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 130755,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 130705,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 130832,\n                            \"to-sign\": 131074\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147406,\n                            \"to-sign\": 147456\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147259,\n                            \"to-sign\": 147458\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 137429,\n                            \"to-sign\": 163822\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15907,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15857,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16018,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15393,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 10534,\n                            \"to-sign\": 11776\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 26098,\n                            \"to-sign\": 44294\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 7.49246246991676133433216e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.594352987899460559612e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"943dc0be8753c7721dd718b749eef9d84ddfaa1e894e3d56ba78a5b496acaa40edc6c3cad7819e5f06ced9ed554c7200\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.577000365242622621646e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"18e9f2ad7b95c78f97ad32ea4d5b84128453b364e44a5d1c5f346e246efc27f8f955a64d4ed51576c07da47ac7b89e04\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.593892809200951371284e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8bfdb9ad1b77ee64a0ac063ccef3db745be87dcf6339ef7c4743ba61c3e98eaaf4955c14198f16b3499c05d2053aaf14\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.577120505656412871314e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"395c6b530de2aa32bd0e826dab68ae37a774d9f6d28334d3ac322d61d2a471aadf2a50c81adbdb8a110d0e6850621910\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.593892809200951371284e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"092b8f3238fe33bf9a2bca8cd3badae60e138fefdf87ac5061479be2730ee3fc7970e0ab25eba38e693004972fd9cc0c\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.593892809200951371284e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"18254f06c00b071310ce55ba3a340485bbb61ea7b4765441e43d0c13eb617954417fef98c8c03937fad8dd9c33ef9108\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.590535865617683494072e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7dec5e3f6909666b5e280e71eb6bfc7ace6ee39378e6752447ac2fd9a93cabc79c1309dcce0e670ebd78dda60ca9a388\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"group-percent\": \"0.006446837242765139\",\n                            \"overall-percent\": \"0.002062987917684844\",\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.4054821847067e+25,\n            \"validator\": {\n                \"address\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                \"bls-public-keys\": [\n                    \"395c6b530de2aa32bd0e826dab68ae37a774d9f6d28334d3ac322d61d2a471aadf2a50c81adbdb8a110d0e6850621910\",\n                    \"18e9f2ad7b95c78f97ad32ea4d5b84128453b364e44a5d1c5f346e246efc27f8f955a64d4ed51576c07da47ac7b89e04\",\n                    \"7dec5e3f6909666b5e280e71eb6bfc7ace6ee39378e6752447ac2fd9a93cabc79c1309dcce0e670ebd78dda60ca9a388\",\n                    \"943dc0be8753c7721dd718b749eef9d84ddfaa1e894e3d56ba78a5b496acaa40edc6c3cad7819e5f06ced9ed554c7200\",\n                    \"18254f06c00b071310ce55ba3a340485bbb61ea7b4765441e43d0c13eb617954417fef98c8c03937fad8dd9c33ef9108\",\n                    \"8bfdb9ad1b77ee64a0ac063ccef3db745be87dcf6339ef7c4743ba61c3e98eaaf4955c14198f16b3499c05d2053aaf14\",\n                    \"f79dd1b6eb7fca5401514eb5d3b0277e942bc2ce2ebcb133a99ba4daab3832371e127a256a82d65ba6f7ac386c22f094\"\n                ],\n                \"creation-height\": 3361036,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.709091e+22,\n                        \"delegator-address\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                        \"reward\": 8957834749287350437,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.24777588e+24,\n                        \"delegator-address\": \"one1hlrny5drxfay0cednc9hpp8suchmvxzd8kn4gp\",\n                        \"reward\": 1743007294583483712,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.475e+23,\n                        \"delegator-address\": \"one19cskpyzumqdqufep0catn67ec9wktvq76dqx54\",\n                        \"reward\": 2.885688908759734608301e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19hjspe6czvrpjwagf48yg6f85jdyym9vaeftg3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.795e+21,\n                        \"delegator-address\": \"one1rjss2qa53ka4v782mhcuy4cndg54zkx2u4l9wu\",\n                        \"reward\": 7889507812888771493,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.13255e+23,\n                        \"delegator-address\": \"one1s7s40ku4ms63066h34xwmm5j5k4jwk74gml5nx\",\n                        \"reward\": 1.080878307056438911787e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 1.584093373586873628318e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+23,\n                        \"delegator-address\": \"one1ex9a46773wtsj455lsjykdmn8al6uqalgnlhmz\",\n                        \"reward\": 1.1738395561056548629101e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.40729399918e+23,\n                        \"delegator-address\": \"one150r6lnl8yqua85vd9v5p2ju7zua62qc936q7ap\",\n                        \"reward\": 1.204988360235743929706e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m2kdtufvkykrrc6ph4gm8xnvvx0zkgqsmlxd42\",\n                        \"reward\": 1095151457849547408,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15rfw9penkjgt402ytdm8t0jqe9fcxx8uwvtr5x\",\n                        \"reward\": 1070393049891893054,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cs9jlefke4sdwzgrruaga7etvrx9506edzf84c\",\n                        \"reward\": 994820179932488056,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h2zjg6zyxah9e5vvm5a0pu44zxjh85l3gwdxu0\",\n                        \"reward\": 1003417709305985976,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1268utfr4kjhwsn06jtf2mnzzuqmsudusdy2jsc\",\n                        \"reward\": 1080564797654184711,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one166x40mhm2mr40y0ea0scq5gjfga0gugcj9wz43\",\n                        \"reward\": 1026050974476862720,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1me35yc0xvnlg6lpdcqsqzfmsr9k5ky7xletse7\",\n                        \"reward\": 1015884207132300390,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 2.9148014744289436444656e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z9wkftf7e0x0eee65wfucaet5akpcek48j0a78\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.62488657149e+23,\n                        \"delegator-address\": \"one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu\",\n                        \"reward\": 625161993494178880291,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6328848140554517445,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 180892252718067453736,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0003e+22,\n                        \"delegator-address\": \"one14xvqeuw9v6mqarw5uathtys6wc3r228sdyp7hg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.53184e+23,\n                        \"delegator-address\": \"one1heszxyzaelycv7s90uyzkfk3yf6km3zxdt87rc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"The most trusted node for CIS Russian speaking community. Reach @NickVasilich on Telegram for support in Russian language. For more details and earning reports check the website link below.\",\n                \"identity\": \"nickv\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 2e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Babylonode 🇺🇦\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"nickvasilichdigital@gmail.com\",\n                \"update-height\": 3486077,\n                \"website\": \"https://hub.forklog.com/companies/harmony/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.355209398896198027\",\n                \"blocks\": {\n                    \"signed\": 182972,\n                    \"to-sign\": 183308\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.888535968297875505\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.181739474426881416\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.541478217468267110\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.401604209016036060\",\n                        \"epoch\": 189\n                    },\n                    {\n                        \"apr\": \"0.409384198998429370\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.355209398896198027\",\n                        \"epoch\": 191\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 202,\n                            \"to-sign\": 203\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20542,\n                            \"to-sign\": 20542\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20178,\n                            \"to-sign\": 20178\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18735,\n                            \"to-sign\": 18735\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25203,\n                            \"to-sign\": 25203\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 56570,\n                            \"to-sign\": 56579\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 41542,\n                            \"to-sign\": 41868\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 5.9732595256508205990952e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2.40791268456193306e+22,\n            \"validator\": {\n                \"address\": \"one1akg6gqea74mmpjvd6qxlmd762v5gfy2e5r7xf2\",\n                \"bls-public-keys\": [\n                    \"66f90c8b2b4b30b1442ecd63efe8c951f9850152570ab076e111405cd7c1ceef694e0f244069e6ddd5cc090de9f22213\"\n                ],\n                \"creation-height\": 3361037,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.40780423844224537e+22,\n                        \"delegator-address\": \"one1akg6gqea74mmpjvd6qxlmd762v5gfy2e5r7xf2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 483231514128000000,\n                        \"delegator-address\": \"one1zefrcfgjuaqxggql0syz28cq40cy6ujwq6zmpx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 601229682748900000,\n                        \"delegator-address\": \"one10p09fugsgse0wl0vwglckw20243tzgx33g0stw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 6.943030852553676934151e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one157rwjephc5y9vt3wc685uqlfy62amjf0ukavcw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1acyxv69xjgunv3z5ymnjt2w70q7rdardr4a3uz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jm9erjgeudx44jxvpyr09u2wevfrjykuvch5kf\",\n                        \"reward\": 364775225306231342,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"unfortunately the big staking of Binance has kicked this validator out of the elected pool. Since we were one of the top validators we intend to come back ever stronger once we get enough stake. Thank you.\",\n                \"identity\": \"n/a\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Finantra.com - TOP validator with multiple nodes\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"harmony@finantra.com\",\n                \"update-height\": 3492257,\n                \"website\": \"Finantra.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 13602,\n                    \"current-epoch-signing-percentage\": \"1.000000000000000000\",\n                    \"current-epoch-to-sign\": 13602\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"17197590409789000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.109775130917288974\",\n                \"blocks\": {\n                    \"signed\": 274486,\n                    \"to-sign\": 275744\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.128819593875176112\",\n                        \"epoch\": 195\n                    },\n                    {\n                        \"apr\": \"0.126387126556967447\",\n                        \"epoch\": 196\n                    },\n                    {\n                        \"apr\": \"0.111165409952114813\",\n                        \"epoch\": 197\n                    },\n                    {\n                        \"apr\": \"0.109504836069694969\",\n                        \"epoch\": 198\n                    },\n                    {\n                        \"apr\": \"0.111033051910375911\",\n                        \"epoch\": 199\n                    },\n                    {\n                        \"apr\": \"0.116342982113453292\",\n                        \"epoch\": 200\n                    },\n                    {\n                        \"apr\": \"0.115533275135231522\",\n                        \"epoch\": 201\n                    },\n                    {\n                        \"apr\": \"0.113671205523944761\",\n                        \"epoch\": 202\n                    },\n                    {\n                        \"apr\": \"0.115341227704317900\",\n                        \"epoch\": 203\n                    },\n                    {\n                        \"apr\": \"0.111525988556573261\",\n                        \"epoch\": 204\n                    },\n                    {\n                        \"apr\": \"0.107246740579886859\",\n                        \"epoch\": 205\n                    },\n                    {\n                        \"apr\": \"0.105291104696663873\",\n                        \"epoch\": 206\n                    },\n                    {\n                        \"apr\": \"0.101456217486134010\",\n                        \"epoch\": 207\n                    },\n                    {\n                        \"apr\": \"0.121287459122485435\",\n                        \"epoch\": 208\n                    },\n                    {\n                        \"apr\": \"0.121530954521738313\",\n                        \"epoch\": 209\n                    },\n                    {\n                        \"apr\": \"0.135241991058942076\",\n                        \"epoch\": 210\n                    },\n                    {\n                        \"apr\": \"0.132654071450264023\",\n                        \"epoch\": 211\n                    },\n                    {\n                        \"apr\": \"0.115347160627511187\",\n                        \"epoch\": 212\n                    },\n                    {\n                        \"apr\": \"0.101581031061283331\",\n                        \"epoch\": 213\n                    },\n                    {\n                        \"apr\": \"0.115482555976539282\",\n                        \"epoch\": 214\n                    },\n                    {\n                        \"apr\": \"0.117611387587961907\",\n                        \"epoch\": 215\n                    },\n                    {\n                        \"apr\": \"0.120687372766583723\",\n                        \"epoch\": 216\n                    },\n                    {\n                        \"apr\": \"0.118253216807197565\",\n                        \"epoch\": 217\n                    },\n                    {\n                        \"apr\": \"0.115119923912514090\",\n                        \"epoch\": 218\n                    },\n                    {\n                        \"apr\": \"0.112413441926650464\",\n                        \"epoch\": 219\n                    },\n                    {\n                        \"apr\": \"0.111382626131747657\",\n                        \"epoch\": 220\n                    },\n                    {\n                        \"apr\": \"0.110470662312287618\",\n                        \"epoch\": 221\n                    },\n                    {\n                        \"apr\": \"0.109859541715414122\",\n                        \"epoch\": 222\n                    },\n                    {\n                        \"apr\": \"0.108338779447621712\",\n                        \"epoch\": 223\n                    },\n                    {\n                        \"apr\": \"0.113365157924295180\",\n                        \"epoch\": 224\n                    },\n                    {\n                        \"apr\": \"0.109775130917288974\",\n                        \"epoch\": 225\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16364,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16381,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16308,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16327,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15776,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15886,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.19118444209226301431844e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 3.920310414903625940988e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1a650c9d260be3a3b887e2b4b17b8d5076c356675084f7d4766555320eb04ef2f50bf2d6ddb750b09df7a327375e0704\",\n                            \"earning-account\": \"one12cy7qfl3g7y68e8drdrnvap3g54xepnx6w93g8\",\n                            \"effective-stake\": \"8598795204894500000000000.000000000000000000\",\n                            \"group-percent\": \"0.008527628173368219\",\n                            \"overall-percent\": \"0.002728841015477830\",\n                            \"raw-stake\": \"8598795204894500000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 3.920310414903625940988e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"595301fafcdf7897b56100cb5e193355a956b5bb60016a004e05a370d334dd340dd7ea73402ecee8ab75e0ba10eb3f18\",\n                            \"earning-account\": \"one12cy7qfl3g7y68e8drdrnvap3g54xepnx6w93g8\",\n                            \"effective-stake\": \"8598795204894500000000000.000000000000000000\",\n                            \"group-percent\": \"0.008527628173368219\",\n                            \"overall-percent\": \"0.002728841015477830\",\n                            \"raw-stake\": \"8598795204894500000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.3472130409789e+25,\n            \"validator\": {\n                \"address\": \"one12cy7qfl3g7y68e8drdrnvap3g54xepnx6w93g8\",\n                \"bls-public-keys\": [\n                    \"1a650c9d260be3a3b887e2b4b17b8d5076c356675084f7d4766555320eb04ef2f50bf2d6ddb750b09df7a327375e0704\"\n                ],\n                \"creation-height\": 3361150,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one12cy7qfl3g7y68e8drdrnvap3g54xepnx6w93g8\",\n                        \"reward\": 655693761100152002111,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y0xcf40fg65n2ehm8fx5vda4thrkymhpg45ecj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.17974318684e+25,\n                        \"delegator-address\": \"one1ra5f5pnt67wkswycnzcdz7kp5gecs335624yys\",\n                        \"reward\": 9.9536622532882097383244e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.60048541389e+23,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 806246326433867063472,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 5038961526306319932,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.10365e+24,\n                        \"delegator-address\": \"one1txfj6audejk92m8lm74sj37kdmqlnx7mu9ms3d\",\n                        \"reward\": 4.443657136328778665543e+21,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Coinfund validator hosted by blockdaemon.com\",\n                \"identity\": \"coinfund-harmony0\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Grassfed 🌱 Validator\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"support@blockdaemon.com\",\n                \"update-height\": 3361150,\n                \"website\": \"blockdaemon.com/harmony\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.272943393986980759\",\n                \"blocks\": {\n                    \"signed\": 101984,\n                    \"to-sign\": 102348\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.291940843087604859\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.300519561900794408\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.226042403632231953\",\n                        \"epoch\": 189\n                    },\n                    {\n                        \"apr\": \"0.274384841808714699\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.272943393986980759\",\n                        \"epoch\": 191\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 204,\n                            \"to-sign\": 204\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20738,\n                            \"to-sign\": 20786\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20384,\n                            \"to-sign\": 20422\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18313,\n                            \"to-sign\": 18324\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23386,\n                            \"to-sign\": 23568\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18959,\n                            \"to-sign\": 19044\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 3.9902569408576510667976e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1f0dpyc02fzqp4h8j23luu9qak0jjzn8e54j9fd\",\n                \"bls-public-keys\": [\n                    \"1a8eee8418ade656249a7ff2b79bb1d06bf65e7fe730affc91497cb7463b7f12f7be5c43981a35369e3c201ac4589c05\"\n                ],\n                \"creation-height\": 3361164,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f0dpyc02fzqp4h8j23luu9qak0jjzn8e54j9fd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18lp2w7ghhuajdpzl8zqeddza97u92wtkfcwpjk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ra5f5pnt67wkswycnzcdz7kp5gecs335624yys\",\n                        \"reward\": 3.5846072963444227335269e+22,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Coinfund validator hosted by blockdaemon.com\",\n                \"identity\": \"coinfund-harmony1\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Grassfed 🌱 Validator Asia\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"support@blockdaemon.com\",\n                \"update-height\": 3361164,\n                \"website\": \"blockdaemon.com/harmony\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 40806,\n                    \"current-epoch-signing-percentage\": \"1.000000000000000000\",\n                    \"current-epoch-to-sign\": 40806\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"222719255631194303636199999.999999999999999972\",\n            \"lifetime\": {\n                \"apr\": \"0.118600365094256389\",\n                \"blocks\": {\n                    \"signed\": 695180,\n                    \"to-sign\": 697291\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122009623861697039\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121688168313779813\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.127032322491461783\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.132891868919803934\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121390435468047910\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.128680110947435475\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.124165501928770474\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119380700567994892\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117196766306287060\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117698557441655065\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115033919184045950\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117049273792288662\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120438563210937365\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119984663413333243\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120572834491313798\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118330125502751248\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120976749318022929\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121555305813194754\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122575392282018963\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121608157275908041\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.122049082481829240\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.122619846541355532\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118270671995137603\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119270921078116221\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118776572691073616\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.119184372665442809\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118961547861177416\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117676536744957377\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.119056779982097247\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118751646187039395\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118600365094256389\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 49152,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49355,\n                            \"to-sign\": 49355\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66645,\n                            \"to-sign\": 66645\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50173,\n                            \"to-sign\": 50174\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 67923,\n                            \"to-sign\": 67932\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33223,\n                            \"to-sign\": 33383\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50093,\n                            \"to-sign\": 50103\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49608,\n                            \"to-sign\": 49642\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33567,\n                            \"to-sign\": 33568\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33772,\n                            \"to-sign\": 33778\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34454,\n                            \"to-sign\": 34454\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33389,\n                            \"to-sign\": 35264\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 21156,\n                            \"to-sign\": 21168\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20085,\n                            \"to-sign\": 20086\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20467,\n                            \"to-sign\": 20467\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18769,\n                            \"to-sign\": 18770\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 22543,\n                            \"to-sign\": 22544\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.38999698671787648319676e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"39bccb23d3e59e3cc45b0bd96de484b2be838fbb27433a1306153d880f76c7907a80db982a4a589639b7fb41f6a9e782\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"490adcbda4dfceb740486a620ea2d52d57c544b9e3896f5cf522545f02fe0a915637b4ff3ec87497a9f7b92b8ddde10a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647247101780728222419e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8f467670e6a92df732d1bc81c3bd85dc472a82aca9dd02e8db1c69658f8093525e65f1587d817cb325e673e86d5faf92\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647244174704662232521e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0715a9c2e509c5c48ac7b3e93e97c667d575db56a4dc91920845766372026e83114d9c84f879925223f1115ff6bb638e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0b1949442d1bd94f4b48499fd39b9ad218dc8a3bde8760fe61465565642948a13f54fff5ebdb6f8c4a0f492552eb5416\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a041f6c328f0cc0da8b3e3e4f786e9b769eb1aefd4fac75e43f47ee4421e0d301d29162b4fa4d36ce3152d1b1efbc292\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f8500000c59d4967899d60d9e3533cfc039f3da912e7408101d58a2051a905775d0954bd12c94946b7c431316d14cd0a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647247101780728222419e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8bfc1e7554db8a9e177e9908a98321ea3b0e03c373d8d242dfba7435642eca4973340b40c12b15697bf9872f2ae17e0a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e3debc5e712557d2143963dd8dbfc6ec607f4fc5683a87a4124b706cf76c7b40b8228e7770cd4e9923848c324bb4d20a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d08a410da71e4803475e85da2df27e0e6f3c8be47124111dde467c816df5dd54ea7fcd2913cfee4c85b3d7df11de990e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c0118989b68debda37f191ce46ec6473a3f3a4b9ef454b459d03af059b6fb180b82fc7fe622cb77e299e1a7a33c0f886\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647250183397082229939e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"27eb98e93936f76113b03e7191c6794621c5e72e6e39a553edf2314af293ca955e2370bbc87d7a911f69cdce55249016\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"97f4fe2ac8d22e53261e118dcfa42511e0dabacb45e19daf74a920320f4990011278c8a7bde278428beb984f8942470a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"014aba5f2a6ff7e60a6b05eba5d2b8a8b862e3365bee6fef2f740328ce04a6f8d9effd4356c74f945dcf79feaa960996\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0e6f1a87d949df686c7fa2c8e7768fe548f5954cd47ed4faa1d17d143b180d531a17832e45e015eb1fd27433c1b7e886\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"01a381a48ad4840510433cd65eae2191833c4f1abb50b8df8bb412c8ea2b3981b422da4baf50e1278df7741ca3e3b68e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"270770ae9b5b0f041e54579989f97300a556a5df40ed8cc93e49400b8609c9b7feba0f5696e1d2632ba0e0b972a85c06\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9e32a40615e85c1caaec6528435b354a569666e1f6c4b144698541e1e8c483db4cd547592b17d01c6a4ee36a6285370e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.647372441775891128561e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f9f036489ddbabddc3ffa90d2490b7bf144b9df5e0c870b4057a0247255b2c106b27245d41557df905e083b686212716\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006441448144382993\",\n                            \"overall-percent\": \"0.002061263406202558\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"be79b2d9fb4b9a56683d40ee445a6597332e298f0ff3f168cbf5c5acfc4a3ae73b20672517ea06ec9b8b9ee4fcf86203\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"230b046bdf38de5567efdda44d3577918e40b6624e8cb1e7512d25b692f1f8c8615799d6a384ca31dc998dc71dddc483\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4777ebcf87fd9516004f92c7f3fb94e3cb9111e6fb4da681d61d790ed0fbf10aa68aed5fd66d2714896edfb708fdf797\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e1ff573a1291604950b6b7a6bfd5a7608f517224afd2b4afe50f2172f507dcf9081372b03de372d1fe05aa3f89866307\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"686dcfa82b4ea90d7578c7dd3ce806d112c14659335e0b780fcf2768da6e340b78e06156138e500e46f45dc7e18e2807\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"38a45b90cb3ad2846fab846a8026e8b539f41b4aeac984ff32dbfbf1b857931027eb44e22ddc785f59d6c763941e008f\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"51c513a867c026f966e4c1a46676b760029990755727caa0e68a260e59cf7128358bf7bb20a54261d0a7b2f786061e03\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"457fead0248f80dc8a63afe6bd5b464d2ac846192b7547a72cda0cb69ea485eb7ed31e75ccfeb64eb1a985210948e113\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f6c38f1a9b256850069aaae5329446c50b72c0f0ffe76bc28cc8134afdd0b40d024a038454fc85409773a6ae2645b487\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3dacf918e9fd3d9d160722efb0f851c4da1f47f28566496ccf402719ba6b4bc435d9d52259e80674e71c78b622ea3283\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a1c07365e8016aefe0ca4a820c281445d4d5e89bf68ce2b9e9f15de7b973364ac2b9e109464295c8a3d7e124629ae197\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6b2116f918043ef413d95771b56c2f2aec20062872ada45339ad612474acf1b6a2025c27d71d323e8512d0ff87725517\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b1a0a8631459f7988e7c5ab6bd326f5c60739735698892fd3531014710864890ca8ca9426c22c287186903238703c883\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"101662ca51b09da1dafeef24844371e2c3e66daab77c07892439e137f0bab143da26361a6b18e665e974f619fd0ce397\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f1ae282031413945047e6b52361b542ca1c565b6909bc40f4b924ea6ee7e77afbfb755faaf35f40dfe0ea649a926ac17\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"cd3000f11dae857aeb5c36c9021bc5299549df4b74f783018e735817f4f5c170d54066b9f5b9de1dfb7aeebc606fcd8b\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.703935051651515109079e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"62b57cb99dab8121831d5ee3ce6c1a63ffe3b4f0ce75be53b2aec232317bb1ef8b647f8ff62d610000042e45ca99dc07\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"group-percent\": \"0.006673681938775711\",\n                            \"overall-percent\": \"0.002135578220408228\",\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 3.09492161015355e+25,\n            \"validator\": {\n                \"address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                \"bls-public-keys\": [\n                    \"e61d9ad7e8f4f9238e14147a62b1706e006ed67316b1f94ee1b767c9ba4f018bc1c83688c3fe334bb49eda78393c478c\",\n                    \"48f4d044432c380b923320bdc923984f785a4964d64d94dce5d85a22a1a53a9bf7e414b9098d005e1efb55fcef96c219\",\n                    \"e92d44e7f6d327637e14b4813baf27f2907f8dc156b818a473010e9f2ef0cd3838c7f5d8c40c843c5670b32e00940605\"\n                ],\n                \"creation-height\": 3361169,\n                \"delegations\": [\n                    {\n                        \"amount\": 4.42799e+23,\n                        \"delegator-address\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                        \"reward\": 781173566420695787853,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6e+24,\n                        \"delegator-address\": \"one1rul9mrxkrfjrupvary3h64uw9aa6qp8n2hd93p\",\n                        \"reward\": 1.179731142453667974825e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.03e+25,\n                        \"delegator-address\": \"one142w6su2shfgx8jhckcnakxkjzz63fj0tukdvyz\",\n                        \"reward\": 5.3997947756655326895462e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcd73jcajz7wsaquzxvcjv94fere2xtqyyjz2q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 8120307130909227318,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhz9g98na0x2mgal2z9yth77lw83arf7ndr7zs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1atdwrxe98t8kx2cy9r42qjvuslps7dqtxtn6aj\",\n                        \"reward\": 52085428665577720365,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.389419782e+21,\n                        \"delegator-address\": \"one1780hukztd6ty8f7z6z6wye0j6hez3ds8jydg5c\",\n                        \"reward\": 26168613613081933745,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.84954997e+22,\n                        \"delegator-address\": \"one157rwjephc5y9vt3wc685uqlfy62amjf0ukavcw\",\n                        \"reward\": 10492758159756961065,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.025e+22,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 19548810979572748029,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 577667721787832175,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 374557440456891689,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18xfcqu7jf0cq5apweyu5jxr30x9cvetegwqfss\",\n                        \"reward\": 6211869521107273172,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.92974408807e+23,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 145257433342555539903,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.03999999464e+23,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 663406042281757811088,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.52000108557e+23,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 116007675364755834750,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vcqez6s3crzmj07kfdy2jz0kd3j0s7sk5qrdye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.125e+21,\n                        \"delegator-address\": \"one19w8klanmgjqw4waxuv5y2ncwfz5d6f3md74t8x\",\n                        \"reward\": 3820580460146641020,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gclsr6czt25s56e7dkpy7cn22096xtqwjqupcm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 3552789997766084682,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.48e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 4.961773661e+21,\n                        \"delegator-address\": \"one1f6k0cctegv22cadjnurhspl0q4a99k6plx9tsw\",\n                        \"reward\": 51371162431627461682,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sx2lu574e3xxqp67zm6x3hqds9ppnkmzf76fkc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.48e+21,\n                        \"delegator-address\": \"one1alvdxf4hx0ads7s0q9v4g6h5teh0fwkprft6f6\",\n                        \"reward\": 25676399516530909113,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jnvncsmlxtnr9znhqqx9rfexggmuj25gmh8pn7\",\n                        \"reward\": 428033225048078322,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 4e+21,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nsvft6gsue0feemx59cd2ujszp985rznp8lzcl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.357738713905e+23,\n                        \"delegator-address\": \"one1rf732ne5z74ahp79c39jpezz07qzuwz2gtwgyn\",\n                        \"reward\": 857737914169936495168,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1acyxv69xjgunv3z5ymnjt2w70q7rdardr4a3uz\",\n                        \"reward\": 1874359057151738894,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1p6wcwnajxc208uxpdlx9sqktt6t8kk8nw9hshf\",\n                        \"reward\": 17563206652358581179,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.617999979e+21,\n                        \"delegator-address\": \"one1gsghhyd2tpf4my8ave7nm4946ypytjw0sjsa70\",\n                        \"reward\": 21992711825079923740,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01e+21,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 1515519951288639177,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1782xv62cx49zdhr474lt4emc97xnvrpt8d6yrx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.92e+22,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 74457392077655610443,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one1mrqfv3fktjdzaysq75c0c9v0jvty3qdtfh5fya\",\n                        \"reward\": 239145802724137223101,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfuvmhz4zgvpeyap5k7qngj25xv84t65vnecye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 8500851284763173623,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6cfkvgjyxw7l89urs25rqe57mkx304und53de\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.978028e+24,\n                        \"delegator-address\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                        \"reward\": 1.467987009699859204146e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 12890929840662888819,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n                        \"reward\": 111086893095214362381,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9999e+22,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 183918108440693557215,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 3.874097207325738151014e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0394e+22,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 54226069123559514351,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d0974tslprzkxgsatc8ahaxxa2p8phvpgnahjx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8233169052e+22,\n                        \"delegator-address\": \"one15n3hvvk4huwpp2zxtcvj3jtl76vxlpkjfhr4f5\",\n                        \"reward\": 296238026903132079691,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3883401779e+23,\n                        \"delegator-address\": \"one1j0nmr445gf35lskevtac7khtudt5vah27af2c9\",\n                        \"reward\": 143068442068534638714,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 5186650915255013592,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.264927202e+21,\n                        \"delegator-address\": \"one1kt957tv5v6h3ez45zpvwyyu59c2ej9dx0285qw\",\n                        \"reward\": 33045485125431521966,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n                        \"reward\": 284053494291868586373,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1unmae47j2w3q9vxqs8fjpa33u8eu8w5dfsuh5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one17gpf07jvactrjk6p6l67au55ap5nd3sknh8l63\",\n                        \"reward\": 32278663879903467249,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 110820318429752289,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.48015e+21,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 5593717587286649553,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 130713076955493283419,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 141943612275998496857,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 19587353557589110275,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 7068893054096972582,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.38031225e+22,\n                        \"delegator-address\": \"one1rjyg5f8cq2utrawfe2hyck96ac7z67j4efgswm\",\n                        \"reward\": 146364219663486361925,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rmsztmw3727yjuszwd484z8mvf9v6fkkze4r5s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00005e+23,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 641819141616827708231,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0111e+22,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 650830840779680271,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+21,\n                        \"delegator-address\": \"one1ps4gky30d2y60q59ydu72l7dtch6zvvtmu6x0z\",\n                        \"reward\": 5338056214285357518,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.03357e+24,\n                        \"delegator-address\": \"one13s9upxk9rsvy8e8dn65s9w54kd4e3yx8lxw5hr\",\n                        \"reward\": 4.477274372019586645503e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1851926723213530824,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one19jvw9uruqem0hehduv95km63947p4cvxfgnsg0\",\n                        \"reward\": 8089627492383935271,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.02128e+23,\n                        \"delegator-address\": \"one1vkncynzf0kegy80nfa0ppfnktg4ltr7dvlzag9\",\n                        \"reward\": 620923173579302348662,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1h2kljdu542mrg6zjv33w9nfwt3lpxnzhn6dscz\",\n                        \"reward\": 5239338180945612547,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.320239e+24,\n                        \"delegator-address\": \"one1t4kkz8dl7kg9hmkauyanjrpprfk03jffl7shh2\",\n                        \"reward\": 6.917178600673506986292e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqjkjfwrdvn9rgrs34zrk0xvz7gmfaum6g36s\",\n                        \"reward\": 94639770801779880,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 37317891358202217612,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.51581e+23,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 472068345188778791199,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.001e+21,\n                        \"delegator-address\": \"one1nhfnjxfwrkk8653jfz97wtdxvw295nws2vft48\",\n                        \"reward\": 4097271844959653955,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.02310586e+22,\n                        \"delegator-address\": \"one1d7rudy5z7tsp9th0c8m3p527znu2lxuq8wd0qq\",\n                        \"reward\": 20948436484817441480,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 47788793364572948760,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1lj4fj7tz2ftp6ahcxsk07usqvaedu524den8kk\",\n                        \"reward\": 3413175916270265886,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vum7puzcd56ds3dvpyap4mm8e5ctzagzn7fmn3\",\n                        \"reward\": 2785014744343548541,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0723e+22,\n                        \"delegator-address\": \"one1u8pu8pwfh7q7x8e70ptnztwdk6n505adm42yva\",\n                        \"reward\": 31359545203850924790,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5894e+22,\n                        \"delegator-address\": \"one1tzjapdswlu93wr0mjul2vggs8x5mqqeelk2pt7\",\n                        \"reward\": 24315026919486737532,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.333006651e+21,\n                        \"delegator-address\": \"one1l85psy64zvjjqwz2j6224tekjsslk37ecdggfc\",\n                        \"reward\": 6566169922108088867,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+23,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 375655122835810348214,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1c0gjxhujxst85e8az6mll2s8tm30609d9ylxe6\",\n                        \"reward\": 224117565286883686911,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7373143494e+24,\n                        \"delegator-address\": \"one14x79dn9qunnputr3n0z3594ve7lla77vc3wjrr\",\n                        \"reward\": 1.23560047564834660143e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.066059e+21,\n                        \"delegator-address\": \"one18pqt2455nl3n0qs8v5l2zfl7ez5dygwy3q8tm8\",\n                        \"reward\": 4114159593876210189,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4e+21,\n                        \"delegator-address\": \"one1jfswdzr7cruvpyp2t2ed5znun6uvku7ynqzq22\",\n                        \"reward\": 1367609472627668868,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.06830616e+24,\n                        \"delegator-address\": \"one1khau8lyy2hqesvve6wp33ful5d3yysuemy97w6\",\n                        \"reward\": 470950673860869438243,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1sq0jgnwl6r73h30v352jmfr9lfyy35m8vna0te\",\n                        \"reward\": 39074556360790418160,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zctfnssn5frpfz9ms0dn5l5dkgl66mjyujdz39\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Transparent & professional staking validator. Use active-active redundnacy. Created community tools: 1) telegram rewards & performance bot t.me/HarmonySmartStakeBot. 2) dashboard harmony.smartstake.io. Support us by staking with us while we develop more tools for community.\",\n                \"identity\": \"Smart Stake\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Smart Stake\",\n                \"rate\": \"0.040000000000000000\",\n                \"security-contact\": \"BigB\",\n                \"update-height\": 3425026,\n                \"website\": \"www.smartstake.io\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 135796,\n                    \"current-epoch-signing-percentage\": \"0.999963181419871724\",\n                    \"current-epoch-to-sign\": 135801\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"41037555313550999999999999.999999999999999994\",\n            \"lifetime\": {\n                \"apr\": \"0.116793763085405524\",\n                \"blocks\": {\n                    \"signed\": 2425651,\n                    \"to-sign\": 2429186\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122960957624933157\",\n                        \"epoch\": 288\n                    },\n                    {\n                        \"apr\": \"0.120606338943272920\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.120898563536052848\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121234018990540095\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.121472147763653096\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125589746549825405\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.118534240001089578\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124507371434563919\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123208895210491427\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119224569586970780\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116146698460041625\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.113736911297946214\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115856997093919243\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118325445828658149\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.117614514464392068\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120079076680164337\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118661830247534863\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120597273521074599\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119806899897621650\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121054473941594813\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120765231096610741\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.060504200785666735\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.116243665741015039\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117817553769037650\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116257443975331324\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117210420263057256\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117126596622182408\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117051394176582035\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117836541098736361\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117555911031180794\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.116793763085405524\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 155681,\n                            \"to-sign\": 156024\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 162484,\n                            \"to-sign\": 162504\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 157645,\n                            \"to-sign\": 157657\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 171614,\n                            \"to-sign\": 171624\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 141052,\n                            \"to-sign\": 141072\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 135197,\n                            \"to-sign\": 136178\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 156002,\n                            \"to-sign\": 156015\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 152084,\n                            \"to-sign\": 152086\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 169605,\n                            \"to-sign\": 169840\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 168878,\n                            \"to-sign\": 168890\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 172260,\n                            \"to-sign\": 172270\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 177310,\n                            \"to-sign\": 177330\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 209949,\n                            \"to-sign\": 210048\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 40135,\n                            \"to-sign\": 40172\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 40816,\n                            \"to-sign\": 40934\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 37179,\n                            \"to-sign\": 37237\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23944,\n                            \"to-sign\": 24088\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18020,\n                            \"to-sign\": 19416\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 8.60618314383499185920252e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.560714550119280757188e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5928b3ae2a2b482b830f1030071a0871f81fb15b2d67ac656e141138b60679454cf9a559f9834d1ae226c8e11ca09786\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.560483622026526453612e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4ff1796bdb8253078163ab11f64186aee7230b682642b0e8eca4c935e7060223084406ce334474b451410131f0120f0a\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.560598320591443885614e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"98ec8e7ba1a44bfaa9051c5dd528d528965ca1ad982a953cba2db9e5ece0eae2719a64dd99572ca6302df2dba3e84906\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.560120055666487108421e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ae4f6380cae8d0ec4d364a8d98bb34d12aca8a42ea9b28925abed150fc991d78a88dce948bb2e79798efe79ab7552516\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.560949577805101435621e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3d6a5d62a2277cd465c5c7ff4c3927a537903cf58ace18b9bf025351242043bb9ca76084d593993e05de0d079bf9e00e\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.561061214285264602233e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"989fe76334a392542b04726a3f0088a285a6aa44c7868fbd60dd6b32fd9856f81dfacb2dc0fd4dcc2ad0699e2f3ae302\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.56025567411375123148e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a7f48834e984de758645585d0a481e32044c9f55bfe70119daa63a1605a1c31f66b9dac575ddb9271d7b85848ef6b812\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006103960160139760\",\n                            \"overall-percent\": \"0.001953267251244723\",\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 9.1050025386832e+25,\n            \"validator\": {\n                \"address\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                \"bls-public-keys\": [\n                    \"3d6a5d62a2277cd465c5c7ff4c3927a537903cf58ace18b9bf025351242043bb9ca76084d593993e05de0d079bf9e00e\",\n                    \"4ff1796bdb8253078163ab11f64186aee7230b682642b0e8eca4c935e7060223084406ce334474b451410131f0120f0a\",\n                    \"98ec8e7ba1a44bfaa9051c5dd528d528965ca1ad982a953cba2db9e5ece0eae2719a64dd99572ca6302df2dba3e84906\",\n                    \"a7f48834e984de758645585d0a481e32044c9f55bfe70119daa63a1605a1c31f66b9dac575ddb9271d7b85848ef6b812\",\n                    \"5928b3ae2a2b482b830f1030071a0871f81fb15b2d67ac656e141138b60679454cf9a559f9834d1ae226c8e11ca09786\",\n                    \"989fe76334a392542b04726a3f0088a285a6aa44c7868fbd60dd6b32fd9856f81dfacb2dc0fd4dcc2ad0699e2f3ae302\",\n                    \"ae4f6380cae8d0ec4d364a8d98bb34d12aca8a42ea9b28925abed150fc991d78a88dce948bb2e79798efe79ab7552516\",\n                    \"b64b1a774fd05dc4acf6bc843c4bbc2fc0bd8c2718efab26855b58f615e3d55b3d631f64351a570145ae208f99205d96\",\n                    \"df0e7852e4fa051e7c260a0b9ae1335839be1157eebee3d368d72e2bc967e2e746ce18162fed75a954ef5b0cd15cc98a\"\n                ],\n                \"creation-height\": 3361192,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                        \"reward\": 5.200032447827232222896e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.65969406067e+23,\n                        \"delegator-address\": \"one1ucdg2jlyrg3cs22dqe00qxc2xn5nnzvvaz7xu4\",\n                        \"reward\": 3.571312705697493996056e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aj2f9ux7cejeh8y8fcrhr7ekqzzw4k8u9gvktd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.520772e+24,\n                        \"delegator-address\": \"one13gu8fsv5r0pr6gn8umd3eddaxdlw8hgmlm60h3\",\n                        \"reward\": 2.582025958199132675724e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.592066986484e+24,\n                        \"delegator-address\": \"one1s7c6gmvgf9gr0t9t5695ap9j4rl834sldqpku2\",\n                        \"reward\": 2.20785541591780260612e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.1044862345852007611053e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 221483478660020607116,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.7e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 72426275661769589669,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 9633570340565687102,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6430279749075441187,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15y6dh6h4xm6lz9h3pf75v5jeekfwswkftr5jj8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1fnrlvje767q02th6xgln763xvplw5pswwkj77m\",\n                        \"reward\": 116397750275097062905,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.3847e+23,\n                        \"delegator-address\": \"one1lm8jajxvqn478t7pwvuf80v5raana6c3fr2rzr\",\n                        \"reward\": 160336029376865475540,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eaf67zmhc9sjqn5ag9cjwv3zwpw0shthj6yn43\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.04746994281e+23,\n                        \"delegator-address\": \"one1gpu8jhj733u0xtwp9mfh5gfgtyzsy2m4rvfs8z\",\n                        \"reward\": 2.530352494920170741962e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 72652260995799748997,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Blockdaemon's blockchain node management infrastructure simplifies operations and monitoring which helps scale enterprise networks securely. Stake for free on our public validator or run your own dedicated validator node.\",\n                \"identity\": \"bd-harmony0\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Blockdaemon 🧱👿 Validator\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"support@blockdaemon.com\",\n                \"update-height\": 3361192,\n                \"website\": \"blockdaemon.com/harmony\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1f5ht3hnut3edu6pdehetajuhujg4jxr470u0ps\",\n                \"bls-public-keys\": [\n                    \"2bd39119ae768afbd019dd49ebdd10b5af88ab5cfc80bdd78a00b5c5391c8d55c1dae8a90b8ac79f79b60ace915bbc87\"\n                ],\n                \"creation-height\": 3361199,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ht3hnut3edu6pdehetajuhujg4jxr470u0ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gpu8jhj733u0xtwp9mfh5gfgtyzsy2m4rvfs8z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Blockdaemon's blockchain node management infrastructure simplifies operations and monitoring which helps scale enterprise networks securely. Stake for free on our public validator or run your own dedicated validator node.\",\n                \"identity\": \"k-harmony0\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Blockdaemon 🧱👿 Validator 1\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"support@blockdaemon.com\",\n                \"update-height\": 3361199,\n                \"website\": \"blockdaemon.com/harmony\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 43927,\n                    \"current-epoch-signing-percentage\": \"0.991557752646667118\",\n                    \"current-epoch-to-sign\": 44301\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"25203966134345700000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.119914567504544931\",\n                \"blocks\": {\n                    \"signed\": 1366200,\n                    \"to-sign\": 1373724\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122298525486884761\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.120851784680863110\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124729950340159677\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123046863426561314\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.119780386409886937\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.125523855423955382\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123659291894873928\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.118181804911743824\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117085594797139162\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116460620194689041\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115153761540891959\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117911320689370625\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120622586154508127\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120074165822197387\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.117747112013677111\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119288816819864785\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.121227714839280952\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.122064926186544386\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122143637287896095\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120862969642003642\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120910420886205471\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121773918089828199\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118586709367598609\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119520995074187719\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.120396849825515449\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120230864217363361\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.119665993428578521\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117559129851666849\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.119707381170193962\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119219126697744463\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119914567504544931\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 52383,\n                            \"to-sign\": 52437\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 54821,\n                            \"to-sign\": 54849\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52859,\n                            \"to-sign\": 52989\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50922,\n                            \"to-sign\": 51697\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51654,\n                            \"to-sign\": 51906\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49923,\n                            \"to-sign\": 50232\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48700,\n                            \"to-sign\": 48882\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49840,\n                            \"to-sign\": 49994\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50204,\n                            \"to-sign\": 50366\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50395,\n                            \"to-sign\": 50537\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51385,\n                            \"to-sign\": 51499\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35613,\n                            \"to-sign\": 35716\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 43068,\n                            \"to-sign\": 43198\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 122119,\n                            \"to-sign\": 122542\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 141636,\n                            \"to-sign\": 142113\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 131374,\n                            \"to-sign\": 132462\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 248368,\n                            \"to-sign\": 249086\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 37009,\n                            \"to-sign\": 38918\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 4.7104021323687953219994e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.726261273114460669742e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"67d87257f4ca7bb59c189c5c0d06059054d0796024ec3684b8624cdeb1996628d1bb81a63e23f4cbeef622d70b77b987\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"group-percent\": \"0.006797029192183820\",\n                            \"overall-percent\": \"0.002175049341498822\",\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.730306709311236263894e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"290746460c1101eec00d8d51138309e7767edab00cee8fd6b9a7d5389e77331ec139ef1a57ba79e704db4f60e8c22307\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"group-percent\": \"0.006797029192183820\",\n                            \"overall-percent\": \"0.002175049341498822\",\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.728905134950675278659e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"614e8d1344bff19f5e1a6e7886355beba087cdc0947d2b5ad1eec36caa18325e0585534dd20a37546bf11d44f1e31e13\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"group-percent\": \"0.006797029192183820\",\n                            \"overall-percent\": \"0.002175049341498822\",\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.7252004899804549996e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ff64e929ee6bf37983e13f495437665416c0f6e7862b56c0caa84f932ff48fe68c379e4d483e6088198d25023e949b87\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"group-percent\": \"0.006797029192183820\",\n                            \"overall-percent\": \"0.002175049341498822\",\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 3.78018179267535e+25,\n            \"validator\": {\n                \"address\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                \"bls-public-keys\": [\n                    \"ff64e929ee6bf37983e13f495437665416c0f6e7862b56c0caa84f932ff48fe68c379e4d483e6088198d25023e949b87\",\n                    \"67d87257f4ca7bb59c189c5c0d06059054d0796024ec3684b8624cdeb1996628d1bb81a63e23f4cbeef622d70b77b987\",\n                    \"614e8d1344bff19f5e1a6e7886355beba087cdc0947d2b5ad1eec36caa18325e0585534dd20a37546bf11d44f1e31e13\"\n                ],\n                \"creation-height\": 3361220,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                        \"reward\": 657955896267801605705,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 22593726943568549326,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+23,\n                        \"delegator-address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n                        \"reward\": 390119997044779882542,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.9646e+23,\n                        \"delegator-address\": \"one12xu6ypaapzntuunvru6648xdckrudphsv0pu2y\",\n                        \"reward\": 2.322910197816171645128e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6166683e+25,\n                        \"delegator-address\": \"one1r0y2fawcaynvw7wnzqf036vsv6qzfdnxr9htcr\",\n                        \"reward\": 3.7707018885131628033571e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1855867922072747335,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4e+22,\n                        \"delegator-address\": \"one10e20lg77vuwse39k3rp86g2s2q80fketsjf7l9\",\n                        \"reward\": 56590525656545700162,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 12924527416767543367,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.21699e+23,\n                        \"delegator-address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                        \"reward\": 3.423622312625462394717e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19fumnmg97z9uwwf93ucl88tn64q4wxuytwgrss\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1475545e+25,\n                        \"delegator-address\": \"one1tzjapdswlu93wr0mjul2vggs8x5mqqeelk2pt7\",\n                        \"reward\": 6.795158066242032876e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5315e+22,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 83327359362304099156,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.458e+22,\n                        \"delegator-address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n                        \"reward\": 6899455732140063353,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 27676343007683768162,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 10326639086751344999,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6980103826403935547,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one14zf9gchjhtjnk95h6z7cf0duu76wllfmn44mr8\",\n                        \"reward\": 639911297799299233940,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 44676391848750235601,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01447e+23,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 9198436073686645662,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1020267183e+22,\n                        \"delegator-address\": \"one1l8p7ytcsq2c97t75a5er6kqedw0qddgyjpd7eg\",\n                        \"reward\": 70661366916146101577,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 7842564111512246257,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.999e+21,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 13738500422749552722,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one13hw3v424sg9utx8jnpdge367wmfgw7y6329mt2\",\n                        \"reward\": 27482497344968089371,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+21,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 2561282672747377588,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one129tz7pglwn6lys2jzjydwzkq6s6yuvpnmy74nf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.01e+22,\n                        \"delegator-address\": \"one1ju2tg5mcqqz2n2tjq3l8ngfdcu47gg8mwxlus8\",\n                        \"reward\": 23985705965057411389,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1hdf03n7fdms7rakkekse7atftnl42vm299pcap\",\n                        \"reward\": 10271498094658685932,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3903696595705e+24,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"50 slots backup, Anytime according to the vote expand your profits. The professional PoS team operation and management. 50个slot备选节点，根据投票数自动化调整slot，随时放大你的收益，专业的PoS节点运维管理。\",\n                \"identity\": \"FAB46CEEAEAB9FA1\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Bit Cat🐱 - 安全稳定长期低费率，VIP交流群加微信sanxiacat(全小写)\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"https://t.me/joinchat/LBbAfRU0nlwushyr9sfJAQ\",\n                \"update-height\": 3375103,\n                \"website\": \"https://www.bitcat365.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 120768,\n                    \"current-epoch-signing-percentage\": \"0.998148637926474478\",\n                    \"current-epoch-to-sign\": 120992\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"81445133000000000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.115866039478544400\",\n                \"blocks\": {\n                    \"signed\": 2052610,\n                    \"to-sign\": 2062867\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121305433953406963\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123496019996023955\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125057088114526427\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123334508713916704\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120393366702240607\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121650298294735642\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121041793165162322\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.113843816662302308\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118598632950915812\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116034821703247252\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117185541066866008\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116200247285618693\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118732431475355241\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119314654103609100\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120229105916329106\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116886081728312403\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117447069437761384\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120072608353304255\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118019864496813268\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.117907685935466706\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.115439436939106441\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.107437085886314612\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116211645492638441\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.115916595184020160\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116406381729016154\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116473488050484841\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116398257792513690\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114460574668659439\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115611472431486130\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115345490010360903\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115866039478544400\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 137874,\n                            \"to-sign\": 139344\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 145684,\n                            \"to-sign\": 145872\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 141523,\n                            \"to-sign\": 141720\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 138014,\n                            \"to-sign\": 138280\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 142340,\n                            \"to-sign\": 142568\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 133694,\n                            \"to-sign\": 135432\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 139529,\n                            \"to-sign\": 140704\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 136020,\n                            \"to-sign\": 136848\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 136218,\n                            \"to-sign\": 137522\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 153536,\n                            \"to-sign\": 154147\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 139512,\n                            \"to-sign\": 139988\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 178611,\n                            \"to-sign\": 179450\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 209287,\n                            \"to-sign\": 210000\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 6.88777838652706270694184e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.556017877083431630616e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fab871dc783e065e26ac13a8a5576418d714926d83325d8f8c72e975cd74f894b00a31ff18c0c7d20aa094dac1006d01\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555804266411017586606e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"aef0ce484fcec7227492e55a8d311172cca44bb40d657c44c984a709b0302211761e0f109b4a65d2ee9a8a88fc928595\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555912563544413635335e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bd2701b5690c0dc0f98308c62cc9fe3327fb1d9b4f18b9252d6d755930e111a8d75cc2f8cc9c47794f40970721c65585\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555993142286355096175e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c4e22e2edf12fc844d1dac366bf591a43d139a74c0c5d32a8995267415d0aa6a29054b557d6a6b5d1726bd8f8c22b395\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.5553314521645933892e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"15c99e1fc798e09fc83add271955e04b8d9e21628ec091a1ad7cd128a6a406852526196e4b64d7a9345b17c1f139bd91\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555117820197409051926e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a2526ddd0b30d2daff78d2242eff48f8c56ae572f5170df94b18dc86adf01d8f66ab3b6a2e834a3fc9e62b2420e79285\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.556361480104100018725e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ede3a3edb3469c8ab63665cac359af0051956f1c6a036d88c26bdb09885e9dee66f3fc0a78530f948dbfed1a72abca85\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.55552548008089200756e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4433b28696fe69b4bc8c10ff24e0f1ba918f526ed9f3b9e90c616305d7c35038be656936ffe9186c009bead57cae9509\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.554857815925052263772e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"77ebe15da9054374ec1614ae5aa40acfde825e2b64a6e3f1e0522db9e33f398c8a33ef8a982f3743dfabe4130c22a319\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.556464900192611940688e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d960c67e552dc2c73ee0679cbd3bf501704a001fe5b14ff565d4abc820fe433856f4cacd605e89670dd418d9db160c91\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.554759911207140469272e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"80e43b7381b0d2405b44a6a6293a5174fe4ef3e32b26a10c4af20e213d6ae17d778eb54e7129f5ac69343eac40fc1b95\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.556476043839058838392e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f8162589f9d7075f720e92448b7ba37068d47c55445916a7d7ea87678e1e047de12acf4126eac6b740fdd26a0c25a00d\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555256374997299550579e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"aed665af6870561fcb0054832e35fa773a2d8b82b6ed7bed0500c5e7c1015a5a6325042d5e8ef954ad5d45c467055601\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.555887152131942349918e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ffc25ae925ff32957eb357fb33f39426d046487fbdc6c104b5ee2c57d967619449c2e15e3785ad58cbaf46adcd068105\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006075951434407798\",\n                            \"overall-percent\": \"0.001944304459010495\",\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.0327947e+25,\n            \"validator\": {\n                \"address\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                \"bls-public-keys\": [\n                    \"80e43b7381b0d2405b44a6a6293a5174fe4ef3e32b26a10c4af20e213d6ae17d778eb54e7129f5ac69343eac40fc1b95\",\n                    \"77ebe15da9054374ec1614ae5aa40acfde825e2b64a6e3f1e0522db9e33f398c8a33ef8a982f3743dfabe4130c22a319\",\n                    \"a2526ddd0b30d2daff78d2242eff48f8c56ae572f5170df94b18dc86adf01d8f66ab3b6a2e834a3fc9e62b2420e79285\",\n                    \"aed665af6870561fcb0054832e35fa773a2d8b82b6ed7bed0500c5e7c1015a5a6325042d5e8ef954ad5d45c467055601\",\n                    \"aef0ce484fcec7227492e55a8d311172cca44bb40d657c44c984a709b0302211761e0f109b4a65d2ee9a8a88fc928595\",\n                    \"bd2701b5690c0dc0f98308c62cc9fe3327fb1d9b4f18b9252d6d755930e111a8d75cc2f8cc9c47794f40970721c65585\",\n                    \"d960c67e552dc2c73ee0679cbd3bf501704a001fe5b14ff565d4abc820fe433856f4cacd605e89670dd418d9db160c91\"\n                ],\n                \"creation-height\": 3361462,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.50947e+23,\n                        \"delegator-address\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                        \"reward\": 7.952000835065355455961e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.1040581267872491146447e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1735085938977620292,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6337381379750548863,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 81057597817343672458,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"欢迎大家来中国·杭州玩. Welcome to Hangzhou, China\",\n                \"identity\": \"HAODI\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 3e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"三潭映月\",\n                \"rate\": \"0.099000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3472006,\n                \"website\": \"https://www.mainto.cn\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one10zn27a4vnywuufece29d4nwl8j78cz3r5cgupg\",\n                \"bls-public-keys\": [\n                    \"8ad9ee968aeeaec41d5b675e51d24f73354dc59d27812215f2f61cff685137d7e23a76e031aae5f3b992f1733c511908\"\n                ],\n                \"creation-height\": 3361476,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one10zn27a4vnywuufece29d4nwl8j78cz3r5cgupg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"li@harmony.one\",\n                \"identity\": \"“li@harmony.one”\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"“li”\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"li@harmony.one\",\n                \"update-height\": 3361476,\n                \"website\": \"“Harmony.one”\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.353909308140927726\",\n                \"blocks\": {\n                    \"signed\": 103371,\n                    \"to-sign\": 103920\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.789452865733323489\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.109954854097222805\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.674546772006195555\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.402566021207695876\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.353909308140927726\",\n                        \"epoch\": 191\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 203,\n                            \"to-sign\": 203\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20480,\n                            \"to-sign\": 20542\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 19833,\n                            \"to-sign\": 19875\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 303,\n                            \"to-sign\": 303\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23646,\n                            \"to-sign\": 23695\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25138,\n                            \"to-sign\": 25346\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13768,\n                            \"to-sign\": 13956\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 3.2766275178270738565076e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1c6m2w8t0p3de3cjleu2t2duvspas6366jtf8da\",\n                \"bls-public-keys\": [\n                    \"47ab7b7cbbc5b95ddab000c5d2643aaf9f916d776bd4adb05e509add43d54579f69e3e5898df5dd15a4332112c1b3d87\"\n                ],\n                \"creation-height\": 3361511,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1c6m2w8t0p3de3cjleu2t2duvspas6366jtf8da\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0sy6uju6s3p54c7xpgrnxsztke3jjv5shsa2p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Private validator, a Foundation Nodes program member and an early investor to Harmony\",\n                \"identity\": \"Aurora--2286455933564097969\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Algorithmiq Ventures Validator Node - Aurora\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"petr.koutny@alventu.com\",\n                \"update-height\": 3391363,\n                \"website\": \"https://www.linkedin.com/in/petr-koutny/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1c6z6fje63g8thv0fsm0wkwar5f80usdctwy04n\",\n                \"bls-public-keys\": [\n                    \"25adf6bc68d92bddf4069f3ff0ae4791dc0393328a8f8a7efae226ef2fcaaca0bff2a3b01de6dc670726c37c1a02ce84\"\n                ],\n                \"creation-height\": 3361546,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6z6fje63g8thv0fsm0wkwar5f80usdctwy04n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Hi, many thanks to you who delegate to me, but looks like our stake is very small comparing other, and I think my node can never be elected. I am sorry, but please undelegate your stake, and delegete to other node so you can start earning rewards. 🙏 \",\n                \"identity\": \"Bitoven\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Bitoven\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"bitoven@protonmail.com\",\n                \"update-height\": 3361546,\n                \"website\": \"https://bitoven.me/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 107601,\n                    \"current-epoch-signing-percentage\": \"0.988834362593736215\",\n                    \"current-epoch-to-sign\": 108816\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"80414372329646650793799999.999999999999999990\",\n            \"lifetime\": {\n                \"apr\": \"0.115104442632753028\",\n                \"blocks\": {\n                    \"signed\": 1934037,\n                    \"to-sign\": 1960192\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.110360233113267846\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.103904100775182225\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.100725483713184826\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.099200529257073597\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.101519548982235748\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.107496180917564616\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122140992392536885\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.116413522938468432\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121201524195033515\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118428402304100109\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125597516778739646\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114099568194124456\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120617059616516635\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.122092805321756369\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.123857812337993307\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.113452201123345314\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117938733253226743\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119311452096797375\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122599907720597890\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121483429509623039\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.123653684338910599\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121182622159575796\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122982803391768683\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122532170485476508\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118669488524135375\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121562559473045147\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120990229219547419\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.120777542362710423\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122302872382513238\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120808698584950310\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115104442632753028\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 129530,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 129038,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 129574,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 129861,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 129740,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 127252,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 129358,\n                            \"to-sign\": 131072\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 129548,\n                            \"to-sign\": 131074\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 145236,\n                            \"to-sign\": 147454\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 129722,\n                            \"to-sign\": 131074\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 145757,\n                            \"to-sign\": 147458\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 160505,\n                            \"to-sign\": 163840\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 162729,\n                            \"to-sign\": 163820\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 4,\n                            \"to-sign\": 4\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 32263,\n                            \"to-sign\": 32766\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16319,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 7.17491887502376120356992e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.462265331837503402866e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ddf5bfb62d7d7065634220828ffbbc4340a121c477e5a0ce558200f5216279be8b1788d78b427ea1a819fe37ad92d388\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462383149002385477268e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"375347947f93314b12b13ccfdc8b6f95651459e99b42deee0e3855ee94294c4f3bb5be3f87c034e859514e3f3dbca988\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461880665388149348936e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ab9098928a35c724dc2b11be0eacb6bc86a4613b069ff6396415f6a10e6265b710394d9077db7070945d45cec7fac484\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462096215562009243848e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"33a3d789c0ae207be83019bc6211f8d0f4b2351d4227abc5b2c63a8bd079a19389936556f1cb750debc32b7b024e650c\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.46226822832616049087e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1737cd597cd9aba25154b71ea5281aaec3c4f89920548a1af8eaff6e4f2cc1e60613bc3666ab5befed3a90b5c5ca5d10\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462155345427634296536e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"385cd756a60348191576404ef8e60817225160c5806ed54c9997286b55e6526dc304c6f0f92084e31ecff8cde36b7d10\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461983673394917599016e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"382cb200d415c25b527e6fe2772c093de9af6fdecf596aa03a35026f2766f550b5a16be316aee427341214f1b7d3b00c\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462096215562009243848e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"304254dd9e216f9014bdb75e7acdf17760b7b3a70bf2e7da751728f8ca66f3bad26c971c8775803d0d2a80bd84402e94\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.46187183587093327718e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dc277e5aa25ebc0a9092f514964338e66048fd3c952a3652b8aa64c8dfbfd2024a43070cd07c6bcd5682375ec4c0b898\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462096215562009243848e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"67449764648f0ba4ba0f7d689278fb36a3f81d2c65432a9372ca75957aec3a456b35c89315fc9dff46e31cf257beac98\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462098176693212268968e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"70c68e596625ec8804d6e6b43f8c1964adb674b5bf897582201714bfc309b6fa67915390ccf382f8cd58a4c851111388\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462096215562009243848e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"59d956935972502209c7c3ca629227cc13beb7b53f9be02bec04d35e7a2165144d0fca23293f60c3d15c3ab178e1a804\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.46220619156370853658e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7c07906423d06c8b4f3d30a1b139e29880cc7b1a39e150919308d8b321985740fc0a2af4b85cb17685442241cad34d88\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462155345427634296536e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a330d62e144606695d5fe66385a0120cecb3e5ab71cc33c0e1e4a034cc37e1156f12a34f3c91158638618589804ccc80\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.46187375958242063015e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"86bc72330c7698f2e439a3fdbd0c2ee4cdbbd1a5ec862bd57933e0fb228f8089548f94877b305a16d3e24610e8c4da18\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"group-percent\": \"0.005901964717552287\",\n                            \"overall-percent\": \"0.001888628709616732\",\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.0567325107424e+25,\n            \"validator\": {\n                \"address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                \"bls-public-keys\": [\n                    \"304254dd9e216f9014bdb75e7acdf17760b7b3a70bf2e7da751728f8ca66f3bad26c971c8775803d0d2a80bd84402e94\",\n                    \"67449764648f0ba4ba0f7d689278fb36a3f81d2c65432a9372ca75957aec3a456b35c89315fc9dff46e31cf257beac98\",\n                    \"7c07906423d06c8b4f3d30a1b139e29880cc7b1a39e150919308d8b321985740fc0a2af4b85cb17685442241cad34d88\",\n                    \"59d956935972502209c7c3ca629227cc13beb7b53f9be02bec04d35e7a2165144d0fca23293f60c3d15c3ab178e1a804\",\n                    \"ec89bc67fbe7c64fadeb1d0c8590647b7b31bc5c9dfd35066f6fedc63ac8585988d07a7b620ea17d16d6a3818861e594\",\n                    \"33a3d789c0ae207be83019bc6211f8d0f4b2351d4227abc5b2c63a8bd079a19389936556f1cb750debc32b7b024e650c\",\n                    \"86bc72330c7698f2e439a3fdbd0c2ee4cdbbd1a5ec862bd57933e0fb228f8089548f94877b305a16d3e24610e8c4da18\",\n                    \"70c68e596625ec8804d6e6b43f8c1964adb674b5bf897582201714bfc309b6fa67915390ccf382f8cd58a4c851111388\"\n                ],\n                \"creation-height\": 3361577,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.1708e+22,\n                        \"delegator-address\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                        \"reward\": 7.769431602442690835512e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yv760p0j0mdjs9y30puj9felcvz4sspz8aja7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12vq79k6nwv475khc7mmp83786wrlgslj0zllgs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r0uhfdksp5xwvsg9yzgugz3n2ucc4re4kj8s8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one13eec5h4k6xw5h8up4duqzpvsdtcrypnekqjnhy\",\n                        \"reward\": 5999937079558126790,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e504ehgs8n3llhs2g8jc7zukcjp4kscduh0hwr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1shtfgjgu099ygdkas8gp6akje3xnf6kw35xeh5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rsswq9k7yq47mv7mrpc28ngq7mrn0xhnhe7mgk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.1375059306533610483008e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3e+21,\n                        \"delegator-address\": \"one1ekqjas85d6d9axn9mapgr3dr9c5kc503qcsdkd\",\n                        \"reward\": 12677045143135477267,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.23942e+23,\n                        \"delegator-address\": \"one1j0nmr445gf35lskevtac7khtudt5vah27af2c9\",\n                        \"reward\": 336346010161065341521,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7e+22,\n                        \"delegator-address\": \"one1kt957tv5v6h3ez45zpvwyyu59c2ej9dx0285qw\",\n                        \"reward\": 129311640786139305375,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.9e+22,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 124057390021155261879,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 34610416083766787063,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6922083216753590282,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6xz73724nja8cn2c2d2gun2n5nenyr7da8r64\",\n                        \"reward\": 3274008894155041709,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 11187021124558978970,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 120114040660070056,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 43969450628797085907,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.452e+22,\n                        \"delegator-address\": \"one1l8p7ytcsq2c97t75a5er6kqedw0qddgyjpd7eg\",\n                        \"reward\": 81464626152456155072,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1e+22,\n                        \"delegator-address\": \"one1rztveplnzzx5q2za6aucxlckqsek65juvlq73w\",\n                        \"reward\": 70320231195523511065,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.830107424e+21,\n                        \"delegator-address\": \"one1jfswdzr7cruvpyp2t2ed5znun6uvku7ynqzq22\",\n                        \"reward\": 17956989872253784152,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.025e+21,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 1009179035294669057,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Hobbist Blockchain Enthusiast. Running Harmony FN since testnet. Hosted on AWS Dual CPU 7GB RAM. High uptime. Low fees. Follow me on twitter @TBD_investments for any changes before each epoch. Stake with me\",\n                \"identity\": \"BC\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"TBD Investments\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"bucket@yldkard.com\",\n                \"update-height\": 3473326,\n                \"website\": \"https://bit.ly/36bj0TK\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 14677,\n                    \"current-epoch-signing-percentage\": \"0.993905329450802465\",\n                    \"current-epoch-to-sign\": 14767\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"22025555040874800000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.119837123015291018\",\n                \"blocks\": {\n                    \"signed\": 304253,\n                    \"to-sign\": 313404\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.110706014674876217\",\n                        \"epoch\": 275\n                    },\n                    {\n                        \"apr\": \"0.102120331228315918\",\n                        \"epoch\": 276\n                    },\n                    {\n                        \"apr\": \"0.110390728714853803\",\n                        \"epoch\": 277\n                    },\n                    {\n                        \"apr\": \"0.113467596085996412\",\n                        \"epoch\": 278\n                    },\n                    {\n                        \"apr\": \"0.119898830098794728\",\n                        \"epoch\": 279\n                    },\n                    {\n                        \"apr\": \"0.115139639418660707\",\n                        \"epoch\": 280\n                    },\n                    {\n                        \"apr\": \"0.117543946103908045\",\n                        \"epoch\": 281\n                    },\n                    {\n                        \"apr\": \"0.107450198926622941\",\n                        \"epoch\": 282\n                    },\n                    {\n                        \"apr\": \"0.063453871821446323\",\n                        \"epoch\": 283\n                    },\n                    {\n                        \"apr\": \"0.120658922033155985\",\n                        \"epoch\": 287\n                    },\n                    {\n                        \"apr\": \"0.113897884954279373\",\n                        \"epoch\": 288\n                    },\n                    {\n                        \"apr\": \"0.100860985544677955\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.122924166860778089\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122125078802158466\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.116842694655447111\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.052434122003270922\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.051788033974064543\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.088792095770286579\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.086208130015737792\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.079973494369258898\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.118974653653677451\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119929985520719967\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117142549713903767\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120348027380187867\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.115372434139418812\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.116068368963688542\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.063092173169428713\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.118194911171771723\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118552654148891216\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119224197868619422\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119837123015291018\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 17478,\n                            \"to-sign\": 17479\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18275,\n                            \"to-sign\": 18283\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17573,\n                            \"to-sign\": 17663\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17163,\n                            \"to-sign\": 17299\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17657,\n                            \"to-sign\": 17761\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16732,\n                            \"to-sign\": 16924\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16131,\n                            \"to-sign\": 16249\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16539,\n                            \"to-sign\": 16805\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16721,\n                            \"to-sign\": 16991\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16716,\n                            \"to-sign\": 16773\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 202,\n                            \"to-sign\": 203\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20501,\n                            \"to-sign\": 20542\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 19757,\n                            \"to-sign\": 19875\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 606,\n                            \"to-sign\": 606\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 45816,\n                            \"to-sign\": 45882\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 22193,\n                            \"to-sign\": 25346\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 9516,\n                            \"to-sign\": 13956\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.16209225102339474476476e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.509793479747834440678e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9d5f3a3464b1cd835417837400af8b31bdd9e47de11cb131c4f7024a52df8329074b11d54296d8ba26d57fe7b0bf9197\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"group-percent\": \"0.005939872311717973\",\n                            \"overall-percent\": \"0.001900759139749751\",\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.510843058259895884674e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"847ba7e5422187c2c0e594efa31840d117641d9a156ffc076d9194ab71f7ce95b59f2c00a822312da60f39f2d6437583\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"group-percent\": \"0.005939872311717973\",\n                            \"overall-percent\": \"0.001900759139749751\",\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.508354252716628499044e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"fa39249e9fdc2c7d2f05134ae3767ad2422b6796b56c0e1e1b64a170d5ffa90778736a403732c37e701cc6306d4a0e97\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"group-percent\": \"0.005939872311717973\",\n                            \"overall-percent\": \"0.001900759139749751\",\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.509862890931508173698e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a47dfdc18f6118de254649ef09c356372eb8b34939c10e8f32cbe17363d01fa7694f0ca409de478c21233b3402f0638f\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"group-percent\": \"0.005939872311717973\",\n                            \"overall-percent\": \"0.001900759139749751\",\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.4448211230206e+25,\n            \"validator\": {\n                \"address\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                \"bls-public-keys\": [\n                    \"847ba7e5422187c2c0e594efa31840d117641d9a156ffc076d9194ab71f7ce95b59f2c00a822312da60f39f2d6437583\"\n                ],\n                \"creation-height\": 3361603,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.542205e+24,\n                        \"delegator-address\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                        \"reward\": 2.3124669050067171375364e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one17f802jvut8dcz2f6tyla9s275jy7zdm6zuelwa\",\n                        \"reward\": 16772980129014613339,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.43035e+23,\n                        \"delegator-address\": \"one1cf74gsspn06dldpczp4myn0g2ftugtrp2w7xmq\",\n                        \"reward\": 1.4140209303063839076933e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1949169327e+22,\n                        \"delegator-address\": \"one1p5utefzvs3d23s303wcdv9zfv6res5srphhe7v\",\n                        \"reward\": 57074613858062656396,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awzkclvn9vdennul9m7ftqdwfwftwyhuqk4yta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.36e+21,\n                        \"delegator-address\": \"one1j9g7uyg8kx5pkh82hpmuahcd6a3k347fdrg396\",\n                        \"reward\": 3979889941748922312,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one19mas6xg4tyd3xrhc4ycl2ypyu0knsv2ym7fcwp\",\n                        \"reward\": 424942468553625919297,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.8173437481e+22,\n                        \"delegator-address\": \"one1m5zwjukl3nx5r3gaf35hnp7ymwqtqxqu52sc85\",\n                        \"reward\": 62921278313037524711,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.569653599e+21,\n                        \"delegator-address\": \"one1rsswq9k7yq47mv7mrpc28ngq7mrn0xhnhe7mgk\",\n                        \"reward\": 12919145003517555972,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x6wrxnudm85r3mmyxp5hf5g6gqyyxpj86efqqx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.00235e+23,\n                        \"delegator-address\": \"one1398f0vkwnsxpcqveg96c53a8z39k35673jpwhc\",\n                        \"reward\": 402998826392794035606,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one198323cmhlxeeadj9auhpdmc4vcn8c2mv3e4eg2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10jm8mz7wsd6y2etrgpy0xslf2r4sxcx2yhfu3k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0521e+22,\n                        \"delegator-address\": \"one1qy9mum6mtp5j5u0y3ekaqn8quahvsezavxwu32\",\n                        \"reward\": 88320973157450940508,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1as4hhpsvxj9ftpsw9y26l4tzf7wjvyw74nk822\",\n                        \"reward\": 126162523269635602004,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.11105e+23,\n                        \"delegator-address\": \"one1vezcgrr7575xw909zgh52mqpf0hp9rc3dhzs87\",\n                        \"reward\": 938974404122761503688,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8243374692e+22,\n                        \"delegator-address\": \"one16pge04u0um9ljmwdkavjaunhpgupeakzamfdec\",\n                        \"reward\": 374140482125326668284,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jwfa4ldgsmlk204p233jxhz4f6d998wf8mjlex\",\n                        \"reward\": 1943845105111206190,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 24087177899285683667,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jl28hg5949hd4s57e2pv49pgz05g9xkk0g6tfl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9640175642e+22,\n                        \"delegator-address\": \"one166q38wr8lm8dsmqpg0msl93x6qylg99ym03mrd\",\n                        \"reward\": 5020637427639081167,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.395e+22,\n                        \"delegator-address\": \"one1zmkq2yc3e4970tpjhyayuux5l9gt6htlnllfku\",\n                        \"reward\": 286919409747245907808,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one163a0z3kuua7veqakp752kcugdnpvt4eswxc5hh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8141e+22,\n                        \"delegator-address\": \"one1srkclutj4zuhh7jlcej9vvfad22jzq7e06s6tv\",\n                        \"reward\": 15204495293175090167,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.066336e+24,\n                        \"delegator-address\": \"one18stmp9vs3jzrve04zwwgpvxmd35r25nsecpst0\",\n                        \"reward\": 100675325010910532497,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8pu8pwfh7q7x8e70ptnztwdk6n505adm42yva\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.904998e+21,\n                        \"delegator-address\": \"one1gev4kpvh6rd2ehmfpd6dr7fngkn99fc7azj52y\",\n                        \"reward\": 54594816143097528086,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.259000130082e+24,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 1.1220654032855689638345e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1999999e+23,\n                        \"delegator-address\": \"one1t7c9ul3ph2rkara7wr2lssuzm7tsw0yl97w8e4\",\n                        \"reward\": 1.075354153595181584971e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.907640634e+21,\n                        \"delegator-address\": \"one1v6sq2d0880p9466ugqwkxsskrmkygyxsykvyf2\",\n                        \"reward\": 11414073066407986518,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.139147019e+21,\n                        \"delegator-address\": \"one1h6vfv98pn9ughh60rywrlezczsd40r3munmnxk\",\n                        \"reward\": 34895962495308809182,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.97415998e+23,\n                        \"delegator-address\": \"one1mptep9vnx9ln5gzsg2rzsw0mvav33es0s9v9gv\",\n                        \"reward\": 77713202967880738077,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0712146763e+22,\n                        \"delegator-address\": \"one1k3ck0f5dffgmv45ncfnn74xgdv3nwwcralmetv\",\n                        \"reward\": 42782684872456703433,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.805e+23,\n                        \"delegator-address\": \"one15jzx7smpuds47j0qzph232wdafyegxk8h53ydn\",\n                        \"reward\": 26087083586294395927,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.995e+21,\n                        \"delegator-address\": \"one179vdp5tzcx9zl0wftdyq9wu338hpf4wa3suwxx\",\n                        \"reward\": 8428968847900848442,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.277e+23,\n                        \"delegator-address\": \"one17pwt4mwrjr7aufc80evddd45xt97z6ksljsr8h\",\n                        \"reward\": 1.203696152336292187189e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.375e+22,\n                        \"delegator-address\": \"one1cl85ua3yg6a0ady5d0tpttg8ttedjtlzy0lhjt\",\n                        \"reward\": 138562331542273244944,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.067e+21,\n                        \"delegator-address\": \"one1a43sh55wfr0g8h24jvzax25h0x2ehdyk7u983y\",\n                        \"reward\": 8074542085130135711,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.49e+22,\n                        \"delegator-address\": \"one19hy84zx5vxlnp2jfa3mghr2ekxhhyntdx7vysw\",\n                        \"reward\": 5939723129134235118,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1dnd69723taqllad0efjte0sy3xm5ukk7fjshl5\",\n                        \"reward\": 79727827236701155809,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.101e+21,\n                        \"delegator-address\": \"one1lzkuf9aany5ywg0t5pwu74u6jwnau8hgd503zm\",\n                        \"reward\": 438901688938036404,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.33598368967e+23,\n                        \"delegator-address\": \"one1z9hnyw8demj8n5r8xv5d05j2wlfpzxj52vm4nh\",\n                        \"reward\": 17020637076037377323,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3919e+23,\n                        \"delegator-address\": \"one199s778cleljylddn59gaklxl0ucmdue0g5jqjk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4866e+22,\n                        \"delegator-address\": \"one13cn6t9kwhetm7xeyghahcpvrmflut2wks7ctfw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Stakeless helps you stake your coins.\",\n                \"identity\": \"Stakeless\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.090000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Stakeless\",\n                \"rate\": \"0.049000000000000000\",\n                \"security-contact\": \"stakeless.prod@gmail.com\",\n                \"update-height\": 3515969,\n                \"website\": \"https://www.stakeless.com/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.508725526919529030\",\n                \"blocks\": {\n                    \"signed\": 41670,\n                    \"to-sign\": 102219\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.195717203402607659\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.508725526919529030\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 295,\n                            \"to-sign\": 303\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 22149,\n                            \"to-sign\": 22544\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 5850,\n                            \"to-sign\": 23548\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13376,\n                            \"to-sign\": 55824\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.4402208078094277102844e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1uugr9gcd7apak6q00a8qg6zaaadls5vc09a237\",\n                \"bls-public-keys\": [\n                    \"66217cf66e88e6a7e0ce0bbcf6a19ba24118775efac2504d0e819d384971d6f48ac33a0c69fe6ece5d0eaf51bfb2990a\"\n                ],\n                \"creation-height\": 3361649,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uugr9gcd7apak6q00a8qg6zaaadls5vc09a237\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yv760p0j0mdjs9y30puj9felcvz4sspz8aja7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9vl22yqm43ut87wh2c2lja5yt55jwk62q74a6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one135f4zp70a6dsv759rx72f7t49ev8hmqn67e4ta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1muus26kz85zfn8lavcgxlt2n9zcxeza3d9tl4m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jpxwmkc4ad7p0p66ya6vl3c379qwhuywqrq95v\",\n                        \"reward\": 14889144970904638544,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Harmony 0% Fee Node\",\n                \"identity\": \"Jupiter-4962\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 2e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"0% Fee For All / 100% Current Uptime\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"tertychnyiy@gmail.com\",\n                \"update-height\": 3392704,\n                \"website\": \"harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 209951,\n                    \"current-epoch-signing-percentage\": \"0.999966659998666400\",\n                    \"current-epoch-to-sign\": 209958\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"115055177848238543241899999.999999999999999988\",\n            \"lifetime\": {\n                \"apr\": \"0.118248941558485906\",\n                \"blocks\": {\n                    \"signed\": 3108942,\n                    \"to-sign\": 3110895\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121868443794839793\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121613531358981706\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123283434881594203\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125987990871076269\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.119373476323441585\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.125162507475227373\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.124086141182580179\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119178914047497837\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116770565121931565\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117399595194087153\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.114746121350414621\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117151914153154480\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119904311577154977\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119122204135589619\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.114962783379279339\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.115817829276846024\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.114650572533387078\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121598732306483844\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122111122613915626\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121247236334502427\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121119380109765175\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.123009446009620649\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117926765562407836\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119004528109833425\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118513739646294828\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118915845605126822\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118664540138488411\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117482163123622908\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118814029378512782\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118555219290492728\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118248941558485906\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 242890,\n                            \"to-sign\": 243276\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 253284,\n                            \"to-sign\": 253288\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 210477,\n                            \"to-sign\": 210478\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 223924,\n                            \"to-sign\": 223927\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 229317,\n                            \"to-sign\": 229317\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 168892,\n                            \"to-sign\": 169970\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 173550,\n                            \"to-sign\": 173552\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 185990,\n                            \"to-sign\": 186042\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 187395,\n                            \"to-sign\": 187395\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 186098,\n                            \"to-sign\": 186098\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 120610,\n                            \"to-sign\": 120610\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 123876,\n                            \"to-sign\": 123900\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 85476,\n                            \"to-sign\": 85484\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 161859,\n                            \"to-sign\": 161903\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 101743,\n                            \"to-sign\": 101743\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 74777,\n                            \"to-sign\": 74777\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 70720,\n                            \"to-sign\": 70720\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 56595,\n                            \"to-sign\": 56619\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 41518,\n                            \"to-sign\": 41838\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.051721261876929597717708e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.69974094007872361766e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"497a4af6682e07a7b2b0e5a2b9df08099f31e028a2f2d17498c091d83cac69ff44016ca7fc0196121c9e96e2300abf06\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.699484676387090439639e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b831ee28db84958e2a43c6ffca19a8453aa818dc196d7f0058e028a642caddc5146a9ab0d643802ab15981971c54cf96\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.699940617836288604182e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8881cda12fd07d1d55b5d615e345164e3251a959636d3c6c89eca39bf2f3d7bda4790c30e97f4aa3e05d65f7ae24188a\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.698505415690268256757e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4b2f5d50d469f865cb9a1f65bced9992a5012f737b5a5c1d32fc9fc462991d931871275a733ff4989d206f31932b7d82\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.699865390880557821908e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7f6ced5becdad6859fe9082f70062fd107ee4aa647621b0e7894138a52768f98f562f9624b20a804210035eb322cf302\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.70041807476835814692e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3013edf854faecf8884d9ec5a250ff31ffc64c8776e43c3cb0b68c44d8b36cbb121962bbfa50d5f25df27aa636fe5c06\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.700800120898992044457e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2f2d2b8fb2bdb66be4b382f8b8cb37f06288a039afda72d37684b69300153916b5e16232440cb510a88c3d41d84f6c82\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.69969137661342545028e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b414dd265101cf32305fdd7ee8eab64cf4c847c4fc38fa23b1ab2621e518577d77b270bf63a1dd254006c5ab6669fa86\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.69938374600446814186e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7fc0ccc3154cb611318def73b241644a610dea20a5edebf2837dd3898d46e2ddbd2d6038e5aa4a7e553c5adbc5a41c86\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.700474220963634970671e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e6590054e2cf8056d94751242c67478e611f910377f2c0e9538f7e5027659cfb393191fd435d81e8890aa654aa30a302\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006655212273872103\",\n                            \"overall-percent\": \"0.002129667927639073\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.758577681521334856278e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a25141a3771f001f9a519406e1c36babdcb90a8f31d5986dfdcb5e4519515b3070420e27869ac6103120ae75b005b50b\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.758408696415164906856e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4c02492dd86d59fdc5c8a283e9e89f5d35d8877bae12faa18b7e1efe6422531419a488f9d44fc67b4ddbd048fb5f8393\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.758743269026660446999e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b2ec089fe7af1194c317b2135d6acac70dd6fb14264014d4c2917c0f80dec29180fcce3d5a3b382024fdd3d02d2cbe97\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.758439064984250956001e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4a7a0453f2d35c4c0ccb69e666576785702124d2206808c0aac9e22dfadd0dbf01c38564a5fc80f7fdef62829d250193\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.75855304955364614634e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0ac01bf36c064ca3c695c1c5fcc04c79b28e64f6db5e3338aad46159752579c64b59a4f9d683528bcb5084545905ed97\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.756870190000885530932e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d0c1d86af7924349dedd8e4fa2a7dd4f7e263424b29f9d7de47c7f1c2f289904f6ab68fd18f95f95848dc1b5c175ad07\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.758063815260027175265e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b045a47f8f8976fc489ee79782e13fd1bc5fa682b6df4eea158aa2cb9ad313b168cecdebd79723aef2dc85cb2ac14d93\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.75885645640943550296e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"31da8512a419dbe5ec4e230cb8d81fa6493922f964d7d7ad4374388cc61edfb55592e568583b8f10871a78918290ab8b\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"group-percent\": \"0.006895152915201034\",\n                            \"overall-percent\": \"0.002206448932864331\",\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.462127877450542533334e+26,\n            \"validator\": {\n                \"address\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                \"bls-public-keys\": [\n                    \"2f2d2b8fb2bdb66be4b382f8b8cb37f06288a039afda72d37684b69300153916b5e16232440cb510a88c3d41d84f6c82\",\n                    \"3013edf854faecf8884d9ec5a250ff31ffc64c8776e43c3cb0b68c44d8b36cbb121962bbfa50d5f25df27aa636fe5c06\",\n                    \"497a4af6682e07a7b2b0e5a2b9df08099f31e028a2f2d17498c091d83cac69ff44016ca7fc0196121c9e96e2300abf06\",\n                    \"4b2f5d50d469f865cb9a1f65bced9992a5012f737b5a5c1d32fc9fc462991d931871275a733ff4989d206f31932b7d82\",\n                    \"7f6ced5becdad6859fe9082f70062fd107ee4aa647621b0e7894138a52768f98f562f9624b20a804210035eb322cf302\",\n                    \"7fc0ccc3154cb611318def73b241644a610dea20a5edebf2837dd3898d46e2ddbd2d6038e5aa4a7e553c5adbc5a41c86\",\n                    \"8881cda12fd07d1d55b5d615e345164e3251a959636d3c6c89eca39bf2f3d7bda4790c30e97f4aa3e05d65f7ae24188a\",\n                    \"b414dd265101cf32305fdd7ee8eab64cf4c847c4fc38fa23b1ab2621e518577d77b270bf63a1dd254006c5ab6669fa86\",\n                    \"b831ee28db84958e2a43c6ffca19a8453aa818dc196d7f0058e028a642caddc5146a9ab0d643802ab15981971c54cf96\",\n                    \"e6590054e2cf8056d94751242c67478e611f910377f2c0e9538f7e5027659cfb393191fd435d81e8890aa654aa30a302\",\n                    \"0ac01bf36c064ca3c695c1c5fcc04c79b28e64f6db5e3338aad46159752579c64b59a4f9d683528bcb5084545905ed97\",\n                    \"31da8512a419dbe5ec4e230cb8d81fa6493922f964d7d7ad4374388cc61edfb55592e568583b8f10871a78918290ab8b\",\n                    \"4a7a0453f2d35c4c0ccb69e666576785702124d2206808c0aac9e22dfadd0dbf01c38564a5fc80f7fdef62829d250193\",\n                    \"4c02492dd86d59fdc5c8a283e9e89f5d35d8877bae12faa18b7e1efe6422531419a488f9d44fc67b4ddbd048fb5f8393\"\n                ],\n                \"creation-height\": 3361675,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                        \"reward\": 2.593308793043105111937e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.11525692015e+23,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 377343599578709435134,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+21,\n                        \"delegator-address\": \"one1yqlu8j3y6sv55nx3v987cxr209gmkqjy5vgjh0\",\n                        \"reward\": 25051136004536816225,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.25e+23,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 3.539035315168391816197e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 21855597230007673089,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 29277552965228502218,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9335e+23,\n                        \"delegator-address\": \"one1j9g7uyg8kx5pkh82hpmuahcd6a3k347fdrg396\",\n                        \"reward\": 416413105763769738064,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q2v8nqnk8gflhscwl7mz2pfmwljk440dd7wjan\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kmdga276hje5cgefelakkcwgrhu7ndjfdnnzws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.792925e+21,\n                        \"delegator-address\": \"one1shtfgjgu099ygdkas8gp6akje3xnf6kw35xeh5\",\n                        \"reward\": 4922218422354508522,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 87778346825671138772,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.592e+21,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 20656886922050084657,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6038e+22,\n                        \"delegator-address\": \"one1l4dtuj5s7sj8q34urqmyev5jjx2s6t8yp28wjx\",\n                        \"reward\": 38458904261394468566,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6e+22,\n                        \"delegator-address\": \"one1jewus8je3hfdpjrl2arkvsgd2dwnty5m4zu2qe\",\n                        \"reward\": 871877066515559721398,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kctqdpsfuexz2lefefcqyyjydw6zvr3kc9tras\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2042e+23,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 768683076978426043576,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.07169e+23,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 276066544657316529279,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ct3jxm4j23c0yjxw89mfj5jp8dwfxzle4eacr0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0001e+22,\n                        \"delegator-address\": \"one1utkxtz9mjja28lrtltf28w4jmuzqrn5j7hlat7\",\n                        \"reward\": 301150242343137781071,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.247e+22,\n                        \"delegator-address\": \"one1emggc9549mcv259z3w6fe4ptwt89fy2rzqhc3c\",\n                        \"reward\": 112928716168488864598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.60983461e+22,\n                        \"delegator-address\": \"one1d6vmmq6elrx0z52zv5v7su2sykua8smaxy330d\",\n                        \"reward\": 142871828020964419481,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1545e+22,\n                        \"delegator-address\": \"one1h3szew3asdd32u7mzd9upjg78k2afdz2cl2fxx\",\n                        \"reward\": 277980841450211942122,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 58956150995416208763,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 87713727319217291112,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.371e+22,\n                        \"delegator-address\": \"one1fsqyatysv7y3dg7lg0h39kmq2qygxwx3lmm83m\",\n                        \"reward\": 38347869574066925420,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.946e+21,\n                        \"delegator-address\": \"one1j6dhuczyfxz677l33j0kkeez23whf8jpjkyftw\",\n                        \"reward\": 26859348776137194259,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.1398195714e+23,\n                        \"delegator-address\": \"one1munucyh09snudfrljn6z3w43d34ujwf6fxd2gr\",\n                        \"reward\": 7.456503648757007710885e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.25e+22,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 25920437946907572324,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5808e+22,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 68668604955902146062,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.55e+23,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 297414618285890878535,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.24832e+23,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 691602076900672857001,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 12669781560663772522,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1zf239ny6pdy0twnzmuaxumvgx9ld9rlfl2a3sh\",\n                        \"reward\": 1.4871064294407568395353e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.00000228245e+23,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 332196731332586793676,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9995e+22,\n                        \"delegator-address\": \"one1r8p9p4hnt3kx9ymvznxgfcm308md5fxwezy55d\",\n                        \"reward\": 226460489823775651450,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7937475975e+22,\n                        \"delegator-address\": \"one1myz5fpmctcqq424u42dkkmrsn8xhg9tsgduyy7\",\n                        \"reward\": 3456362860726521264,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one14zxucth84p9u4a9zk8f3t0rwvvgrsqgjk4z5f6\",\n                        \"reward\": 433279856920894112852,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.241947e+22,\n                        \"delegator-address\": \"one1npcp2tagsewhk4q7wy729azttw8rey9er74zrq\",\n                        \"reward\": 134296260998514526293,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9999e+22,\n                        \"delegator-address\": \"one1t9a9pnyvjkz4kffhwrm6damfrd4z9a0ejrm690\",\n                        \"reward\": 446117057767932620885,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.06e+23,\n                        \"delegator-address\": \"one1qtx776yews0t80k9ppe6d2qd76clnpp2tjs8wt\",\n                        \"reward\": 823140110068234987393,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15gmk6l5df6aczsh0jx3hsk59kk26curq54u6gz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.687478085169e+23,\n                        \"delegator-address\": \"one1wsy0f9p245mugshnsud7se805htq3sram33ek0\",\n                        \"reward\": 5.203002319495082236634e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.38173758e+22,\n                        \"delegator-address\": \"one14kr7gvrrmhvfa3p30q8tmy8nkrlqtcjpce6jqq\",\n                        \"reward\": 18346520638452337230,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3e+22,\n                        \"delegator-address\": \"one1jrvn0x6xwfl35cazxp6fpxl2xx0qnxsawl5r7f\",\n                        \"reward\": 81745222473852581510,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.515e+22,\n                        \"delegator-address\": \"one1umwmahvkvf6pwpmw9wcsq02gjz0v0k4sss0c3r\",\n                        \"reward\": 50919724518434872171,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.166e+23,\n                        \"delegator-address\": \"one1unz7hpen6x8kvqtee2ta2pj8ju7a6tm67c42en\",\n                        \"reward\": 1.733966096727922319068e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.2740808e+21,\n                        \"delegator-address\": \"one1wtel9v7gdfe6w3d8dnxjgts6gzvz3neqxcwhga\",\n                        \"reward\": 20431671461499548860,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+22,\n                        \"delegator-address\": \"one1e0v6q5fl9383rhupnhhwgeqc62xy7p23znd4cz\",\n                        \"reward\": 106040472840995631585,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+25,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 2.286126523958180716237e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.000125e+22,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 218013604931375454448,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1kj7s0p7mg200j6sjtljj9yv52tem9jja3qt80k\",\n                        \"reward\": 371776607360189091466,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.29999393596e+23,\n                        \"delegator-address\": \"one1ggmrkzgep9z9gtfr690eudzmj3y0yky44cnkjm\",\n                        \"reward\": 481524360053646856224,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 2164278264574281380,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 97627905512710703090,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dwecfk9455vh6cx9shx30qyeznzem9wum80pvk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2e+22,\n                        \"delegator-address\": \"one1ye8vxw3cmhju6cr0wwa8t26wcz7urjfm3y7zet\",\n                        \"reward\": 280140194287790552980,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcd73jcajz7wsaquzxvcjv94fere2xtqyyjz2q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.8768348032e+22,\n                        \"delegator-address\": \"one1xaw8fts5x7dxen7f82t2xfg7usykzwk83jpsfv\",\n                        \"reward\": 873947882059992460269,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.635082339e+22,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 39243495364766663983,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+24,\n                        \"delegator-address\": \"one1d0w5upanuqxwwkt4eqd0uxa64mhx58xafrmvhl\",\n                        \"reward\": 1.350946280424768313781e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 1.100952105931726783114e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awzkclvn9vdennul9m7ftqdwfwftwyhuqk4yta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3090108e+22,\n                        \"delegator-address\": \"one10cg3jrdvpx76n97v9gnrx2tsashl4fu96wlwgl\",\n                        \"reward\": 640795766520965780226,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.29e+23,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 412049398108609282863,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1utr8dmfygm8xn2n5t4fhalhs9tagpr2l6dwpzp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.683e+23,\n                        \"delegator-address\": \"one1th6dqkvnsc9wc023mr306yykflcqlpssmxzqp6\",\n                        \"reward\": 3.135174957157704817084e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17td8n6wa7l57gj727gl4u3z7hn7mpyftj9fhef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.822e+23,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 161119150392179819455,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.17578e+23,\n                        \"delegator-address\": \"one197wwsy7fnkts6mj3258gysaeqq7qz8nqnyent0\",\n                        \"reward\": 345018891422225695381,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.26644019e+21,\n                        \"delegator-address\": \"one147w9xun8eqrdg6yka7ejnr4mpjwupl4pgs9dtz\",\n                        \"reward\": 18833313490511716376,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.000870989e+21,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 39455073158567090165,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jlz369f2t09hy8pwwg85kdqqfw690rt7nfjeta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.15985e+23,\n                        \"delegator-address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n                        \"reward\": 614237839448304828269,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1670978e+22,\n                        \"delegator-address\": \"one1m43p84524lyge8z2zj8p9jlrg4wrz5qe9nazxg\",\n                        \"reward\": 282104605179695055630,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.399e+22,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 112167553593270257271,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1g4u3hy78vux7mtqerfqechx7q7seyg6avtnq4h\",\n                        \"reward\": 28669852958463164535,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.699614721313e+24,\n                        \"delegator-address\": \"one1khpmdjyc8qc9ye5np6dpe2paqrz4e2jxymwpj2\",\n                        \"reward\": 1.0738967557133034290348e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05081662919e+23,\n                        \"delegator-address\": \"one122uq95m7t63rcvy6jd8jwgf96x8hfv63q9m9hh\",\n                        \"reward\": 8868075977263513248,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1245e+24,\n                        \"delegator-address\": \"one125vjyehjk37nae9jxscllh72pn944czt9uwlg8\",\n                        \"reward\": 536981387380210228415,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3e+23,\n                        \"delegator-address\": \"one1l672kfy4fpvkmmg6d05unv8ln6sdq6lwq980lk\",\n                        \"reward\": 245315470238933899719,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.893e+23,\n                        \"delegator-address\": \"one13vwdw5xwnuyu8q92pt90akdqmne4v3w34kxxry\",\n                        \"reward\": 116485910630747600962,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fcdqc2dz9svh6zvcuck6pcgrchmmsjpva5ells\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g5cf7zpp5pfpvvhzs7vyuq0kjpkk6dzd70xn46\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1513546442542e+24,\n                        \"delegator-address\": \"one1rmzxqa5ukgge05ej6f260zry05z6sdruzju2v7\",\n                        \"reward\": 8.806538213258624503617e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one133z76xlp2dysfzgjeuc6asf6d882cpn3m40den\",\n                        \"reward\": 26631626689931260414,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 3.0131e+23,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.097899572e+21,\n                        \"delegator-address\": \"one1mwhe2kjsxs3fvr8th39nhkgllcap4cplr5pdx3\",\n                        \"reward\": 31197999418422182568,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0626e+23,\n                        \"delegator-address\": \"one1ka8rvmmmw4gale8mmwse2fzp0zqasy99tu2nz6\",\n                        \"reward\": 1.006886311543731422687e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jg7dty0ft0q8pk0tucmkhqjh2h4449lxx2gtjr\",\n                        \"reward\": 667434348602992317,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.4082456475e+22,\n                        \"delegator-address\": \"one1mmmjjq2689gl7eyf9peaj7tcu34s3a2243sf9m\",\n                        \"reward\": 75766906673418214873,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.44435e+23,\n                        \"delegator-address\": \"one1dnh7wjg8mkvru3fantlqcazsrw3ma6ucdkqvps\",\n                        \"reward\": 227723187995599770462,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kdgcyarmcymllyn2ptlk97729cjndfsgqweq97\",\n                        \"reward\": 1082497520181225846,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.48e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 200729729792840899357,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one10dr00r3wrsp0v04ec7d7asy9jaw5ldp7me53nh\",\n                        \"reward\": 5653566253336290917,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.54e+22,\n                        \"delegator-address\": \"one1hfx87k7435sqa67d7fnjtwzu8uvtwzquj7m8jm\",\n                        \"reward\": 128903888063614281281,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xx6854x6xjumraghugmu97wxpe30he29lje4lc\",\n                        \"reward\": 25488927667817235830,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.354517e+24,\n                        \"delegator-address\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                        \"reward\": 3.553567829014364545667e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f4rp0r5f0sa0a7n9a8e5hzn4fy030ntt88lm7u\",\n                        \"reward\": 260095884781550340812,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mn52hyl3kwd68sd90nj2h6jmy2wztxhjpqxxaf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2339e+23,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 952900819866975887056,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1ek6nkv3d9k62zl0kkdza9xrktvhz4j2dhsuhcg\",\n                        \"reward\": 3.229604892500811657793e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3882176e+23,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 255452992576570232139,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one18xfcqu7jf0cq5apweyu5jxr30x9cvetegwqfss\",\n                        \"reward\": 10712666674517459728,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.67e+22,\n                        \"delegator-address\": \"one16dvzmd33wj36tlxtqszrnpek0nq8cl3p2julxd\",\n                        \"reward\": 119448543820564448154,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.49664835e+21,\n                        \"delegator-address\": \"one1xkekv8vh3y2r4q4agwfesedjs50kcgpqv8k906\",\n                        \"reward\": 1229814648426832551,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.946e+21,\n                        \"delegator-address\": \"one1qnn5c20aymv7v3hjmewvmpewc0w8sy8hceqqaq\",\n                        \"reward\": 75260290952809201792,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.001503e+24,\n                        \"delegator-address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n                        \"reward\": 475332146707738306878,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.13235e+23,\n                        \"delegator-address\": \"one16lexpnvm40w7dj7u328stxdnxyzv4n6ypd9qum\",\n                        \"reward\": 649710784795677450416,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17pv4h7eatla0rlugs5g3myh7jxhqvkz8f76u6h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.2705997e+21,\n                        \"delegator-address\": \"one1780hukztd6ty8f7z6z6wye0j6hez3ds8jydg5c\",\n                        \"reward\": 36217178555843986225,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6690760105e+22,\n                        \"delegator-address\": \"one1llnqqpepyjlpmhr96zhrqpf7ekgd3dhx3jpscf\",\n                        \"reward\": 5622207970264209090,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.24653031e+22,\n                        \"delegator-address\": \"one1r3cjxvlvjrhq3537yswks43tfprn8vzahwdu94\",\n                        \"reward\": 10387983807822501240,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0734720626e+22,\n                        \"delegator-address\": \"one157rwjephc5y9vt3wc685uqlfy62amjf0ukavcw\",\n                        \"reward\": 8130449979988155276,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.68649e+23,\n                        \"delegator-address\": \"one19rz3el68crvtxca0esn8ywc4wy9vda7leau5dj\",\n                        \"reward\": 2.178678542061477695778e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 126868817038193468,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3009e+22,\n                        \"delegator-address\": \"one1y7e39h6z0c0jqx9vu2epx3v5d3d44nx7sqmjsg\",\n                        \"reward\": 181712077405964312432,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qh6s6258xn27pstyxul6cg9nzq33l77dn3tx4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ljkrmdhlhgkdwvre409znv95hqf4l8rsczm3j6\",\n                        \"reward\": 687437969036089972,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1593478602e+22,\n                        \"delegator-address\": \"one1ex8lpdj9tzu9wpfgupea04z3m2nh9rqyjefnx5\",\n                        \"reward\": 6862899749866025807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.78969e+23,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 58131808616120097906,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lhytlknl0hwdtw0j507l8vx2n234d8wxqyvhcz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3309998344e+22,\n                        \"delegator-address\": \"one1e4yv58e5p8whe0q9c0dv350yhxuthumwm6yvqw\",\n                        \"reward\": 171364826459448329806,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.069e+23,\n                        \"delegator-address\": \"one105e9v62p42d4h0p46euuh0xc2kxvpk0t3sayzh\",\n                        \"reward\": 838324977789970609952,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one1jfft9hs3ed4uu38yag0y2wzp70vmpcga9xzdq2\",\n                        \"reward\": 13821477102519493491,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one1pds4dtf4pf35xnj7452m7hax24gfzu54y4xfms\",\n                        \"reward\": 31962478350715838648,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 46303691931038281561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+21,\n                        \"delegator-address\": \"one13c5lz8nu9e0n0jw49q4j9mezhpn5ucj4g3jhu5\",\n                        \"reward\": 3964480851751181487,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 120652709302057901885,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.6130410325e+23,\n                        \"delegator-address\": \"one13k7vlreqgy80w4kvkqknpgsvp2ux92lwf0kssa\",\n                        \"reward\": 1.126552213985253452047e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 40170449926631212,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4335099326e+22,\n                        \"delegator-address\": \"one1la2fefj8hfwg33ww4l2qcsv2g7zkdxxp3gethz\",\n                        \"reward\": 44913651170898865052,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.6069993e+21,\n                        \"delegator-address\": \"one1axv7pm9duu4qygc0krwr0z4p4dzedlh5qlpqrs\",\n                        \"reward\": 8129494010891095923,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.052e+22,\n                        \"delegator-address\": \"one1g7hu0lpmp99rawhjhh80jtrv6u42xzpg2sg2zs\",\n                        \"reward\": 19506093852118695856,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.167798188027e+24,\n                        \"delegator-address\": \"one1gu6ftc8cva77j7n5zevgpdshk8jmk0vhhs0w2c\",\n                        \"reward\": 414346652230833505940,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5009e+23,\n                        \"delegator-address\": \"one1qpczdf6s376y2qay80ustlr5k3lvtml6y4j5az\",\n                        \"reward\": 1.75467772835839778134e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0913286515e+22,\n                        \"delegator-address\": \"one169mgllpxsz6h5dt5nzgxpy7qtkswll5qade38y\",\n                        \"reward\": 1867447887173674162,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.38084027089e+23,\n                        \"delegator-address\": \"one1zn5axvgpx23t606xs0t59qf8xfc4fmavkh4ffc\",\n                        \"reward\": 66428634139652606607,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.968e+22,\n                        \"delegator-address\": \"one1eufv5zm8vp0jm5frdcahn3r0sfu8kzlrzpjyqg\",\n                        \"reward\": 2576166692888347660,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.13085650754e+23,\n                        \"delegator-address\": \"one10steweqwvh3gk4cu9v85z53ndjrt0c40e9pfsj\",\n                        \"reward\": 118543698002259893958,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.35543706e+22,\n                        \"delegator-address\": \"one1hlatxd4q8ld78djaerr4hhv0g6vcraxxluks97\",\n                        \"reward\": 80486866986102185854,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.32367495e+22,\n                        \"delegator-address\": \"one1an6ee2etedplc7sj7p45jy2s08alx35lwaye5q\",\n                        \"reward\": 87572006045251455971,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.66348957522e+23,\n                        \"delegator-address\": \"one1dh2f694yfw2tpe3zqsvkgaj0ykeustw93gdyq0\",\n                        \"reward\": 973970808950610397706,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.77e+21,\n                        \"delegator-address\": \"one1q8y3kg3ag6mwedj5haqs9gv7jmpfjxrzca9h6m\",\n                        \"reward\": 53645073123634839883,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one106k68mw4p37wq7dtl8n8uy3xc0chc24pvqz4vd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.515e+21,\n                        \"delegator-address\": \"one1pgz4xneava6hyp5xyvwwmdjgsszlx820e5dj2x\",\n                        \"reward\": 59199438331808605478,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05297e+23,\n                        \"delegator-address\": \"one1ps0m27wyyxv7mev4s3ayzlk28ms6a95xw32ztx\",\n                        \"reward\": 300119369944698349737,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.37358178729e+22,\n                        \"delegator-address\": \"one18sjjt4uwp6gqqdh7n66d9eumd6e3pg85mhsx27\",\n                        \"reward\": 233771630973627862664,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.69e+21,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 3906837184344486247,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2079e+22,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 13417168133465412576,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.641e+22,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 5451350826892073554,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.9999e+22,\n                        \"delegator-address\": \"one1xjq4xf4uhd9fyszvm2aw63j4hvhcddn0aq4hg7\",\n                        \"reward\": 4011462607126772692,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one19w8klanmgjqw4waxuv5y2ncwfz5d6f3md74t8x\",\n                        \"reward\": 39550559086505312781,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.2034e+22,\n                        \"delegator-address\": \"one1gclsr6czt25s56e7dkpy7cn22096xtqwjqupcm\",\n                        \"reward\": 82644506002912209190,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.434539e+24,\n                        \"delegator-address\": \"one1apfjylh3a49fv9432qrjy380wr3q376pwgfyyu\",\n                        \"reward\": 525206602110531092530,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0863999958e+23,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 553390896601218863685,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rnh96txet085fr093p64hzr4c0fudvxzgxhgez\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9e+22,\n                        \"delegator-address\": \"one1c0stsfewuu9cpna830xhcc482v28gyepfr900u\",\n                        \"reward\": 193432441142942418692,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.002006e+21,\n                        \"delegator-address\": \"one1hga9txwry02zq3dwwp4p43ycmaz5st5ptkd3m3\",\n                        \"reward\": 10755791913889761700,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+21,\n                        \"delegator-address\": \"one1f6k0cctegv22cadjnurhspl0q4a99k6plx9tsw\",\n                        \"reward\": 52597869052740248142,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1rfjslpy648xltxuw272v8q5w4lthr9m8ncpgfr\",\n                        \"reward\": 163735522216872142192,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.198358e+24,\n                        \"delegator-address\": \"one1vrpmaqnzs4pzhyqyhv4rxf2952zzjvrsqjpjex\",\n                        \"reward\": 940873040352293436391,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.92259e+23,\n                        \"delegator-address\": \"one18pqt2455nl3n0qs8v5l2zfl7ez5dygwy3q8tm8\",\n                        \"reward\": 344315746563314106869,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sx2lu574e3xxqp67zm6x3hqds9ppnkmzf76fkc\",\n                        \"reward\": 1676732992133474111,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.0996978e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 3.05705e+23,\n                        \"delegator-address\": \"one1vpslanr565n5v3qd0q7gt3j2cz8c3jj9ye7r43\",\n                        \"reward\": 505788298339156336416,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1znytkyla3279m4wgg867gfzvje8sp60max36n3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qd7hpg5de058czhl5w70cah25hq0u2raptzfxl\",\n                        \"reward\": 113964141476613566347,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.46e+23,\n                        \"delegator-address\": \"one1vczn7zeflv27smts3dk7nxwxckhms3cklryjww\",\n                        \"reward\": 1.913665846753975211006e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one18tfh604zdjm74400dt8mjtl603cllcfujq2cjv\",\n                        \"reward\": 53671294951775841166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3071992e+21,\n                        \"delegator-address\": \"one1w5qfpepheyt0lsfynd3cuarqa8ytra9mrplavw\",\n                        \"reward\": 14031814764785167244,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+22,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 27741913888427832625,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sfva32ejdyuj2yh833tlufy4x8qm2kp08mdxw6\",\n                        \"reward\": 613181115900171269,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jnvncsmlxtnr9znhqqx9rfexggmuj25gmh8pn7\",\n                        \"reward\": 682936529164278990,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 6e+21,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.35774920545e+23,\n                        \"delegator-address\": \"one1rf732ne5z74ahp79c39jpezz07qzuwz2gtwgyn\",\n                        \"reward\": 806595085605258998061,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dkkv9gqdr097e4uuyfnwwnwamfsarw0agaxgen\",\n                        \"reward\": 24669332168625404,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13xnd5t6sns2qd6qh9rp60pw3lv47q929e9sgtq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fqxnu6yy0mfl38uctd562atrpfed6s2ayynlfc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.08648968e+21,\n                        \"delegator-address\": \"one1eexqspq9vlu73pp4gse0q599xzhz7eln8lu6mk\",\n                        \"reward\": 19723136088617502828,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vpm8f0a7cah730xk6xegkfgvevn3lhfxk8tp5d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1acyxv69xjgunv3z5ymnjt2w70q7rdardr4a3uz\",\n                        \"reward\": 1859354873046172954,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.249e+22,\n                        \"delegator-address\": \"one1a6s5fd6wrsym65ua2xmn8p05excss0qn7rrn3u\",\n                        \"reward\": 107681917441272670257,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4e+22,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 2136925854032611009,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15jl96rvssq93tzwxh2y4werwmnvmehnrrnh74x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1kx5t0efz6deqcggtrvjxg58llr2agp34y3jvzq\",\n                        \"reward\": 112068841109057129623,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.196849633949e+24,\n                        \"delegator-address\": \"one1ksemd8htnmw9plclg8wjrqql4rnax7kqpzrfy3\",\n                        \"reward\": 2.010203700466973324225e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12hla7ydhggqcdt0au9nsn7fpen89vlz9rm686y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1al4clrykeckl04emg84w744xqupkzhf3d34c34\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149x673ga5xh58qpgr4c6r8wpqxaaptzwpjarjl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one1lgmxv0qxn6vckuaayhxtlfke47a6pxf8d73avu\",\n                        \"reward\": 17242901111492957033,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+22,\n                        \"delegator-address\": \"one1mv3ta8wgdeehrsja9pv7474chmu62dyy7cfqg5\",\n                        \"reward\": 306621615890836957866,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.51e+21,\n                        \"delegator-address\": \"one19h2v4fe9hggd6w77cv36qyss0qkg073xa88srh\",\n                        \"reward\": 825238863415062203,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.349e+22,\n                        \"delegator-address\": \"one1dcqjuekcmvhr2yj9dxn8w7ndd90zg2qxumrkna\",\n                        \"reward\": 56933556804902007354,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2945867272e+22,\n                        \"delegator-address\": \"one1jm9erjgeudx44jxvpyr09u2wevfrjykuvch5kf\",\n                        \"reward\": 197826660144267808846,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0199823784e+22,\n                        \"delegator-address\": \"one1d33sufcyef8k4eedfj84akatekack9suvmc8ru\",\n                        \"reward\": 162977337292539115055,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1rgl6f9qgr40a2pv95jey22pstdfmq9gsak8u9w\",\n                        \"reward\": 114989763036826222731,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5005e+22,\n                        \"delegator-address\": \"one14m8mtlzu6gk9557ya4nv004lew0ve2tf3kxhzp\",\n                        \"reward\": 28884179635557251376,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.424e+23,\n                        \"delegator-address\": \"one1572l5gau2d7gcestc7qaxdvcsa7hj2467tpf57\",\n                        \"reward\": 477573684101100796461,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.00841e+23,\n                        \"delegator-address\": \"one17zh0n602sshq3akqfrxsfpkyj7udmkx4glwy2u\",\n                        \"reward\": 42517137153612669718,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01025e+23,\n                        \"delegator-address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n                        \"reward\": 224000756730079309792,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.25e+22,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 181125303132405403530,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.94e+22,\n                        \"delegator-address\": \"one1h6l9xtc50ttr3u2wdrtxqc4vc7e7j86jpyturj\",\n                        \"reward\": 174180725684162004894,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.71647967e+22,\n                        \"delegator-address\": \"one1pmgre5h990fw2yn4uxkfud4l8drzvsdzr4xczg\",\n                        \"reward\": 406628962720881302647,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.324994e+24,\n                        \"delegator-address\": \"one1t37kzu473luvuz99ec3mjafqpldxnvvp9nnfd6\",\n                        \"reward\": 1.0259128684786103272903e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.17439e+23,\n                        \"delegator-address\": \"one1zmhmmcsy5lytxzvr6c8s85msx5ypdkljd4k4sv\",\n                        \"reward\": 1.078153588509266000218e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.9941747835531e+24,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 1.7506527252743389779178e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1975e+22,\n                        \"delegator-address\": \"one19vzmdhzq20ht0nnr7xavp0k3ah0luavsa0m68u\",\n                        \"reward\": 141978063398134938641,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.4237e+22,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 96063461364310611004,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qa4cn2u9axkz545ys6mlzk37erl365xqmn3nxd\",\n                        \"reward\": 15800467619003293052,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13z3n2gqg3ptk8cgs2jfn9cp6mec0kgu7xd9ywn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0318e+22,\n                        \"delegator-address\": \"one12vq79k6nwv475khc7mmp83786wrlgslj0zllgs\",\n                        \"reward\": 155781238721437933980,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 26396055901687242207,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0a43e43kvlw2uzmmk3xv93t6gcz5mr4whr974\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2568e+22,\n                        \"delegator-address\": \"one1zdy6xmss3du3g6t8kpj5j4kvmpyp62n83gh4fw\",\n                        \"reward\": 31349300452372837840,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uevnvfzez0kk0vkc2p45208neatzsmuwn6n0zl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.66151223147e+23,\n                        \"delegator-address\": \"one1eq3ratczrnpct6hpn384rvy9njyzq6cparn2pp\",\n                        \"reward\": 2.040622464271363580642e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6e+23,\n                        \"delegator-address\": \"one1dsqz5qn8pv58nnudvnn0ngm6f9dr3d4t8dcvtn\",\n                        \"reward\": 166011655944241810367,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 7667154184537805340,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rzrwq4cmav25mewzlz77ehen27pxhktvqqphas\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.1449e+22,\n                        \"delegator-address\": \"one120levpuutak72fet5h5ycfwwasdam4ffgxf053\",\n                        \"reward\": 216379652802002489353,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.818e+22,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 11010577737478549148,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pevrcp69mk9695cl6r2lakv4427uh3rkhm3gz\",\n                        \"reward\": 90122855831500936914,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.91403e+23,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.01e+21,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 1549559270947645827,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kj6jtey9esdpwv4qpqsgldzqckpqe6padlp04k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1782xv62cx49zdhr474lt4emc97xnvrpt8d6yrx\",\n                        \"reward\": 46071482608077549033,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 89807683141260553647,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.300071255e+22,\n                        \"delegator-address\": \"one1aurkwpe7p3zz9k2z70xg758m26p7q5wvem5prx\",\n                        \"reward\": 176350009475082460460,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tskp6s7dx5n2wqp7282390qcpzvuy5fa3n6kgg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.15e+22,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 23000950210894152414,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6015e+22,\n                        \"delegator-address\": \"one15tjsjcff0mcxc76qjrspmc8ml53yg9px3d2qgp\",\n                        \"reward\": 25758490636878667875,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.533e+21,\n                        \"delegator-address\": \"one1dm69hwemcpae6gdeaefkg0h9njvr977wzywrkl\",\n                        \"reward\": 19420901549434186633,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.51488236e+21,\n                        \"delegator-address\": \"one10umgrh373mm7ch9u62jxg6lx9z0736w5gxhwmc\",\n                        \"reward\": 40295141316266039900,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+21,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 7650124994352253817,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nmq2n95gaggzvrhx3yqwm3dxtrmxy8x5p3w7rh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8e+22,\n                        \"delegator-address\": \"one1ckyzz90hwkcjv9ge2rc8qk5g42kpt2vcha7pek\",\n                        \"reward\": 291351859012434880141,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4668618553e+22,\n                        \"delegator-address\": \"one1vg7kky6letf237h5ux955ckqdkmhn5lf3xlvvl\",\n                        \"reward\": 13047273888921394728,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.227e+22,\n                        \"delegator-address\": \"one19hjspe6czvrpjwagf48yg6f85jdyym9vaeftg3\",\n                        \"reward\": 22433175040897444126,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.4409852124e+22,\n                        \"delegator-address\": \"one15n3hvvk4huwpp2zxtcvj3jtl76vxlpkjfhr4f5\",\n                        \"reward\": 263825641701851991014,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.267e+21,\n                        \"delegator-address\": \"one16wtdjr8nxrm0z548hg4yffqkmyw9av76e9fej0\",\n                        \"reward\": 6409744810266610911,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.636975748e+21,\n                        \"delegator-address\": \"one1fqcktwuvxcf807cwa86d6hfjvwyrj6tscayfk4\",\n                        \"reward\": 4100629425166723876,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+22,\n                        \"delegator-address\": \"one1r0tp6l9g2s4m5np99ec0ugu0kvqc58nhq2mega\",\n                        \"reward\": 95839427306722036926,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2652093865e+23,\n                        \"delegator-address\": \"one1j0nmr445gf35lskevtac7khtudt5vah27af2c9\",\n                        \"reward\": 352507208060718385330,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.331159009e+21,\n                        \"delegator-address\": \"one1kt957tv5v6h3ez45zpvwyyu59c2ej9dx0285qw\",\n                        \"reward\": 40874818104290599362,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05125609e+22,\n                        \"delegator-address\": \"one1jcmkvsp9evsh5whc6ads9v7edlz4wt8dj4t94p\",\n                        \"reward\": 36317515328007158765,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one1qy9mum6mtp5j5u0y3ekaqn8quahvsezavxwu32\",\n                        \"reward\": 40684074353041619598,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.024195e+24,\n                        \"delegator-address\": \"one180mfv4dneefp9g74duxhspjvkmcjffstd0sj6q\",\n                        \"reward\": 2.124449460250148823727e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.02738891e+22,\n                        \"delegator-address\": \"one1jqyqzpzn254es340qw87egtdh9v9mk3nxnt983\",\n                        \"reward\": 615472284722184915625,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.005e+21,\n                        \"delegator-address\": \"one1ggkud93905xkvgkquykrrn44ftzav7ztmq2geq\",\n                        \"reward\": 7705489955460610588,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.890934868e+24,\n                        \"delegator-address\": \"one1drvtd8ry50teatkmucae2tajg7ngjr7cdk02ul\",\n                        \"reward\": 5.688266669196189717718e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgsdhg36jdsst6hpagxxum3ncmgax5amqawptv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.03359779e+23,\n                        \"delegator-address\": \"one14vu3pkw43u759zfanx6p93qm2mm9847r8kqv5m\",\n                        \"reward\": 244554181263427909303,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yy96kgumhfw6tjwdkxtspju4qf0sc9ay4tf50s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one17gpf07jvactrjk6p6l67au55ap5nd3sknh8l63\",\n                        \"reward\": 33712307751355595281,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.283376e+24,\n                        \"delegator-address\": \"one150gdz40c4sxyfzgk8zsdgq2wj6282e9slqxap5\",\n                        \"reward\": 1.194395339655910672004e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+23,\n                        \"delegator-address\": \"one1983tu4snhurnned0n25jn55s4v7rmkknvqfu8g\",\n                        \"reward\": 396987484046382070888,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0016883e+22,\n                        \"delegator-address\": \"one1ww5utn593pfzzxxtvv2v75xvpjty3flynrerwa\",\n                        \"reward\": 34551655968390081870,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.04401e+23,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 2057319556572468978,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mhkkmleul6fnf3ys77perp85whyw30m8dkanq4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4065674199e+22,\n                        \"delegator-address\": \"one1fn8hktfm3xhknn9y9ptw0wj9evcn0xzmr5cuws\",\n                        \"reward\": 116675747877306212320,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.43712e+23,\n                        \"delegator-address\": \"one16n9hxeww8hefagsu9anaej3cn5ggt6uu8s9xqu\",\n                        \"reward\": 41560505433496063855,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.758468405085e+24,\n                        \"delegator-address\": \"one1lsjmmrfte3cnteuh5377n964mrgl5tcfjgha63\",\n                        \"reward\": 836362430162940224005,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uclaccq744v8j9xzqhdwxncx0paduaw5ymgpz9\",\n                        \"reward\": 78103705435257050,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.96387e+24,\n                        \"delegator-address\": \"one1xtttzprrpvgeuwjsvkcyz00lftpy63kjk4yd82\",\n                        \"reward\": 1.1137311703452472969439e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.2e+22,\n                        \"delegator-address\": \"one1h3c297r5erstzj2tdqcp6qnr2vtrtxwnx9g3kp\",\n                        \"reward\": 108215595837980478226,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14q7wnmtx05acwacn0kakr866qupvhzgw20459s\",\n                        \"reward\": 7422727178851068557,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.495042129e+21,\n                        \"delegator-address\": \"one1q3v0wr00vtzaz8r2zm8cw9a46urr6g2v4vljuy\",\n                        \"reward\": 787436626413961963,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7844836615e+22,\n                        \"delegator-address\": \"one198323cmhlxeeadj9auhpdmc4vcn8c2mv3e4eg2\",\n                        \"reward\": 90521181081351776511,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.18803e+23,\n                        \"delegator-address\": \"one10dlpldqlpf27vdlcafrfj4augx47lmjms7ev70\",\n                        \"reward\": 744944748552281833136,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.10757393551e+23,\n                        \"delegator-address\": \"one1xven3mqyznvta70g4nvum0pk3pmrnyzghf72vz\",\n                        \"reward\": 5.320734304840832722854e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.39e+23,\n                        \"delegator-address\": \"one1qgkqpscscfp7frvq6enexlekj6tz4u6r66phy6\",\n                        \"reward\": 114880051778728090506,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1khhv78nax8qgyygutvxmfawz3t4taztqv4mrdm\",\n                        \"reward\": 12291035780119870,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 336251908171895126387,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1yg5cuu5m8l92gsrkxm753vxe74qax3u2m620s5\",\n                        \"reward\": 16994188180908839816,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mv7g0rj2dqfnw9jgqqxa8aqea9g8dw4kay77gc\",\n                        \"reward\": 681927822960697617,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.02e+23,\n                        \"delegator-address\": \"one1d2nafxk24ufu2rw3q96am8juun9jjct346rq2v\",\n                        \"reward\": 5.146318154046322021909e+21,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5e+23,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12yctampe4hqeug668v48kd2tvm85j0u0lk9lh9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+21,\n                        \"delegator-address\": \"one12zl2qe4d0hfha6npd4yfqz4pl2tfnm8vxdx2lw\",\n                        \"reward\": 9016090556808420839,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1019e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 113409629140405819110,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.9355e+22,\n                        \"delegator-address\": \"one1tzjapdswlu93wr0mjul2vggs8x5mqqeelk2pt7\",\n                        \"reward\": 23370826806157268648,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.8876540491e+22,\n                        \"delegator-address\": \"one1vywd62menh2c2ec5ygl3sklaa00u4edqy9e55x\",\n                        \"reward\": 338981011669516350971,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 20563775195452615197,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.700199795e+22,\n                        \"delegator-address\": \"one1lpy9wdzcvyek6g629zzv728lnpmxqzqyxhvpl6\",\n                        \"reward\": 4146523606695471075,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.51090769986e+23,\n                        \"delegator-address\": \"one1yn2xlw8t5ck0zazfyf7jj2s4ynz3n3wqa538sq\",\n                        \"reward\": 1.657161401880786272732e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.5181021029e+22,\n                        \"delegator-address\": \"one1hwhv93pg3rvyjkugql408ta9rs2x5llyg4mja7\",\n                        \"reward\": 84161815255856858078,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6935454274468117159,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.49889063746722e+24,\n                        \"delegator-address\": \"one1sffdq79x3rsj3r52wmrwehltr7n6qr0w658m0a\",\n                        \"reward\": 2.815640771582758438634e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one17yxvhqkgcq7l6jdass56ndky38me2jntzgd8wk\",\n                        \"reward\": 5121416899006171582,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                        \"reward\": 62661371257889718255,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.72e+21,\n                        \"delegator-address\": \"one19day69t6zzqrk3yr5086v9892c9ajvkw84fegv\",\n                        \"reward\": 8746741833559341415,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 25232990481617966508,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6e+22,\n                        \"delegator-address\": \"one1z9uyar8g43em3ejdm779qpy5sc2uaxcfayvr7m\",\n                        \"reward\": 275990890337235382526,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1jnhe7t700jh7kvladwaug4uajwrhszweenfczq\",\n                        \"reward\": 313306856289447741679,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.502410756e+21,\n                        \"delegator-address\": \"one1255krzxrjvkqdd05jmykehrn7qn8f5av8wgaut\",\n                        \"reward\": 41647992850029203726,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8105e+23,\n                        \"delegator-address\": \"one1zr3y8tr2l5djdff5wjvtf0ec6j2shsp6rp5j80\",\n                        \"reward\": 291645479137796157466,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.173678e+24,\n                        \"delegator-address\": \"one1c6m2w8t0p3de3cjleu2t2duvspas6366jtf8da\",\n                        \"reward\": 7.354427289521726667463e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.2e+23,\n                        \"delegator-address\": \"one1wvaxshh8c7kxda02c5pszvme564274x3uaywek\",\n                        \"reward\": 307679592020559193250,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.17e+22,\n                        \"delegator-address\": \"one1wx7e8m39hls5m9vcdygkr00gu74trys5de5npt\",\n                        \"reward\": 172228697410319570497,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.7367e+22,\n                        \"delegator-address\": \"one14ew2n5677rufu6e8n32j8pmvkgxt7gug3zajgy\",\n                        \"reward\": 98079638353550157939,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.36e+22,\n                        \"delegator-address\": \"one107ljq48fq6jha5w88jaj365lkgq2u9v3hughrz\",\n                        \"reward\": 147880836168619127688,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zf9gchjhtjnk95h6z7cf0duu76wllfmn44mr8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3703122475e+22,\n                        \"delegator-address\": \"one1rjyg5f8cq2utrawfe2hyck96ac7z67j4efgswm\",\n                        \"reward\": 143746986975422360037,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ep8zv2rmwk7e6r5hg6aac7egxy3nx8tcs405q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1fnrlvje767q02th6xgln763xvplw5pswwkj77m\",\n                        \"reward\": 626613712578895232873,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.6e+22,\n                        \"delegator-address\": \"one1elgrh05nuesu9chyjlev8rlfexfsq4a87xtp2r\",\n                        \"reward\": 11917085796436803160,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d27l9g8gu0eywu5djnrckj56j4c3mpy0jktcq5\",\n                        \"reward\": 63748158365478709531,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1geg6nmczn4wvgywxfz74e77uw9evtpzt5hx9x9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+23,\n                        \"delegator-address\": \"one1jk5uzutcyn2zyrp7natx68hz7p22gpytjk2n8v\",\n                        \"reward\": 689275083836784974112,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6xz73724nja8cn2c2d2gun2n5nenyr7da8r64\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.215e+22,\n                        \"delegator-address\": \"one1ya3tc2a92rdx80rr2wzh224wva0h7ud4mg44ye\",\n                        \"reward\": 76133566078335476193,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.49916e+23,\n                        \"delegator-address\": \"one15lud93j8p5q0q0ylk9m00x07w60luwsqhyc6sc\",\n                        \"reward\": 189014645797575172728,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wkz7xxgekjktysv3qnklfsh50x52k5g0gcymks\",\n                        \"reward\": 348413271990572510,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0041929e+25,\n                        \"delegator-address\": \"one1hqzrmytdwszq36k3r2qjz35stqtgsnpfnnrj3t\",\n                        \"reward\": 2.0793092750652584863287e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.3014e+22,\n                        \"delegator-address\": \"one10n69q6nxy87ug3h79xtc39z0rua5d3405z4jvf\",\n                        \"reward\": 177369168890315668647,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lkdw6ascfx4kp7k0qmc8gnkt4d0k3z476c7kya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00005e+23,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 626645043264523989314,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1setvzlsw2ea5ncgwnj4j0grlfrk38y3pgzv6fh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.16529e+23,\n                        \"delegator-address\": \"one1l4rd6clwq6434kgc59xmygktlj2m8257plgtzk\",\n                        \"reward\": 152583442440697179888,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 18641514863052030807,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9e+22,\n                        \"delegator-address\": \"one1nrdllzasmpe4yapkw336aa5dakfn387sgks8v3\",\n                        \"reward\": 19201830975172445648,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.422e+24,\n                        \"delegator-address\": \"one1cl46vhd99u6rhtyuqac823a0cp3ggv293yd0kj\",\n                        \"reward\": 8.910446992871891159014e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.486e+21,\n                        \"delegator-address\": \"one1ywc9hx6fuq5phjx8gshlshn9vx6h46utu7mm7z\",\n                        \"reward\": 53174439649445206541,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5314189913e+23,\n                        \"delegator-address\": \"one1386y40w9z7aln97q3m6jqkshhzmc6xlsztw022\",\n                        \"reward\": 845046592330018462661,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1mw5je4ha8cgtstn378f6g4zqpkcng3rwfpukdv\",\n                        \"reward\": 93992056886834551199,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.7104585e+21,\n                        \"delegator-address\": \"one1awk88qhn4wk2mj6pwkqd4utlqjcl8sqnsu4szf\",\n                        \"reward\": 13928974637365075697,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pzgdvkce57c323l55l8nwkr6acrswtezlpwsgs\",\n                        \"reward\": 282138627287262020,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 241571511128499952131,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.97e+23,\n                        \"delegator-address\": \"one1muus26kz85zfn8lavcgxlt2n9zcxeza3d9tl4m\",\n                        \"reward\": 1.234429013780423815677e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.16000174219e+23,\n                        \"delegator-address\": \"one1f89ukcyjg6787xp8a2ehcwgyw66ud5at5chryz\",\n                        \"reward\": 2.513423496830127272804e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.7031614698e+22,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 44866275410900018468,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.9999e+22,\n                        \"delegator-address\": \"one10ayjz83f0lrawxtpcryc4xrpjhtr4a8p9aure0\",\n                        \"reward\": 452279646700637979403,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 56535662533361630963,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.837200467544e+24,\n                        \"delegator-address\": \"one1wma490dp0qd5f085er2d0yj6apgajajv5j4xme\",\n                        \"reward\": 1.288280370153472654983e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one1ps4gky30d2y60q59ydu72l7dtch6zvvtmu6x0z\",\n                        \"reward\": 5824716874861359680,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xrctvk782mc4gx49nxl69789mu3qluj7zhtzs\",\n                        \"reward\": 2110857347843522766,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.66e+22,\n                        \"delegator-address\": \"one13j9jlkf9mtzg0n7ddh2hcrdgmgzayzsaqse42n\",\n                        \"reward\": 93849199805380062897,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 7359002015351784214,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.97285133333333334e+22,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 9309545207609401980,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.076e+23,\n                        \"delegator-address\": \"one105nyzvqzrxlfa3h67najs8yr3q0vjmrpwh7d0c\",\n                        \"reward\": 77611097269383498952,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0797282776e+22,\n                        \"delegator-address\": \"one1fxtypxnzz0vll0vtpea2m8h9utx2vpqjjsmp3n\",\n                        \"reward\": 45032043855783729747,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+21,\n                        \"delegator-address\": \"one18cj3m04q7zwk27v2erw3ss5dakyh6xzc0kl8pn\",\n                        \"reward\": 688998425455181845,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one1mrwqtg50qjgq8npv5w9tgfv4gm5lc6vd92s76f\",\n                        \"reward\": 50882096280024914694,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.8623e+22,\n                        \"delegator-address\": \"one1w6eu2vs4tdcj6358jjz7x7rs6zvx2vuqmpxdkx\",\n                        \"reward\": 49865486662422280206,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8153743862e+22,\n                        \"delegator-address\": \"one1y7xuplxq9ls9n0fh9rq8pehhmu24lz3e3x349v\",\n                        \"reward\": 159169056203272908229,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.4476285045e+22,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 20341602398275090923,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.418099997e+21,\n                        \"delegator-address\": \"one1te2tfurcvk678g9j5u920l72jdz58fr0lrkpsv\",\n                        \"reward\": 4864430103957360576,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.32879e+23,\n                        \"delegator-address\": \"one1dg9fn7ggg3l3467cxzhcd5gx3tcy63xvn29299\",\n                        \"reward\": 1.881953480844281450186e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one19jvw9uruqem0hehduv95km63947p4cvxfgnsg0\",\n                        \"reward\": 7818757353122716420,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.64e+21,\n                        \"delegator-address\": \"one1jay0mcp3fuktvzacnld07q3kmjklwttf38dz7f\",\n                        \"reward\": 31886113668815924605,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+21,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 2198368635399333710,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+23,\n                        \"delegator-address\": \"one109ga287k9pkqg3en8jg2hw2r89tny663uw5vhm\",\n                        \"reward\": 2.770247464134709582628e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5e+22,\n                        \"delegator-address\": \"one1l6v5djd7ss7axpfxgr9rq2v2chp3trnvhzl7aq\",\n                        \"reward\": 8528942874051432166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.02e+23,\n                        \"delegator-address\": \"one1g4upvdt9xcnkc9mr5t0nf6pvm8ez7vu5gqk0c3\",\n                        \"reward\": 1.424326805652320081869e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.21993e+23,\n                        \"delegator-address\": \"one1unmae47j2w3q9vxqs8fjpa33u8eu8w5dfsuh5w\",\n                        \"reward\": 1.191025412710243791169e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1107e+22,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 56190241205705952017,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14jpg7vpzg486swvw73mqmtm4zqlx46unwfhnsa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1n55puv7gmz74wjnskgvqeqc7tswjh04sjdyjxl\",\n                        \"reward\": 252949676806095679617,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.65053191e+22,\n                        \"delegator-address\": \"one106sl5gesjwu0lk64jpntytkxaxtmlrxxufggw5\",\n                        \"reward\": 336449979444624988316,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1h2kljdu542mrg6zjv33w9nfwt3lpxnzhn6dscz\",\n                        \"reward\": 5058993536122056332,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.45e+22,\n                        \"delegator-address\": \"one16xmxu2t0c38gc9l9gc2dzkp7a2nh79eucuxv4g\",\n                        \"reward\": 275715147718643994347,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0131e+22,\n                        \"delegator-address\": \"one1keasa5jnnjwp7u46dxz375xmdy8xqdunw8uu3e\",\n                        \"reward\": 16230032993144452323,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.82688166151e+23,\n                        \"delegator-address\": \"one18l5xg4wgtl8aqjnmjx3tv5v3fp6c3x89tez3ly\",\n                        \"reward\": 577158954615299457614,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15y6dh6h4xm6lz9h3pf75v5jeekfwswkftr5jj8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0499e+22,\n                        \"delegator-address\": \"one1vwfplktczvnlt8zht3n35v4za7wez35krwzekg\",\n                        \"reward\": 181314723762163428869,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1cn93rndj40fsdstmzs4sv62ufgch2g52y8lkrw\",\n                        \"reward\": 9168554217767394303,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10z6ssedgr9a46ycyy24m4czy35qmjthcxft8z9\",\n                        \"reward\": 468161202696926615,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rr5n6qvjxlyhrhnkzxtjslzffrp4trl3wtsuh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.299e+21,\n                        \"delegator-address\": \"one1q59h6fq37hstnyuxqm9tytmh5mexky0wawzrjq\",\n                        \"reward\": 13112761180060807479,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17m5k33ewe0gv0p295zh3vy95yqdsrzu3s6duxn\",\n                        \"reward\": 589780902106407702,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.27419266e+23,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 190133034398254552148,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1n8cqsgwg5lz3c5cmrs7n0peulc43z9mpxh0x8g\",\n                        \"reward\": 73211825490731264313,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.49e+21,\n                        \"delegator-address\": \"one1rngtzh253g3k62v3pg08u2zj3gvf2xd3v9a7en\",\n                        \"reward\": 20101807691353092288,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.644e+23,\n                        \"delegator-address\": \"one19dreh280f8vlt4e3p7pp599hrm2d2e2akfwd6j\",\n                        \"reward\": 2.526828565924219932816e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.00649958514e+23,\n                        \"delegator-address\": \"one1gukj9y85emgwnttjvk2svar2986a4wh7wjwzev\",\n                        \"reward\": 898313336152878898641,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2026862834e+21,\n                        \"delegator-address\": \"one1s5sqy8ufg5pegfzv6j4a5n879udsaasu2u5hdp\",\n                        \"reward\": 6474702823729503701,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.487518e+24,\n                        \"delegator-address\": \"one1963vpvuj9x4l5defkk4dkx8de7lutnvdr8hvdz\",\n                        \"reward\": 865325269474561798463,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one127ytfzx3vqnknwj5fjq9z8ds0xtgsuhutwd4kl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1085e+22,\n                        \"delegator-address\": \"one10gs0ej9wqegnds3skh9kz5unugls5tles8pggx\",\n                        \"reward\": 81962379516988814940,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.130215522e+22,\n                        \"delegator-address\": \"one1s7uz9fdnsedu5ljxf7nw5tewg52s2d9z34clnm\",\n                        \"reward\": 63377686795012046069,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8475e+22,\n                        \"delegator-address\": \"one1svw5m8w4mztmp37l7p72tkglqvfvmfqluddjcx\",\n                        \"reward\": 406492013600474618,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vh2pxsm52m73k9vedcppmx9jgrdawevkfge9er\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2318e+24,\n                        \"delegator-address\": \"one1xsf70cu7uuu5k6f0kpxp9at8r4dmg0sttzx40t\",\n                        \"reward\": 8.549567219903866477186e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+22,\n                        \"delegator-address\": \"one1ewhakak5wfhjlk5aulejksp5eapqpg2pm27qvt\",\n                        \"reward\": 112729855631618207075,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 39262921989132848625,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one168ut7jyqxcyda7sm58naqemqv8vrh83tpt9lue\",\n                        \"reward\": 86040709367767320,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1epmjydqkspt3kev3ezefy4m88nm2dfkjanjtkr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 38872364010903004061,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1gg8p84y09svpxa5xlqc36v4epwyjv8mk0cmrj5\",\n                        \"reward\": 3887236401090425987,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 8527824176129092176,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4e+21,\n                        \"delegator-address\": \"one15whh9d8nl74d46fc9jfmfszxw8e00s4ctcrvr2\",\n                        \"reward\": 5442130961526427387,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2000899e+22,\n                        \"delegator-address\": \"one1m8364hzzjdxa77zcydy2wqkwnz24dks5k40jds\",\n                        \"reward\": 124395059460413879608,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.54024e+22,\n                        \"delegator-address\": \"one10dc350yl5g9sqlfkphcstq4rhdzmhnyxa5mn0e\",\n                        \"reward\": 98304872388945479064,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.80007959e+21,\n                        \"delegator-address\": \"one1jfswdzr7cruvpyp2t2ed5znun6uvku7ynqzq22\",\n                        \"reward\": 13483079942316269671,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1qka5ahyct3k4hc6gqujedyj9xq3d68nj0ws4st\",\n                        \"reward\": 1.110579995757524673511e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1qj0f0dwg4jr8lmguxafsuu4pejzcmvz0e277ld\",\n                        \"reward\": 16719034031994960128,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.52e+21,\n                        \"delegator-address\": \"one1vcqez6s3crzmj07kfdy2jz0kd3j0s7sk5qrdye\",\n                        \"reward\": 204959223469700614,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19kytp473xph76ga5fflu4trl86sr25m7ez9ney\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1e+21,\n                        \"delegator-address\": \"one1s8gms2ryuzghc3v0zqcasyfx4j2pkmtuskwgn3\",\n                        \"reward\": 5195087026608231905,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.189e+21,\n                        \"delegator-address\": \"one1lrequvd0kzut0mwgfpgv9yqs8973rmhnshx5kp\",\n                        \"reward\": 25981059862439188685,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.99999995e+22,\n                        \"delegator-address\": \"one17yk3vcj47jdm04p3uq2yqpm4sp57vjv9utlh8t\",\n                        \"reward\": 100314202520066901871,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+21,\n                        \"delegator-address\": \"one18prt8uam55vsy23j403zykx3uvxs6f7xrs4g56\",\n                        \"reward\": 16384653351355079292,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.01000086637e+23,\n                        \"delegator-address\": \"one1t0vj7g9gp4tuyhgrgsgxufhfeqwlexdury0ukf\",\n                        \"reward\": 435485036457329970661,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fj9k0j3ext5a63l6msqr0rnq5nlgnrl2hwj2sd\",\n                        \"reward\": 5947208005916850206,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one12xzsm3w5u7h5fj87s6075gq22hvcfldc7esx35\",\n                        \"reward\": 99206064129020849878,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1fdmh4z4swl9cgmz7p3spulchm4sw69wvuquavd\",\n                        \"reward\": 3343806806399104378,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.09136000759e+23,\n                        \"delegator-address\": \"one1jkwq6lgeywm3m8qucz0ghd784ute3qkmrqxexa\",\n                        \"reward\": 699310382801012298011,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.64419989e+22,\n                        \"delegator-address\": \"one1t29eh6egv870g44dwzx76d7awrwc04u4acmlsd\",\n                        \"reward\": 212060187361913000745,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.03031e+23,\n                        \"delegator-address\": \"one16cje0z4pswgck88eprtrd6v04jdy7n6vpcue3x\",\n                        \"reward\": 282856832423900563032,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r0uhfdksp5xwvsg9yzgugz3n2ucc4re4kj8s8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.000104e+24,\n                        \"delegator-address\": \"one1khau8lyy2hqesvve6wp33ful5d3yysuemy97w6\",\n                        \"reward\": 497023843604747442812,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.77461199e+22,\n                        \"delegator-address\": \"one1rcsp47uf3vv3v5pxg5qtv0wr0kederjw9c0mc6\",\n                        \"reward\": 76172992467973325378,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one10296elh4n0ul6g0kr9nkggzjd80wrus4ef8wwt\",\n                        \"reward\": 27453565667022778582,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.134811041991e+23,\n                        \"delegator-address\": \"one1535lajr63fwupkgdq59zv0mj9ukuty682pyh28\",\n                        \"reward\": 860617407950074814733,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0633683634e+21,\n                        \"delegator-address\": \"one1prc5xaxhrwhzr6t9npwntw5jvrtjun25hkezgg\",\n                        \"reward\": 8410038452688043984,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.24358322645e+23,\n                        \"delegator-address\": \"one130d8hfdqls45qv5937pszl7pla3094tkgluhe2\",\n                        \"reward\": 449406989926828604907,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.685e+22,\n                        \"delegator-address\": \"one16jahlu6ejrtjtc8lsqkjwstg56dw64k9a0ft4e\",\n                        \"reward\": 60949183543808513995,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jzzz2qrwn62vd8p2v4ylkteyey6k9d9mnm3jpt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.064e+21,\n                        \"delegator-address\": \"one19x784ltvty9yyau22y4xlc5yuq3lqdu0flew7a\",\n                        \"reward\": 1439294522206465950,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.02427e+23,\n                        \"delegator-address\": \"one168d7cx7r3f3el9ytytmz04vpmnlv7a7mpyqsf4\",\n                        \"reward\": 221774028777829540136,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.012097e+24,\n                        \"delegator-address\": \"one12t4hfhh0am0jzt834yjsrg6s7m6x40whmh7rf4\",\n                        \"reward\": 893545216921281388390,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.20190254412e+23,\n                        \"delegator-address\": \"one12qtcvz4yd5qa7dfdmqnxmpl75ktgnhs6jp6e72\",\n                        \"reward\": 647147462268940483189,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1kh5pn90gclnqwm2hwe7d44nzywes4r7rxjmuah\",\n                        \"reward\": 18881148038372148465,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one134ujy0hvfu4eksfprrpawyn6szkmg74cdd6zwf\",\n                        \"reward\": 23817102097651276572,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.39e+22,\n                        \"delegator-address\": \"one1vuw02s26lxyy8w9k3y9crfsxkq50hfs045s9yk\",\n                        \"reward\": 36615445739983206371,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.38431027449e+23,\n                        \"delegator-address\": \"one1n3dvsup94cxne2zeq7tymk8pheevq2weq7m4qe\",\n                        \"reward\": 1.382325178460111316918e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cakutxh9emrat3v0gxs3ueuz3pfxtrfhmjk7k6\",\n                        \"reward\": 83390670679433136236,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0559412898e+22,\n                        \"delegator-address\": \"one1v8ejrha2wa0frec26dzl7l7k7fdzndq83c89ym\",\n                        \"reward\": 112257114946608044,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.84180683e+21,\n                        \"delegator-address\": \"one1ft9sknz8cuq5sc4p9nhvuyysu2ejhsznjqntv2\",\n                        \"reward\": 14813819254774440802,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.10286474575e+23,\n                        \"delegator-address\": \"one14srkg3xaxywh99lstzxwq8a4lc6hr5hljudqta\",\n                        \"reward\": 321008907950815714927,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.568e+21,\n                        \"delegator-address\": \"one1crnkhaczv6mu98dwpl7r85u2sqt23e5cuyfl3k\",\n                        \"reward\": 3395019644465072131,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+23,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 496448957565838142384,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one106uev9a2m4rca57h4wn9z4ec63ada7yv45cwr2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0500312216631e+24,\n                        \"delegator-address\": \"one1jnm0mmlw2rur0hjvq3nl4uw3v7r9fd3gjvzcna\",\n                        \"reward\": 1.846838674984996390254e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.266651e+24,\n                        \"delegator-address\": \"one14x79dn9qunnputr3n0z3594ve7lla77vc3wjrr\",\n                        \"reward\": 628734952048081125075,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.91369e+23,\n                        \"delegator-address\": \"one19h6dx8xfq0xx2ck5nlfpt04m8auhgd8zj4hz54\",\n                        \"reward\": 620424924177942536453,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3834e+22,\n                        \"delegator-address\": \"one1xlakwxsagmctysj7p6wrxjv0f3eq7gm9w4myf5\",\n                        \"reward\": 34248139382373885068,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1nrd84ldj3ldtdwz5ktrcqvvekuavpeypwz3lpe\",\n                        \"reward\": 39631711005338988772,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.965905998e+23,\n                        \"delegator-address\": \"one1yzw0t2u950des2ht08n0secrpaqpmvg7pkmqtj\",\n                        \"reward\": 217172363855183297021,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5e+21,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1.30008072e+23,\n                        \"delegator-address\": \"one1efg6c7xt9n2e9tmak9qmusee6xlxle6yc76ef2\",\n                        \"reward\": 206097693514612823626,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.654883e+24,\n                        \"delegator-address\": \"one1ls6n0ellmennql73l5hxnvmqw2n5pkrs54qzzd\",\n                        \"reward\": 2.623433792145944522815e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.115e+24,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 625354428659769444906,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+21,\n                        \"delegator-address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n                        \"reward\": 4597278476619340161,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one10zsqhjwjwq0wuda38f4y3d7wdymfkcrfkmezqz\",\n                        \"reward\": 1585268440213603818,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+25,\n                        \"delegator-address\": \"one1z62wq6ucttx2ksj5v3s0vk0hup7xg0yez8qkyw\",\n                        \"reward\": 887316209682260854578,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.681330282678e+24,\n                        \"delegator-address\": \"one1pe9xaa4m7jglfvggepl6h2y5yw96cgez4af0fu\",\n                        \"reward\": 5.835896715131914244702e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xcy78f2hs6wmxxtgm7u5gwtc73m22mm72yj0c0\",\n                        \"reward\": 20339565569626833034,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 5.0752011411e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1a869ad50qkw0446x3q3mhzx7fm0azx5fvcu7wk\",\n                        \"reward\": 31705368804271229511,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dlj0svnswquuzv76nsyxm3ydzkk45hnwjyxk4q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1ekh606mdw0wnwxt59semqa79fg0ajgghqqf9tc\",\n                        \"reward\": 2377902660320287794,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.089e+21,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 1726357331392690750,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.25e+21,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 3566853990480454304,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.500001e+23,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 13891798985980647230,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.95e+21,\n                        \"delegator-address\": \"one13eec5h4k6xw5h8up4duqzpvsdtcrypnekqjnhy\",\n                        \"reward\": 4050936230108552853,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.3479e+22,\n                        \"delegator-address\": \"one1c4jxn9c2d9uwqhnq0fqu03zj2v3qads8sk94mz\",\n                        \"reward\": 27393558896817530121,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one15ad34lhszdnz7n8uvnmuzd3w0ay3vy8fdt3343\",\n                        \"reward\": 83451286689155644448,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one1ngc5dszhtu803cs84yxqnh48j3d9qh3p6zq4y2\",\n                        \"reward\": 8204427807814690302,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.03e+22,\n                        \"delegator-address\": \"one1hdf03n7fdms7rakkekse7atftnl42vm299pcap\",\n                        \"reward\": 10563200802561581052,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.5e+21,\n                        \"delegator-address\": \"one1k3sudc2y02wsphf5drmmycuej22wdhtsgraqwf\",\n                        \"reward\": 4614990641895937712,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1dqlljeense9cz595wnsvmkyp47dur62803x7cq\",\n                        \"reward\": 1025553475976830865,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0203211881e+23,\n                        \"delegator-address\": \"one186xg2tu7p8jt8mp074s32wys4snxzmt5e2mxy3\",\n                        \"reward\": 104639394106878341599,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.053582102e+23,\n                        \"delegator-address\": \"one1chyd2jpup03tyrap39xq6y8dd6xjgp6k64q050\",\n                        \"reward\": 210605826290994321501,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.431139991e+23,\n                        \"delegator-address\": \"one18cmmgwrwhnc4pr4jxft36yed8mgg6rz7sc074x\",\n                        \"reward\": 146771059237952556421,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.94604998975e+23,\n                        \"delegator-address\": \"one1djx6qlsxn06le0wp8rhvg6tck5n9fcv8flje8n\",\n                        \"reward\": 241788588889762865456,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.90098018e+23,\n                        \"delegator-address\": \"one1t593eqff9h2cjxz2k7d6q4cg4zmmgtm9veeyd9\",\n                        \"reward\": 707732421124633545050,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+22,\n                        \"delegator-address\": \"one1lepx3x4qesefqs3cttj6t26hf4mgquzgajngxx\",\n                        \"reward\": 50252120322865482304,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1679e+23,\n                        \"delegator-address\": \"one1jgz245wkzq7j4nynkhjdjyachr05rd99fmcd38\",\n                        \"reward\": 222329738057021015064,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4461486977e+22,\n                        \"delegator-address\": \"one1qup2xu4zj2m7aeld7z7cjkcw8fpspfaprs4tc4\",\n                        \"reward\": 17969196509329832681,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ecuwsacaje5lv5fcslk8v73khhg866dymg02y4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3991e+22,\n                        \"delegator-address\": \"one12ylp56enepn6rz0z5zyvysxcjnz3tmeucvr72f\",\n                        \"reward\": 20713335480026777546,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8e+22,\n                        \"delegator-address\": \"one107sauhfhgt8s6lcjw8r6uml9rzylf6s2n6w2v6\",\n                        \"reward\": 8475370840410117559,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1el98y4fmcfnm9ax623rswxpdntdl6wkc7n2zd7\",\n                        \"reward\": 47085393557833943969,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one12kkwq0tg6u67p8kp9hgsx5yqlatzmm3vwlfvvs\",\n                        \"reward\": 47085393557833943969,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.378e+23,\n                        \"delegator-address\": \"one1tk90nrhjww9dw46vvm6gh3rljrweckcxf76jre\",\n                        \"reward\": 64883672322695245411,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.687909306e+23,\n                        \"delegator-address\": \"one15mdeas4ays7ypumqkncpey3qy45uaplzsstsxc\",\n                        \"reward\": 144939251550489862757,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.3e+22,\n                        \"delegator-address\": \"one1l94nhxwupg537n0de7fspyz0rmw78zq6ady6rr\",\n                        \"reward\": 248062981409539542,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+22,\n                        \"delegator-address\": \"one1kf33vtpamnr5xraq8lf88rnkeagf72payxmulf\",\n                        \"reward\": 32959775490483696220,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1455e+22,\n                        \"delegator-address\": \"one1ju2tg5mcqqz2n2tjq3l8ngfdcu47gg8mwxlus8\",\n                        \"reward\": 24227789255183495462,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.39239e+23,\n                        \"delegator-address\": \"one1jkr4mqpee3gqeykql0cchmul4e2k5x35h9kutm\",\n                        \"reward\": 206817411809494193621,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+22,\n                        \"delegator-address\": \"one14xvqeuw9v6mqarw5uathtys6wc3r228sdyp7hg\",\n                        \"reward\": 4458403854031166844,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1vtulqgfjsjm2nqkdzs5u0g00jvh2tyhql5g07x\",\n                        \"reward\": 47085393557833943969,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.02202e+23,\n                        \"delegator-address\": \"one15m5p65tgwlkc3r0xqvy3fdpf7ae7hfkma5647h\",\n                        \"reward\": 1036820366143411213,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4031266666e+22,\n                        \"delegator-address\": \"one18yr4x62lnecw7avdk89lk4l02dwuzv6p7qpr7a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3164e+22,\n                        \"delegator-address\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.50852237e+22,\n                        \"delegator-address\": \"one14vefngmq30m5958mgn0afd7qpv6cmzuqhvmss0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.63349e+21,\n                        \"delegator-address\": \"one1hrkv9lgr33x928ccmvrf6j2arusquuvegmp247\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.30180883851e+23,\n                        \"delegator-address\": \"one1cum28uhfq77u58dq9kjkhnpuwx4regxw9p8met\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.233451177e+21,\n                        \"delegator-address\": \"one1yq8ucqv4cm9w5ctly3ug77nzw0ph304e5p5j3m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.00082e+23,\n                        \"delegator-address\": \"one1qn9jwx2mrj7jx3tzls7ejhtc2n8k9r408u53gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1t3833th0g8s0cgp0lvsx2x3t2szeavuryy63pd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.3653667e+22,\n                        \"delegator-address\": \"one1wd5my7w0zuwxj3yhj5jda8tqxns2ghj07qm5up\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1999e+22,\n                        \"delegator-address\": \"one1dnmp4t7hfr9jwqmlkky2hr2vwyu8gs0sr5ctkn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.9e+21,\n                        \"delegator-address\": \"one1axx0khq6c7sf8y5qed70yengk0elmqezgs7sjd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1h06ppdth964lm5229jxhzysv89q4yduk87j0kq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.52755e+23,\n                        \"delegator-address\": \"one1qkf8ayatnc64qx3x5lrlpvne858lfza7zqzssl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.06599e+23,\n                        \"delegator-address\": \"one1l977xd75dxatsuskg3p4wyk6w3fu4s2hvl8jk0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1mp9hnvwm5tc7hjuwge6n4llarmxclget7r93rz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.7608540887846e+24,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0862e+22,\n                        \"delegator-address\": \"one1jap4ll2acdlf4sy8cfvyal49c47ggahlsw87a2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"A few nodes in the cloud, running just by themselves. You are welcome to add some funds, we'll validate them for you! :-)\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Solitaire\",\n                \"rate\": \"0.034000000000000000\",\n                \"security-contact\": \"solitaire.validator@gmail.com\",\n                \"update-height\": 3635980,\n                \"website\": \"https://sites.google.com/view/solitaire-validator\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.115969153382637769\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121546023296117467\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123885758917940452\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125204994983275794\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.122251317365722998\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121916761623594104\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121067239721527628\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.120473540854620297\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122731028819507776\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119374747900951386\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116907835901325547\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117483725958900688\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116696426916380594\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119265340980978875\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119812929912047497\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120625227556590965\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117395974809284869\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118764607903709821\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120290877447651959\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118358096586817122\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118746681366813287\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.116742570494185861\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.117620852706190978\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116477479455038072\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.116048160861278959\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116573880344687180\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116728840184483830\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116687023724744378\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114638491246793360\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115920178936630873\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115461323807247170\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115969153382637769\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                \"bls-public-keys\": [\n                    \"cc5f9acbe434aacf87b6059571452c558eb8519f1788dbefc8c589c75580a304fe7e4546166cf7712da37d1aa284d215\"\n                ],\n                \"creation-height\": 3361827,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhayt3kvplktjnnqfgte3fvr4mqcpc2gmdlzpe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Damos la bienvenida a todos los que quieren participar en la comunidad de Harmony o delegar en nuestro nodo. Hablamos tu idioma\",\n                \"identity\": \"Harmony Spanish Community Node\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.250000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Harmony Spanish Community Node\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"hola@harmony.barcelona\",\n                \"update-height\": 3361827,\n                \"website\": \"https://harmony.barcelona\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.671925942245144461\",\n                \"blocks\": {\n                    \"signed\": 62233,\n                    \"to-sign\": 63176\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"1.129565938298883483\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.332341019243020796\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.671925942245144461\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 302,\n                            \"to-sign\": 303\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23091,\n                            \"to-sign\": 23568\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 24999,\n                            \"to-sign\": 25309\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13841,\n                            \"to-sign\": 13996\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.3679533325814249195116e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1h2vnc52gdwqa5w6z4gwtrdgsgq8f5fj7aev3f2\",\n                \"bls-public-keys\": [\n                    \"8545a95789a936cdf34851295be8611ee1fbdde8c75b99f70e80b29f704d7a92325c6cc89f7ad2ed9951064622693911\"\n                ],\n                \"creation-height\": 3361912,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h2vnc52gdwqa5w6z4gwtrdgsgq8f5fj7aev3f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15lud93j8p5q0q0ylk9m00x07w60luwsqhyc6sc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lcw9gkm4xuwrpqyjfqgz4zf5fduxrrqexnp4hf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n24e0eqg0ajwf2ehtvy0fw02ruvu4955ks27xg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z250uy4fvkzwxvkjz30s26rwgwwezvdtvpwygf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ausldvnqxmarafdcswmp5drtj85ak35qw4xud5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcd73jcajz7wsaquzxvcjv94fere2xtqyyjz2q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zxucth84p9u4a9zk8f3t0rwvvgrsqgjk4z5f6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wsy0f9p245mugshnsud7se805htq3sram33ek0\",\n                        \"reward\": 9564658459055155691,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 513288730696258967,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fnyhmt5998e78nx57leg4an5req5htaux0fq26\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Channing\",\n                \"identity\": \"Coff33Blak\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Coff33Blak\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Channing\",\n                \"update-height\": 3361912,\n                \"website\": \"channing@harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.094113661435761291\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.095995000945759880\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.096103307573805157\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.096331235132334017\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.094173197571490969\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.092541036729549477\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.094007720977542528\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.093004769460516371\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.094376233564913250\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.092470510280440782\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.093310500199284182\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.090704188715726819\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.091643833581653096\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.093770330914942897\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.092908889603975985\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.089866105693253858\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.094170576619279724\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.093085435669123235\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.092775089852625123\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.093758934159445365\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.093593872441621511\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.093502869512426431\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.096083032163845572\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.092545326870948833\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.090855595735841363\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.092845267475022661\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.093256803455886998\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.091053003633819064\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.092002599150827903\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.091942817071954395\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.093080620276287231\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.094113661435761291\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.11e+24,\n            \"validator\": {\n                \"address\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n                \"bls-public-keys\": [\n                    \"9b1dfc1d29baa3cbb274bf27e15cc24f89f2a0eb873f77066083d137aa404b3fc56eb50f786c02a978b21b35152abb10\"\n                ],\n                \"creation-height\": 3361982,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+24,\n                        \"delegator-address\": \"one1p5kuwu2un8sy9e9357khct545zwuems88z482c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Nodeasy.com, 助你进入Staking时代!\",\n                \"identity\": \"AB006A79DBD8FC57\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Nodeasy\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Nodeasy.com\",\n                \"update-height\": 3387499,\n                \"website\": \"https://www.nodeasy.com/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"1.376657007627364201\",\n                \"blocks\": {\n                    \"signed\": 40315,\n                    \"to-sign\": 40835\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.903516395599900943\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.376657007627364201\",\n                        \"epoch\": 187\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1534,\n                            \"to-sign\": 1544\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25139,\n                            \"to-sign\": 25345\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13642,\n                            \"to-sign\": 13946\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.5095871547130267376252e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one18je40sxd9s6awtgx4akhuda8d75km3663eep37\",\n                \"bls-public-keys\": [\n                    \"6de45f627c2416213cf28848b75ce4cbdba8fb0b33c4e85a47252d0cbebdb6a35f8bad164b6016ea64abafbad481908a\"\n                ],\n                \"creation-height\": 3362251,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18je40sxd9s6awtgx4akhuda8d75km3663eep37\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xyamghtfkrar30wexpszautjkz3d6c0y5k5py3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12kvy5medu2rj4qt3ltmjj0lyndrhm87eq2lkcf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kjncp7r9er5cuvnxxwuw9xquwsgr4q6uqggr97\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"https://t.me/harmonymason\",\n                \"identity\": \"Mason\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.150000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"CryptoMason\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"@valentincrypt\",\n                \"update-height\": 3391583,\n                \"website\": \"https://t.me/harmonymason\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.334409708153497518\",\n                \"blocks\": {\n                    \"signed\": 48282,\n                    \"to-sign\": 65536\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.686278696556447373\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.334409708153497518\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 6\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33496,\n                            \"to-sign\": 49148\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 14786,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.7130779268170232432824e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1h2t0k0g9fjqh249w5pddv9wuudm8d9cj4nzyw4\",\n                \"bls-public-keys\": [\n                    \"b0e780ca7a889f8c8c29debf16f02f48370ec17161e70787b7e7ba621fedd7bd674c309d72cece5692072d39a8ab2490\"\n                ],\n                \"creation-height\": 3362324,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h2t0k0g9fjqh249w5pddv9wuudm8d9cj4nzyw4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lncya8swehqpd3vl8xadwcaye7hh80px40rrs0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Original FN Operator: high uptime, 5% max fee\",\n                \"identity\": \"[IDENTITY]\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Vnode Foundational Node-4.95% FEE\",\n                \"rate\": \"0.049500000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3473811,\n                \"website\": \"https://staking.harmony.one/validators/one1h2t0k0g9fjqh249w5pddv9wuudm8d9cj4nzyw4\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.119790293887450307\",\n                \"blocks\": {\n                    \"signed\": 80404,\n                    \"to-sign\": 83143\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.123054457397013508\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122097749433570177\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125786376234972248\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.120153386399518917\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120910807098744279\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.120271665610063400\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.119705465555771675\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119148703794494417\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117911421154819479\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117847421765515417\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.116141093147140173\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.118994723099063842\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.122179064506259469\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121237155483075387\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.118161646132782593\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119960502357609433\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119880066737321372\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121211104287563676\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120961191093565382\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.117297637130468758\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.118964947818568212\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120066579404901439\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.119844842090201758\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.120474452769950601\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117743959300142976\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120779536342344851\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118338747507929529\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117112260782483821\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118389647897154319\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119983859791324258\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119790293887450307\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 303,\n                            \"to-sign\": 303\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23638,\n                            \"to-sign\": 23695\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 31079,\n                            \"to-sign\": 31233\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25384,\n                            \"to-sign\": 27912\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.6583701659565096319084e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 5.009361991e+22,\n            \"validator\": {\n                \"address\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                \"bls-public-keys\": [\n                    \"02760cadc6ef3d3c1f8b66adbe182ebc252b451178efc168e856870311c8a7005c7060d28ea72c6c7adfab606989f413\"\n                ],\n                \"creation-height\": 3362826,\n                \"delegations\": [\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.009361991e+22,\n                        \"delegator-address\": \"one1sh5sw3907e92l2q0hj0ggg0qr6nwtk9hrn854q\",\n                        \"reward\": 359441123886439931024,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"StakeServe.com\",\n                \"identity\": \"StakeServe\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.500000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 3e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"StakeServe\",\n                \"rate\": \"0.075000000000000000\",\n                \"security-contact\": \"contact@stakeserve.com\",\n                \"update-height\": 3655895,\n                \"website\": \"stakeserve.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+21,\n            \"validator\": {\n                \"address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n                \"bls-public-keys\": [\n                    \"0af5465ec9943035adf21475a2f00d50f651c6d6cf274e623c60ffed72ca42aa1430e5bcbef8b5ee9b01238154f52a84\"\n                ],\n                \"creation-height\": 3362836,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1920ku8c9uerwyavk9hnxgpdshak7w7dn9gm632\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m36wepgrykuwuufhe0s450rnzkp5jmkde4udqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"A Turkish guy providing you validation services on Harmony blockchain!\",\n                \"identity\": \"TurkishGuyInDE-NodeONE\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"TurkishGuyInDE\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"info@turkishguyin.de\",\n                \"update-height\": 3374755,\n                \"website\": \"TurkishGuyIn.de\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1k2e5jgkgd4d5sg3ma362hmj77pt8tqvpjug4tk\",\n                \"bls-public-keys\": [\n                    \"e07739fcefd80e178bd293b3dba994a70526d6f75aef93f76fa65cd512b956fad02bfae13dc02c660dbcb8d8ae45ac08\"\n                ],\n                \"creation-height\": 3362930,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1k2e5jgkgd4d5sg3ma362hmj77pt8tqvpjug4tk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Validators of today, Auditors of tomorrow\",\n                \"identity\": \"5736C325251A8046\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.300000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+29,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"AUDIT.one\",\n                \"rate\": \"0.150000000000000000\",\n                \"security-contact\": \"security@audit.one\",\n                \"update-height\": 3362930,\n                \"website\": \"https://audit.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 8404000000000000,\n            \"validator\": {\n                \"address\": \"one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu\",\n                \"bls-public-keys\": [\n                    \"5694348d4dd619648baf2829d0baff765563061080861ee8db43a4e316dc574fbbc5778f53c5762c5f6caa90701a1611\"\n                ],\n                \"creation-height\": 3363533,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fllqjv6hq8vfvz5kwyhaknw0f2emvfqmq0s2tu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8404000000000000,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e2whthzfvwq86cyevg3xzgj6ztps58c5vx6hna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12kvy5medu2rj4qt3ltmjj0lyndrhm87eq2lkcf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Beauty is in the eye of the beholder\",\n                \"identity\": \"elderorb\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Node of the beholder\",\n                \"rate\": \"0.009900000000000000\",\n                \"security-contact\": \"elderorb@gmail.com\",\n                \"update-height\": 3363533,\n                \"website\": \"https://en.wikipedia.org/wiki/Beholder_(Dungeons_%26_Dragons)\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1s34smmhr9acsnk57ammyf06m3au2pqaewxm5t4\",\n                \"bls-public-keys\": [\n                    \"96011943c19cd210a5d0e7113f1113c05c5b53dac200ef1b6ccb1431e248337a0ed2af25b22c99021f5842b28f03a88c\",\n                    \"8da986af386c1f7df29680ea1f86521dbd056c7013d317c8d20e2a8643fa4d211afb0a260a675baea4393d1fecadfc00\"\n                ],\n                \"creation-height\": 3363734,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s34smmhr9acsnk57ammyf06m3au2pqaewxm5t4\",\n                        \"reward\": 0,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2.7307e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"https://t.me/harmonyoneblockbot\",\n                \"identity\": \"zergtengudev\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"ZergValidator\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"zerg\",\n                \"update-height\": 3669350,\n                \"website\": \"t.me/zergtengudev\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 114677,\n                    \"current-epoch-signing-percentage\": \"0.998024437791547727\",\n                    \"current-epoch-to-sign\": 114904\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"41953628332866999999999999.999999999999999994\",\n            \"lifetime\": {\n                \"apr\": \"0.117517781735523301\",\n                \"blocks\": {\n                    \"signed\": 2037437,\n                    \"to-sign\": 2058218\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121789678478108058\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122554815430486931\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124103284837214706\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125367990908674903\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.122663722031242974\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.128687819998813152\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121464957822009752\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.120062426342966621\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.120060199620204743\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117453521709939446\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.120856084690427186\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115319714693337923\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119523795768862052\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120674431557697708\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.121731769351842195\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.115575031667996231\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118403683809533415\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119801971839093667\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120146152344716446\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.119828420425680104\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119181492973318125\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.118890157722897864\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.111700564829738146\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118629988896320141\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117413407522045495\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118626939554195696\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118498081049498324\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117104335734867641\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118582555100787218\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117517196559034650\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117517781735523301\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 131335,\n                            \"to-sign\": 135208\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 137894,\n                            \"to-sign\": 138472\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 135608,\n                            \"to-sign\": 136396\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 134565,\n                            \"to-sign\": 135082\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 171255,\n                            \"to-sign\": 171882\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 115926,\n                            \"to-sign\": 116870\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 135447,\n                            \"to-sign\": 136090\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 149809,\n                            \"to-sign\": 150836\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 150143,\n                            \"to-sign\": 151180\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 144181,\n                            \"to-sign\": 150822\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 134880,\n                            \"to-sign\": 135328\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 136656,\n                            \"to-sign\": 137316\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 147405,\n                            \"to-sign\": 149530\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16358,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16381,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16374,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16363,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15796,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 7.40769152991595839112036e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.637410435161917122495e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"064a5352bc38accc647cdd10e6b6f091458d2c85a996a27c9fb9dd075920412e07c1db3c6989043d27aebbd86e1d9f98\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006598203077576936\",\n                            \"overall-percent\": \"0.002111424984824620\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.63714969406954926923e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4542fda471c1c8fe5b7770a78dd96b927bb3a96c227c31aee258f41a38210c7e459e564c01aaa112616f0bead2288e88\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006598203077576936\",\n                            \"overall-percent\": \"0.002111424984824620\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.637528199157151163175e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0d5b80dc2ce0212ff0a843b007e7e9a8845ea0ca6702a87a1492e63c99088ef60f08d95f4290cae6ba31e08aee355684\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006598203077576936\",\n                            \"overall-percent\": \"0.002111424984824620\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.600341693505718763181e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4a017b97577cc281915d97de38d741281c6beda42bf24f9d44bc100e86c7fc749951f87f61ba74a53dcd04409a7f1215\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006259630228553863\",\n                            \"overall-percent\": \"0.002003081673137236\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.599978502817160229542e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f0c2ed95d5f41301a689dcf6a3271bdfbeba45e235e71056c1dc67e0b91eafab85a09333441afdeb3b2acc5a5f984391\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006259630228553863\",\n                            \"overall-percent\": \"0.002003081673137236\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.600212488758608779601e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"be78abe18e82e488afdb76ad93ab5bf7879af26d7100fbcf863a4932da0fa7d635fb92c6e64c6bd6f0516f1d80e72491\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006259630228553863\",\n                            \"overall-percent\": \"0.002003081673137236\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.599997929646885981312e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e6ee4dd21bbafeccfd88c393577d15a2c4dc52f2b78e3582038f40b49c2bac84da4c6959f8a0628372a0dcacd592cc85\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"group-percent\": \"0.006259630228553863\",\n                            \"overall-percent\": \"0.002003081673137236\",\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.1770579178053e+25,\n            \"validator\": {\n                \"address\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                \"bls-public-keys\": [\n                    \"064a5352bc38accc647cdd10e6b6f091458d2c85a996a27c9fb9dd075920412e07c1db3c6989043d27aebbd86e1d9f98\",\n                    \"4a017b97577cc281915d97de38d741281c6beda42bf24f9d44bc100e86c7fc749951f87f61ba74a53dcd04409a7f1215\",\n                    \"be78abe18e82e488afdb76ad93ab5bf7879af26d7100fbcf863a4932da0fa7d635fb92c6e64c6bd6f0516f1d80e72491\",\n                    \"e6ee4dd21bbafeccfd88c393577d15a2c4dc52f2b78e3582038f40b49c2bac84da4c6959f8a0628372a0dcacd592cc85\",\n                    \"f0c2ed95d5f41301a689dcf6a3271bdfbeba45e235e71056c1dc67e0b91eafab85a09333441afdeb3b2acc5a5f984391\",\n                    \"0d5b80dc2ce0212ff0a843b007e7e9a8845ea0ca6702a87a1492e63c99088ef60f08d95f4290cae6ba31e08aee355684\",\n                    \"4542fda471c1c8fe5b7770a78dd96b927bb3a96c227c31aee258f41a38210c7e459e564c01aaa112616f0bead2288e88\",\n                    \"801731e785cb32a3431c4263b38144b68710157cb6b71b27f8fb572ad8b2d66836466229a9fa71feed504671e9387594\"\n                ],\n                \"creation-height\": 3363793,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                        \"reward\": 3.156251937885698218034e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1887e+23,\n                        \"delegator-address\": \"one15j7475xvnvm3eccr82mmjjsnnpnqwv9hha4n32\",\n                        \"reward\": 163172077704044700063,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.516709178053e+24,\n                        \"delegator-address\": \"one164g0gx65emt0a6lwpjjnqfd4d3jcpvv5ae4h0t\",\n                        \"reward\": 5.511769168034473911228e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t9nch5t4hu4qng3jwe6pq5jsd5zwz0wnwfq4sg\",\n                        \"reward\": 9.708654531606883654261e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1s9urj5w46gy3sxq0ezpyxmh0qr8cjawe97dvvu\",\n                        \"reward\": 20077542953735587248,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s87yrnavq8d4d23grdh8md7qr7jctmexpmqy27\",\n                        \"reward\": 230023249708528265,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+22,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 34294595959947289339,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1e+22,\n                        \"delegator-address\": \"one1vgll7h2a4xj0rxm4zjr5wuq9qlcf67n8aulm6s\",\n                        \"reward\": 54256172840686549147,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1692564671819689424,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.0065233791895038437835e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 9248142221419087384,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6406044871766724537,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"We are an experienced blockchain team based in San Francisco and Nepal. We guarantee you to get maximum returns and have high uptime for the node.\",\n                \"identity\": \"iBrizLovesHarmony\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.800000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"iBriz-Validator\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"harmony@ibriz.ai\",\n                \"update-height\": 3400823,\n                \"website\": \"https://ibriz.ai\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.492039577863181746\",\n                \"blocks\": {\n                    \"signed\": 80999,\n                    \"to-sign\": 81920\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"1.133315876406568270\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.735011690268374527\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.492039577863181746\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 6,\n                            \"to-sign\": 6\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48979,\n                            \"to-sign\": 49148\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15721,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16293,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.5722511614235130772896e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1fzh923dkauvyye7w68nc38j2dw54gldu5mheaz\",\n                \"bls-public-keys\": [\n                    \"bbe138408ff5551e7fa64bfc065dd841614459d0373af72d8686a2ad78f0278ebd639d20c64f3efbc746cba16d85df10\"\n                ],\n                \"creation-height\": 3364004,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fzh923dkauvyye7w68nc38j2dw54gldu5mheaz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 906342279568875198061,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7lxuqkg3sedxz9j6a4v2axxmrdhhr45d2ckv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one150gdz40c4sxyfzgk8zsdgq2wj6282e9slqxap5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8dt4hz56jzksjaw7vayf8d4n5k5tj5heagnpw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19u0l4vvzhqntlyefjgtxlcmnml99et7jk5nm86\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ly97t6qs4waps55m588wf228mvz3ka08avhs8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv3e6dycywtc6u3xz9kxvg87mnwgykjc5cuga0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sdp4lyruf8ruk2x3xyyremdaq2ck0xxw9n53x5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s4rypls26kmzg03dxkklmpwhmv8u4nlh6vqkdv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14uzsrvucmxx5wwkx46r9a6mpqgtjlrchelw5pp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zgmd5s6fyv9rm2vuf3augqf3ucnp9a2j0h09u3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zzhwus03x3j3fgtust0v07k7rf583rrp84zdet\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"If you are staking on this validator, sorry for not being able to have enough stake to get elected. Feel free to undelegate and delegate to another one. However, if you would like a validator with the same care, please check out my public validator at the website\",\n                \"identity\": \"Harmony-FN-CL1\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.050000000000000000\",\n                \"max-total-delegation\": 5e+25,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Chickens DECOMISSIONED Validator - Stake on my public validator! - 🐤\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"cmliu@ucsd.edu\",\n                \"update-height\": 3440371,\n                \"website\": \"https://staking.harmony.one/validators/one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.636257838530536779\",\n                \"blocks\": {\n                    \"signed\": 10416,\n                    \"to-sign\": 16384\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.636257838530536779\",\n                        \"epoch\": 186\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 10414,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 3.3514209453304658288e+21\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1xsf70cu7uuu5k6f0kpxp9at8r4dmg0sttzx40t\",\n                \"bls-public-keys\": [\n                    \"58d7eec172ab9e9d994dd8ebd9c473252ed7ba6a2bc9cbae7f835a3dac74363a72e94e83d5ae176b164c8d2e5be74984\"\n                ],\n                \"creation-height\": 3364063,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xsf70cu7uuu5k6f0kpxp9at8r4dmg0sttzx40t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"mc1\",\n                \"identity\": \"mourgos\",\n                \"last-epoch-in-committee\": 186,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+23,\n                \"name\": \"mourgos\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"Dog\",\n                \"update-height\": 3434000,\n                \"website\": \"515.ventures\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.646535551840267008\",\n                \"blocks\": {\n                    \"signed\": 62313,\n                    \"to-sign\": 63176\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.563727492136581963\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.894455878998170050\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.646535551840267008\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 303,\n                            \"to-sign\": 303\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23370,\n                            \"to-sign\": 23568\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25191,\n                            \"to-sign\": 25309\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13449,\n                            \"to-sign\": 13996\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.8382761655495599817248e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 4.43459537311e+22,\n            \"validator\": {\n                \"address\": \"one1cfpfse8amkdalscvywfl28cd9u7zq8c0k0gg8y\",\n                \"bls-public-keys\": [\n                    \"0eba555e9afc890a3966ed54a08a084d785805450b1364791ce6c3ac19a9abec2077672f414767b9826f50a9d9ab9699\"\n                ],\n                \"creation-height\": 3364146,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cfpfse8amkdalscvywfl28cd9u7zq8c0k0gg8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6cfkvgjyxw7l89urs25rqe57mkx304und53de\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.43459537311e+22,\n                        \"delegator-address\": \"one12kvy5medu2rj4qt3ltmjj0lyndrhm87eq2lkcf\",\n                        \"reward\": 39888769534064118288,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uevnvfzez0kk0vkc2p45208neatzsmuwn6n0zl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Sharing is Caring\",\n                \"identity\": \"None\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Harmony Hodlings\",\n                \"rate\": \"0.030000000000000000\",\n                \"security-contact\": \"None\",\n                \"update-height\": 3364146,\n                \"website\": \"https://harmony.one/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1df49l0afjgltkaheussp8e7y708ac9zuyfpfle\",\n                \"bls-public-keys\": [\n                    \"193286206a62931b59483b2fe86992ebdaaecaecdb4b5372bab3c0f869a8bd16ea0378b113de4b1fd97a6082b7e65498\"\n                ],\n                \"creation-height\": 3364156,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1df49l0afjgltkaheussp8e7y708ac9zuyfpfle\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xsf70cu7uuu5k6f0kpxp9at8r4dmg0sttzx40t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"mc2\",\n                \"identity\": \"Orestis\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 9e+22,\n                \"name\": \"orestis\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Dog\",\n                \"update-height\": 3376619,\n                \"website\": \"515.ventures\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.100114048613068666\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.102208572157150796\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.102466793335083785\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.102642669402713367\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.100590456317670620\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.100135521667635073\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.100207728573517805\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.099185323559129722\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.100773317734173568\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.098969185513354377\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.100045444167855869\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.096884860915070407\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.099270704057746646\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.099954822984929286\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.099302020916305880\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.100729486909652804\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.100647317403278667\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.099837071331686695\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.099167166532363069\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.100154277973798861\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.099906772103058716\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.100070432820538085\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.102319571075517554\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.098638262487503669\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.100007862261486355\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.098933594564917399\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.099365154167536863\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.097075156246991107\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.098075031703233841\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.097798717627078212\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.099257060593925322\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.100114048613068666\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n                \"bls-public-keys\": [\n                    \"eb37778ff56f77889fba694d66dccfa722f9801b49b9a33cda83367aa04e85aa89c8503f3270022f67ec765ebb552816\"\n                ],\n                \"creation-height\": 3364199,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xc3fye0n84z55wwhfa2czgcv546e7mygwfpa2y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Ubik Capital is providing highly resilient and secure staking service for different blockchain projects\",\n                \"identity\": \"UbikCapital\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 1e+29,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"UbikCapital\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"support@ubik.capital\",\n                \"update-height\": 3364199,\n                \"website\": \"ubik.capital\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1c8e309nvdydaa737n92k73cxrv5xhnha69h8gx\",\n                \"bls-public-keys\": [\n                    \"9b45759a815a6c87a4caaa39db768c922a24b99bf6ef6240f39e114ed376d1213bc03d3b9d555dc2ffbc298059d22008\"\n                ],\n                \"creation-height\": 3364403,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c8e309nvdydaa737n92k73cxrv5xhnha69h8gx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ddvyyt49cxcm3g75s6ydhxqmhdasvlzayxqwz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"TH Node\",\n                \"identity\": \"Addict\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"UMARU\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3364403,\n                \"website\": \"https://t.me/bitcoinaddictclub\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.338259159448956980\",\n                \"blocks\": {\n                    \"signed\": 122246,\n                    \"to-sign\": 122609\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.800116349022580229\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.202182386592177557\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.720091888835289610\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.349300612008104872\",\n                        \"epoch\": 189\n                    },\n                    {\n                        \"apr\": \"0.344961488313027327\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.338259159448956980\",\n                        \"epoch\": 191\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 203,\n                            \"to-sign\": 204\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20766,\n                            \"to-sign\": 20786\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20412,\n                            \"to-sign\": 20422\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18277,\n                            \"to-sign\": 18324\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23456,\n                            \"to-sign\": 23568\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25259,\n                            \"to-sign\": 25309\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13873,\n                            \"to-sign\": 13996\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 4.8210779206510654459712e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.80217294712e+23,\n            \"validator\": {\n                \"address\": \"one16yvnyrac2nfaapm8tyraesa7khtg3d9tr786pv\",\n                \"bls-public-keys\": [\n                    \"7d0edf66aed2a8a8e6f8a7d3454e3bcd5fd27bbb860d7aace6c81668298ca61805311f807fa3288020fdd30797ae5611\"\n                ],\n                \"creation-height\": 3364460,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16yvnyrac2nfaapm8tyraesa7khtg3d9tr786pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n24e0eqg0ajwf2ehtvy0fw02ruvu4955ks27xg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qtx776yews0t80k9ppe6d2qd76clnpp2tjs8wt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1umwmahvkvf6pwpmw9wcsq02gjz0v0k4sss0c3r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.80217294712e+23,\n                        \"delegator-address\": \"one1qqszruyzk5szh0yqs3fln35rcsgdgzknrgxreh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g4u3hy78vux7mtqerfqechx7q7seyg6avtnq4h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vyppmyy5menfw6zagwj620y4cka8yn8yw2txj9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mwhe2kjsxs3fvr8th39nhkgllcap4cplr5pdx3\",\n                        \"reward\": 26029118095156620245,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one122uq95m7t63rcvy6jd8jwgf96x8hfv63q9m9hh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18dw5zqecfju8d5t4cart7d6ap65hg9877cxxw3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dnh7wjg8mkvru3fantlqcazsrw3ma6ucdkqvps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jfft9hs3ed4uu38yag0y2wzp70vmpcga9xzdq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1axv7pm9duu4qygc0krwr0z4p4dzedlh5qlpqrs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1daf4g7ulu9hd6tr8wa78sz6pdj5ef59lv7vj72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q3v0wr00vtzaz8r2zm8cw9a46urr6g2v4vljuy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ew2n5677rufu6e8n32j8pmvkgxt7gug3zajgy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jm9erjgeudx44jxvpyr09u2wevfrjykuvch5kf\",\n                        \"reward\": 360211873456431868,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Blockchain validator in PoS consensus.\",\n                \"identity\": \"C95430604CCE11FA\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Validator.Center\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"validatorcenter\",\n                \"update-height\": 3407822,\n                \"website\": \"https://validator.center\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 15089,\n                    \"current-epoch-signing-percentage\": \"1.000000000000000000\",\n                    \"current-epoch-to-sign\": 15089\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"24791155580011500000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.116663160661318866\",\n                \"blocks\": {\n                    \"signed\": 904227,\n                    \"to-sign\": 969180\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121624871368072958\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121823371951681743\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.122030146679627166\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125590877886110968\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.119074603217238332\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124513352451031911\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123216987772452951\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119227359954801995\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116153427014727559\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117367580133539080\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.113794465081261108\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115883712741344595\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118345307873325386\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.117635805238532309\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120100317112470521\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118691467911676540\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120628666039991223\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119834338336493766\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121064257041288347\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120765209088235968\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120950251871366093\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.123065337434884881\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116341478777908757\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117835463823040269\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116287139016755262\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117256592392179607\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117160689475780491\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117096013902012413\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117752501300554395\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117424233371035055\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.116663160661318866\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 17272,\n                            \"to-sign\": 17336\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18251,\n                            \"to-sign\": 18258\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35205,\n                            \"to-sign\": 35210\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34664,\n                            \"to-sign\": 34691\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 52960,\n                            \"to-sign\": 52987\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33716,\n                            \"to-sign\": 33926\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34913,\n                            \"to-sign\": 34923\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33973,\n                            \"to-sign\": 33982\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34094,\n                            \"to-sign\": 34149\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34027,\n                            \"to-sign\": 34039\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34673,\n                            \"to-sign\": 34675\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35388,\n                            \"to-sign\": 35476\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 21553,\n                            \"to-sign\": 21604\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 93820,\n                            \"to-sign\": 94178\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 60910,\n                            \"to-sign\": 61067\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 56286,\n                            \"to-sign\": 56437\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 127720,\n                            \"to-sign\": 128259\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 42928,\n                            \"to-sign\": 48402\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 86785,\n                            \"to-sign\": 144492\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 3.13362389992778737511348e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.649620585617074300646e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1e09f6ede6b7cca5d2c53a2b6de6ea70a8ca1b4d2fbbeb8758c599afd74cfa8964842de85b7b783b7cc86fb6ccb11312\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"group-percent\": \"0.006453049979440027\",\n                            \"overall-percent\": \"0.002064975993420809\",\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.64915855200067812916e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"42fa89ee6e6296133ac05bbfd8c95976540ef369683864f0aaa3c7f0f5390046d077a3f4156e51654ba8c14234654c12\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"group-percent\": \"0.006453049979440027\",\n                            \"overall-percent\": \"0.002064975993420809\",\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.649498851067690997742e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3db51e1ab47e33b2eea18327a19ab3ce4e0496636d88c16d08b2e78f6e4d161a5a75e117fd696353ef4be9f67f0e0a96\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"group-percent\": \"0.006453049979440027\",\n                            \"overall-percent\": \"0.002064975993420809\",\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.648071867191411275179e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4e0f36a24c1df21024587a4ece5b1c57ed20d636f9da0146f875260205bf20eb324763cbda6d1aa70d46baf5d4886a96\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"group-percent\": \"0.006453049979440027\",\n                            \"overall-percent\": \"0.002064975993420809\",\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.2084823e+25,\n            \"validator\": {\n                \"address\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                \"bls-public-keys\": [\n                    \"1e09f6ede6b7cca5d2c53a2b6de6ea70a8ca1b4d2fbbeb8758c599afd74cfa8964842de85b7b783b7cc86fb6ccb11312\"\n                ],\n                \"creation-height\": 3364486,\n                \"delegations\": [\n                    {\n                        \"amount\": 5.062347e+24,\n                        \"delegator-address\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                        \"reward\": 2.682058975733237951166e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16m9v6zqmr2f73prx9vjnvzfq55ft9hu273ggaj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tflnzm7m4gvz7ktfatth9fteuduux4v9dd69r3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one18dv2q69299r8uhlt9fu3kuaw527206ruwsqlxr\",\n                        \"reward\": 2736481991593896817,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 621553778694217203,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.9005e+23,\n                        \"delegator-address\": \"one12saruhnv9f63dqhuadjq3vhqm3nwyw2ac40uyz\",\n                        \"reward\": 276871435097091321979,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dz6454s6cy9uruy2pndg7ztj8cjwdfhu0efmew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.623e+22,\n                        \"delegator-address\": \"one1y2fser5hnp4jjsx05p8jteywrg355etrqztdhh\",\n                        \"reward\": 12319094118459724417,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.154e+22,\n                        \"delegator-address\": \"one1pguavz8dfngxljfj83nlyzd3nyqjrgz5mckyd8\",\n                        \"reward\": 10118398866711211897,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.023e+22,\n                        \"delegator-address\": \"one1vklnap0x0p78j6250u4a50ejtyhlzcmv5tyenq\",\n                        \"reward\": 9504276129660673044,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.412e+22,\n                        \"delegator-address\": \"one199l790dlwvkesd6ve4luke9996gmamznt26n0f\",\n                        \"reward\": 16005729340245206464,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0985e+22,\n                        \"delegator-address\": \"one1x45ddvdp97zst9z6wtvjakuju3f3hu8a46rju6\",\n                        \"reward\": 9845381852881938829,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.356e+22,\n                        \"delegator-address\": \"one1uuh3pg50ynspntw5mpzsw7wg0ccruzsshumxn3\",\n                        \"reward\": 11054930463621992869,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5985e+22,\n                        \"delegator-address\": \"one1wue9zu2y0wg249g8erkpkrjqk5zhu7sd3s62u8\",\n                        \"reward\": 16887266857337349041,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1005e+22,\n                        \"delegator-address\": \"one1xu34r3fk4qrh3edx3cxtnc67dn6sf0jefuvsst\",\n                        \"reward\": 14552135086965786318,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.2885e+22,\n                        \"delegator-address\": \"one19sky9qmd502gr0cvqr3xggp0a2rxs9tcw4wxkt\",\n                        \"reward\": 15437554295248553946,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1884e+22,\n                        \"delegator-address\": \"one1v8fny0p2munnheffq2v2j3xwmd845jqngzdydx\",\n                        \"reward\": 10274589081573644351,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0544e+22,\n                        \"delegator-address\": \"one1a5ph0zsp0hcng5hkualk7l7fjjcgg2kltuersu\",\n                        \"reward\": 9646724118488779106,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0985e+22,\n                        \"delegator-address\": \"one1mt0gpmr7cwwclh0s04ee86h8xnwyhq8hemv5nf\",\n                        \"reward\": 14551355183792272398,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0265e+22,\n                        \"delegator-address\": \"one17vad4afh4pxrya9hvdqamssf6nn7zp5ukntz22\",\n                        \"reward\": 18911968065489832780,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.012e+22,\n                        \"delegator-address\": \"one18uwy6lhhf4n64u5mhhjvz597a2vu2uv2uancmt\",\n                        \"reward\": 23543832460518390231,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0166e+22,\n                        \"delegator-address\": \"one16zgqx8hvxmdyvm47vq7c09k3e4h9836y5288le\",\n                        \"reward\": 9474830642477640018,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5874e+22,\n                        \"delegator-address\": \"one17tj2jjehdlg8xfgp48xpeyqur2qf6nvs88jvyu\",\n                        \"reward\": 16846248447118333790,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.1595e+22,\n                        \"delegator-address\": \"one1zc4jhrn0864ph923gdtg27uvljyprs6mcnyz9l\",\n                        \"reward\": 14834901416042673892,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.176e+22,\n                        \"delegator-address\": \"one1cr8qrjl6khac9d5auyslvxln864vmqd5xll2zh\",\n                        \"reward\": 19605128570327523020,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.356e+22,\n                        \"delegator-address\": \"one1ncs6wtan7n0fs4dg2ldvywt8926nguwwxxvs6w\",\n                        \"reward\": 11059293483666205453,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0233e+22,\n                        \"delegator-address\": \"one1nt53xanw4aalm72jeak99ypajvhkc3j2qpk980\",\n                        \"reward\": 18882036758727653845,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3165e+22,\n                        \"delegator-address\": \"one1urxe5d9cw2q6zuwq5wlxz53rmw6g8n3xld55fg\",\n                        \"reward\": 10870301743761643786,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2861e+22,\n                        \"delegator-address\": \"one1uammf8cp39hd8edtn5sw6s3yfx7c0a25hn0p2n\",\n                        \"reward\": 10726236905574032117,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.1493e+22,\n                        \"delegator-address\": \"one165ja8ftjlthqcdxr9wevelktv9xe0wtu6srmn7\",\n                        \"reward\": 19465692374011901118,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5136e+22,\n                        \"delegator-address\": \"one19y0zvux7kwt98dey605ndc8dh74vp7hdrehnfw\",\n                        \"reward\": 16505109683415277909,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.383e+22,\n                        \"delegator-address\": \"one1nkgvlnmqyd0cejhfswenz56uzy2t9pp059nlhn\",\n                        \"reward\": 15889528862672825575,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.138615e+24,\n                        \"delegator-address\": \"one1h5mrdlsg4vuvhruuj04nxaxxetm5rk7kqvl7zg\",\n                        \"reward\": 1.006915439909306081855e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.213811e+24,\n                        \"delegator-address\": \"one1wtukty43wext8zyvq0q3l2n33e0antyvmqfn6v\",\n                        \"reward\": 569950072888380200678,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.49243e+23,\n                        \"delegator-address\": \"one19ag5tkh36d5c0metjayes55wk2ze86f0e69y5k\",\n                        \"reward\": 351771337380985467657,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.12921e+23,\n                        \"delegator-address\": \"one1w6k3ff6p3hgmuswcryhqlnvwc7n82waf9jsdpk\",\n                        \"reward\": 240785944554452771261,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.00165e+23,\n                        \"delegator-address\": \"one1wqevs0kcr6zl2hqedxdqx9wvkq9ycnyj29yjed\",\n                        \"reward\": 140881845779038415291,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.19532e+23,\n                        \"delegator-address\": \"one1egz5pp8e5739fdwtev98azz8qf9nyg84mx4suv\",\n                        \"reward\": 103124992572276981311,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.10232e+23,\n                        \"delegator-address\": \"one15md8frh5z3em2waflqpf7sxjvz2tmpn3ywyj8z\",\n                        \"reward\": 51771192636906295857,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0154e+22,\n                        \"delegator-address\": \"one1qtjk0fxzctnugdw50pmkwrpwykrqgw0tj8zpq4\",\n                        \"reward\": 32943962579002597624,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3562e+22,\n                        \"delegator-address\": \"one1kfxfgsadnen9zkk9qkghsz5wmmxqsc8dglyqan\",\n                        \"reward\": 11063141230093289536,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.75e+23,\n                        \"delegator-address\": \"one17ytdqfkpth7mnf56la5n03s0zevwt6l05np8qg\",\n                        \"reward\": 82184513705459002868,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6819620326082660261,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfeudud3aly7p24a9strq5tgh9hrfw9672kxtc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 19130983947727358820,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0118e+23,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 27341915693575731958,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WeAreONE family. Stake your ONE with us\",\n                \"identity\": \"WeAreONE\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"WeAreONE\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"WeAreONE\",\n                \"update-height\": 3364486,\n                \"website\": \"https://harmony.smartstake.io/val/72\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n                \"bls-public-keys\": [\n                    \"34bc81a9924b44618e5227bdd69cbb4d9354c4d0bab1ec8092ddb64ea479b9ed76ddc346abb9480b7feca8a76b418a0f\"\n                ],\n                \"creation-height\": 3364493,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"chip-monkey-on-telegram\",\n                \"identity\": \"SIMnode\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+23,\n                \"name\": \"SIMnode\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"chip\",\n                \"update-height\": 3364493,\n                \"website\": \"https://staking.harmony.one/validators/one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 119365,\n                    \"current-epoch-signing-percentage\": \"0.999505961950696677\",\n                    \"current-epoch-to-sign\": 119424\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"81338258100405499999999999.999999999999999998\",\n            \"lifetime\": {\n                \"apr\": \"0.117433009314050495\",\n                \"blocks\": {\n                    \"signed\": 2297367,\n                    \"to-sign\": 2364693\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121967923391558255\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122212500462157724\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.119390223439768196\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.119988081859215162\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.119362435331242906\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.123752153613978976\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121360562376267815\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119396540498240721\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116922263720833630\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116165018029543782\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.114991428818732529\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116573411994580495\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.117764369555132434\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.118641105112945493\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.118640257195730050\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117808281958047441\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.119639258154419046\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120182408136660529\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120073135278927273\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.119572093933460104\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.118780672533867636\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120899136818173787\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117073279487681370\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117605497225882113\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.115821706805458183\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117845236917914346\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117154221500323676\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.116123861659954297\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.117537327509397752\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.112961722761225770\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117433009314050495\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 138974,\n                            \"to-sign\": 139260\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 145432,\n                            \"to-sign\": 145558\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 158262,\n                            \"to-sign\": 158347\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 155218,\n                            \"to-sign\": 155496\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 176715,\n                            \"to-sign\": 176917\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 118238,\n                            \"to-sign\": 119167\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 151265,\n                            \"to-sign\": 151924\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 151813,\n                            \"to-sign\": 151830\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 153024,\n                            \"to-sign\": 153065\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 152794,\n                            \"to-sign\": 152813\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 172940,\n                            \"to-sign\": 172942\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 195990,\n                            \"to-sign\": 196001\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 209439,\n                            \"to-sign\": 242984\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 40184,\n                            \"to-sign\": 41370\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20157,\n                            \"to-sign\": 20422\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17284,\n                            \"to-sign\": 18021\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 3,\n                            \"to-sign\": 6\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20270,\n                            \"to-sign\": 49146\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 7.46116459993172228962708e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.550909371608194899572e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"887dd858614da4b6f81b3f5039334be0fc7efba7cd2ec3f9f2cc070df734b09b4889092bb0097beafafa581361bbb88d\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006067978377263998\",\n                            \"overall-percent\": \"0.001941753080724479\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.549821358433811628425e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f8229098ef64c6412a05623bc9bbe1a8d5788d992f411378add8201da818b0339b642c06b83494cd804fcafb1d365315\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006067978377263998\",\n                            \"overall-percent\": \"0.001941753080724479\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.550576749394019732153e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a19ebc874d122fcdd3e809f5e2d08317f96093d96ff401e7a7648641e8ea290539095b8963f67792e01766dc0c82c995\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006067978377263998\",\n                            \"overall-percent\": \"0.001941753080724479\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.55104819406668692508e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3aa1b10f749b926ce116ed55fe87e948a45b748b7450427973f936444f504ce3bb69f74cbb1eb5507bb2949adcac1405\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006067978377263998\",\n                            \"overall-percent\": \"0.001941753080724479\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.531126407549754326303e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"75b30e36db669855515207d26c85032b8124e602e230f61af1f83d359652ed2c75fb644ffd5c03414207ef54208acc96\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006049160130843564\",\n                            \"overall-percent\": \"0.001935731241869940\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.532569100988559868982e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d26aba7946b7c6233139c9a3eb59b76f690ae17100b588b7fcf1797b5d6a56194a45d7e1da8452c80b71d454bb7fc906\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006049160130843564\",\n                            \"overall-percent\": \"0.001935731241869940\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.533187237752459357858e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"07f91bb48ee0ea1176a9b81ac05172e283bd2123d31f7e0217da201d6e928b2ebdb0be246dae53ebe4455205b169068a\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006049160130843564\",\n                            \"overall-percent\": \"0.001935731241869940\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.530889458526580621277e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"663d4bc56f2755ca00c8dc7a7802d5913a1b9642b87a34f986e6cd56963c590dbdb4c2fcb1fa0acdc3f0b3f399b04486\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006049160130843564\",\n                            \"overall-percent\": \"0.001935731241869940\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.592548272611792070195e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0a62f4f4e25aad7ac77845b5e5242570637d7918768ffc20b69629e918c1bb154c78c196c563b419dcc8070db187190b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.588232503141548777804e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c87565824a5046abebf7a4f608d1456a75623177e89d6537de8148c6c4d5793d00f234cafc7ffc9a5ba666f7825e0883\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.587489191258077620979e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a12729cb8a958ec2ee376f223b47f04bfe7b002e180a4aecddbdb2023ca3b59ba3bcae1c58fbdab18cf45dae3c1a5697\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.590300785639192586669e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"87724e5c55dc0b0494657d46ce42f934863481aeccb2ee5dff9216b37a0bdf4e92532e20c6b6559f77a4f62a5c4a9797\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.588557135769006765387e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8a38e74bc302f0cd1a200c2f6edc2184c3af577a6f07456f19af063940994d803012da53a399fc15279682e743bf520b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.59397143154391528507e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"43ba875e76d9cc1b40fae255865f426de64a7ece1b4caaa9954747c3c766894de034f372e825cb09313a9ba588b6d68b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"group-percent\": \"0.006267250749379393\",\n                            \"overall-percent\": \"0.002005520239801406\",\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 8.377414e+25,\n            \"validator\": {\n                \"address\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                \"bls-public-keys\": [\n                    \"663d4bc56f2755ca00c8dc7a7802d5913a1b9642b87a34f986e6cd56963c590dbdb4c2fcb1fa0acdc3f0b3f399b04486\",\n                    \"07f91bb48ee0ea1176a9b81ac05172e283bd2123d31f7e0217da201d6e928b2ebdb0be246dae53ebe4455205b169068a\",\n                    \"75b30e36db669855515207d26c85032b8124e602e230f61af1f83d359652ed2c75fb644ffd5c03414207ef54208acc96\",\n                    \"d26aba7946b7c6233139c9a3eb59b76f690ae17100b588b7fcf1797b5d6a56194a45d7e1da8452c80b71d454bb7fc906\",\n                    \"0a62f4f4e25aad7ac77845b5e5242570637d7918768ffc20b69629e918c1bb154c78c196c563b419dcc8070db187190b\",\n                    \"8a38e74bc302f0cd1a200c2f6edc2184c3af577a6f07456f19af063940994d803012da53a399fc15279682e743bf520b\",\n                    \"43ba875e76d9cc1b40fae255865f426de64a7ece1b4caaa9954747c3c766894de034f372e825cb09313a9ba588b6d68b\",\n                    \"c87565824a5046abebf7a4f608d1456a75623177e89d6537de8148c6c4d5793d00f234cafc7ffc9a5ba666f7825e0883\"\n                ],\n                \"creation-height\": 3364622,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.402361e+24,\n                        \"delegator-address\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                        \"reward\": 4.4573057632255166297649e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gyslya05msaj62f5w6r4urd3r8yjx3naxr33ke\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.72537e+23,\n                        \"delegator-address\": \"one1cewcy70uhevgpq0hcgvx4mcy3cpehl39qj0nej\",\n                        \"reward\": 1.242075120702470843136e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.000428e+24,\n                        \"delegator-address\": \"one1yjdswahfmscu08e2cd2s0xq0vmvvh4z4ry4kkw\",\n                        \"reward\": 4.558756162960765527614e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.99999e+23,\n                        \"delegator-address\": \"one1aqwsvn5jjy8xuj65aw83dvrl9ys5eds9afvvhk\",\n                        \"reward\": 4.556337403545693070993e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sczje2umt5lk3udq42m9g95hp5y2jjlj4k26pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1721015532716060144,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.0996181802406873992446e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yy96kgumhfw6tjwdkxtspju4qf0sc9ay4tf50s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.0193e+22,\n                        \"delegator-address\": \"one1mnle2dce6p9jj6vzuma8kz2cv5zmdcxl5dtlph\",\n                        \"reward\": 277284536093120368435,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6478082032574997850,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16295hjtqyr0z22swaqthv7mvmvn2gltnj5gera\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6622e+22,\n                        \"delegator-address\": \"one15gy23g6x8rlnhyzf76e7kzz6ue7a7ejx62t3uf\",\n                        \"reward\": 189350125552846397228,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Validator run by HarmonyNews.one. Now with 100% uptime on 3 instances with backups and 2FA protection. Rest easy knowing you are earning. HarmonyNews.one champions this project any way we can. Support community media and decentralization by delegating with us. Go Harmony!\",\n                \"identity\": \"Community\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HarmonyNews.one ☝️\",\n                \"rate\": \"0.095000000000000000\",\n                \"security-contact\": \"contact\",\n                \"update-height\": 3585145,\n                \"website\": \"HarmonyNews.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.120182810025854738\",\n                \"blocks\": {\n                    \"signed\": 30720,\n                    \"to-sign\": 49152\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122745888993146905\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121604849429157386\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123731433598531499\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.133859690605595157\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.134279268028569346\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.138459378657896296\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122995044138851713\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117456478578868000\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121797863824954432\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118821886938611548\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.126038534876312628\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114659200993894145\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121109603086226514\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.122546395039878201\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.124413950626102722\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.114297184859785596\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118543194685221983\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120234271040060948\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.123054402579125356\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121903555524760492\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.124106803064695808\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121335010061717463\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.123051643185684799\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122692580487744416\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.119148755724404645\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121854514881765729\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.121275151736078184\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.121068542232689455\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122525832911706228\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120969614149164638\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120182810025854738\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16350,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 4\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 14366,\n                            \"to-sign\": 32764\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.1360329897240404648148e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                \"bls-public-keys\": [\n                    \"c84875782fd5dd9bc92a57b7d516992e2c3a6408b3f6dc8c3f5c188ab7dd1878007f18b748cb51894b38ba13f3404090\"\n                ],\n                \"creation-height\": 3364840,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13a8dddzhr9zmtnqw4mk8500ec72fyh8hfawhv2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kung63grzslftjsumaa0kayt5ae43p4x2puvhj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19cuygr776f7j9ep97hjm0np9ay6nus9w5msy0n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hch48y73sra2g0fr8waaglgv2gmr3634s7dh7y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13fnskkve55zhqr3nwrmxp2f8yxyjxagpwhf7xh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"I'm Catana and I'm ONE of Harmony longest running validators. I was there in the day ONE of the mainnet... I was there in the day ONE of the open staking... I will be always here!\",\n                \"identity\": \"Catana\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SoftNode\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Catana\",\n                \"update-height\": 3374672,\n                \"website\": \"softnode.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1w63l464zvpr8r2j3778gluzqyaqte47ylmvse9\",\n                \"bls-public-keys\": [\n                    \"0069bbea7ca14d4ba22fc0fb06a447c0e6c10fb469a9bfc05d05c83b0a71b116f0695a3541c4068eabb574c0d8204197\"\n                ],\n                \"creation-height\": 3365119,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w63l464zvpr8r2j3778gluzqyaqte47ylmvse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1khk3l6vwtghj73an76xnanmdrnqej8uwvmjxrz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"\",\n                \"identity\": \"Tea\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Tea\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Tea\",\n                \"update-height\": 3365119,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+21,\n            \"validator\": {\n                \"address\": \"one1grry5e0s8qxpdgcrrqssqd6rlga3nnmclzn0d6\",\n                \"bls-public-keys\": [\n                    \"f0fe0ac7b97d3dbffab4590863a8aada86b7e1189d115b37e3fbde4fa69df15f4bbd271725d30700f3fe750d9226108a\"\n                ],\n                \"creation-height\": 3365120,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1grry5e0s8qxpdgcrrqssqd6rlga3nnmclzn0d6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"I won't love you back.\",\n                \"identity\": \"a duck\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.800000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Scrooge McDuck\",\n                \"rate\": \"0.200000000000000000\",\n                \"security-contact\": \"@the_talking_duck\",\n                \"update-height\": 3365120,\n                \"website\": \"null\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one10qn232e3r5ertg2s7797uceq9jfxeuz8guazx0\",\n                \"bls-public-keys\": [\n                    \"0c2c7cf6f23d0afcc81b07b96ec97750794a477f13606b99543558c7615d054209c518d6d2c3542db37c9bacd00d4704\"\n                ],\n                \"creation-height\": 3365239,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10qn232e3r5ertg2s7797uceq9jfxeuz8guazx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n9at5vm0wwkh2zj6ldtgp5aqe0tsnx7ymnglp6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"***It was time to make money! Delegate to us for a easy staking experience***\",\n                \"identity\": \"OSP\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.020000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"OSP-Ukraine\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3365239,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1gawz79t5m2rkucndc9uag9zkn937jjevy84uvn\",\n                \"bls-public-keys\": [\n                    \"fd3d3c28c0f4ae92161ca35b6f3a9820cf55db8a6feedd90164d07a280ed1454599be3e4e23db10925e46fe753975c8c\"\n                ],\n                \"creation-height\": 3365376,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1gawz79t5m2rkucndc9uag9zkn937jjevy84uvn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18txx6kdter6vn7h8400tcjz3kzsr5753k8rqrm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"We are a group of blockchain engineers with experience on EOSIO. Let’s Harmonize.\",\n                \"identity\": \"ATX Harmony\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 2e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"ValidATXer\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"validatxer@tokentheory.io\",\n                \"update-height\": 3365376,\n                \"website\": \"https://www.tokentheory.io\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1wf8dzkk2f53hpkgd2vc3t8k5ydw8e6qf7j6043\",\n                \"bls-public-keys\": [\n                    \"a5da1cebf89e7495b9585353eac2111817f5ebc1c71c96f203e3524c318e98bf34156cfe909acc21122b66a91828d197\",\n                    \"c549b31d2cb5a7ad3fb9c563d11e0d24633c4ad0a8487b04002ab64311d87b89e0f1cbab19b3b74daf4a6969501e2a8f\"\n                ],\n                \"creation-height\": 3365645,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wf8dzkk2f53hpkgd2vc3t8k5ydw8e6qf7j6043\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \" Low fees \",\n                \"identity\": \"Mark999\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"MarcoG. low fees\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"Mark999\",\n                \"update-height\": 3423580,\n                \"website\": \" \"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1k8w926t84ymzukfv5lye3jsxsjxanlp5erx5mw\",\n                \"bls-public-keys\": [\n                    \"225c11a1dcf7c77cc5e25934e28e50ac4acedda752cc8335d55745696ff2a8d7d5cf54f18dfd377a4e966473d7100c84\"\n                ],\n                \"creation-height\": 3366195,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k8w926t84ymzukfv5lye3jsxsjxanlp5erx5mw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Validator Node #5\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1.734637e+24,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Binance\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3368416,\n                \"website\": \"binance.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                \"bls-public-keys\": [\n                    \"1b2e211b1de64c5421c2389f98a6af6459033815d5825ffb0df99c94fa96d20f115a7426a0b014507596c22e84ef7d00\"\n                ],\n                \"creation-height\": 3366309,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one177ty3kcr9y6p4wuh6uqklx6vw3ydplnu5xmx8s\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"VALIDATOR MOVED. SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3366309,\n                \"website\": \"https://staking.harmony.one/validators/one177ty3kcr9y6p4wuh6uqklx6vw3ydplnu5xmx8s\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+21,\n            \"validator\": {\n                \"address\": \"one15u9e82r46acp9v9z66qypulpcck43ptttfej0f\",\n                \"bls-public-keys\": [\n                    \"6db9f5fd834f4eeac30af0db0942934256b2b8ed4f08cb30feb0b17d87e3606ebf8726e9f756193cb0766210a0e19210\"\n                ],\n                \"creation-height\": 3366357,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15u9e82r46acp9v9z66qypulpcck43ptttfej0f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1e0dr876ukf8p30v5xeval2puxvwvt4trx7p637\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs and https://staking.harmony.one/validators/one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.990000000000000000\",\n                \"max-rate\": \"0.990000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3366357,\n                \"website\": \"https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1ey87xtfdydd2kqm47zm7f094f3sqar9ltej2rl\",\n                \"bls-public-keys\": [\n                    \"166450d25e7429e732ecc755308e8615d19aa27ee497483c20b2f5f1f993c973b8d450bd56a430aa339189fdf247de0c\"\n                ],\n                \"creation-height\": 3366385,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ey87xtfdydd2kqm47zm7f094f3sqar9ltej2rl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs and https://staking.harmony.one/validators/one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.950000000000000000\",\n                \"max-rate\": \"0.950000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3374716,\n                \"website\": \"https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one146wfttjmdw9k8vptkahh444vjft8szvtn09pks\",\n                \"bls-public-keys\": [\n                    \"3070dd1062e3aa2e57740094f6dc8a06e39b31a0eab615dded2969c4bef42683f8763d77a1191b660d0de346cd5e9c98\"\n                ],\n                \"creation-height\": 3366459,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146wfttjmdw9k8vptkahh444vjft8szvtn09pks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs and https://staking.harmony.one/validators/one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.900000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3366459,\n                \"website\": \"https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.0001e+22,\n            \"validator\": {\n                \"address\": \"one19zt89ps0mgeuvkslkduplt8hysk93c73svft67\",\n                \"bls-public-keys\": [\n                    \"3494f33907a9b015f1ef244336ff5fc38b679ef86c0e05c55228c73d4bbf5a207a49b695bacef447cf4b1e8516eb4a80\"\n                ],\n                \"creation-height\": 3366483,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0001e+22,\n                        \"delegator-address\": \"one19zt89ps0mgeuvkslkduplt8hysk93c73svft67\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"TBD\",\n                \"identity\": \"Architect\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Matrix4\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"TBD\",\n                \"update-height\": 3366483,\n                \"website\": \"TBD\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one17sesxr0jq6srusgm7wyu7zutdpl6n32k4kfaey\",\n                \"bls-public-keys\": [\n                    \"98802ce3374da03a865fbad322a2506320bc67ef23bf736054687336825847365e6df114bfa5e0d468114a3db539aa98\"\n                ],\n                \"creation-height\": 3366495,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17sesxr0jq6srusgm7wyu7zutdpl6n32k4kfaey\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs and https://staking.harmony.one/validators/one1kd3q9tn3ghu6et2p6zfp2gr9sz54w92w7e9hrl\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.950000000000000000\",\n                \"max-rate\": \"0.950000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3366495,\n                \"website\": \"https://staking.harmony.one/validators/one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\",\n                \"bls-public-keys\": [\n                    \"469356f887564c1c3b9ad7fdcffb7ed803970c3e8329a1a61fe1c6b25163a08a9f2dafa5a5d942c8b9f9dfd4c21a5214\"\n                ],\n                \"creation-height\": 3366538,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1huztuezl89s5y5unzp5ncxa77s6yw40q3p5ncs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1denuxlaea29pxgr7zhcanfkevzzqeewxee44eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"WE ARE MOVED TO https://staking.harmony.one/validators/one177kcfufknjq9vxnqcy2vu45wjghmy6j6um4zpj\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.950000000000000000\",\n                \"max-rate\": \"0.950000000000000000\",\n                \"max-total-delegation\": 1e+22,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"VALIDATOR MOVED. SEE DESCRIPTION\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3366538,\n                \"website\": \"https://staking.harmony.one/validators/one177kcfufknjq9vxnqcy2vu45wjghmy6j6um4zpj\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                \"bls-public-keys\": [\n                    \"22849c6b66e7888685c94781d0608ed8254646de58a98bd5e2cdd4a2da3518a9aea6653f9edce7e23500b5dd62ad5415\"\n                ],\n                \"creation-height\": 3366834,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Professional One Validator on behalf of Harmonybanking.com\",\n                \"identity\": \"Harmony Banking Validator\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1.001e+22,\n                \"name\": \"Harmony banking sys. 1.5%\",\n                \"rate\": \"0.015000000000000000\",\n                \"security-contact\": \"contact@harmonybanking.com\",\n                \"update-height\": 3374611,\n                \"website\": \"harmonybanking.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.127239021760739507\",\n                \"blocks\": {\n                    \"signed\": 483302,\n                    \"to-sign\": 489196\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.887680070166607990\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.311456130453109510\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.402894525235896181\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.354574278159117652\",\n                        \"epoch\": 191\n                    },\n                    {\n                        \"apr\": \"0.165014528633514817\",\n                        \"epoch\": 192\n                    },\n                    {\n                        \"apr\": \"0.157244984437732270\",\n                        \"epoch\": 193\n                    },\n                    {\n                        \"apr\": \"0.150738813825323448\",\n                        \"epoch\": 194\n                    },\n                    {\n                        \"apr\": \"0.150737080342886760\",\n                        \"epoch\": 195\n                    },\n                    {\n                        \"apr\": \"0.140853312155237459\",\n                        \"epoch\": 196\n                    },\n                    {\n                        \"apr\": \"0.138366629154755637\",\n                        \"epoch\": 197\n                    },\n                    {\n                        \"apr\": \"0.127239021760739507\",\n                        \"epoch\": 198\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 200,\n                            \"to-sign\": 201\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16171,\n                            \"to-sign\": 16249\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16751,\n                            \"to-sign\": 16805\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16916,\n                            \"to-sign\": 16991\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16922,\n                            \"to-sign\": 16976\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17194,\n                            \"to-sign\": 17234\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17756,\n                            \"to-sign\": 17858\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 21342,\n                            \"to-sign\": 21395\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 40997,\n                            \"to-sign\": 41084\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 39698,\n                            \"to-sign\": 39750\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 9149,\n                            \"to-sign\": 9156\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 162797,\n                            \"to-sign\": 163889\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 107409,\n                            \"to-sign\": 111608\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.57188005677351348235004e+23\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one128c4wclvc3udu09fs2cdrhlxczh42yzuhlcu7u\",\n                \"bls-public-keys\": [\n                    \"afbb0926f25a3c277cc9bfa0da02ec8c36c73afed561073631d363cd74b6489648ce7e1cde467ee03b9ac24df28e3b13\"\n                ],\n                \"creation-height\": 3366889,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one128c4wclvc3udu09fs2cdrhlxczh42yzuhlcu7u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149x673ga5xh58qpgr4c6r8wpqxaaptzwpjarjl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one162nx454ej6rp0wjag2f8czcayruwrf33xuvhj0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"emasset 2 nodes 4bls keys per node, 2 t3small machines\",\n                \"identity\": \"emasset\",\n                \"last-epoch-in-committee\": 198,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+28,\n                \"min-self-delegation\": 1e+23,\n                \"name\": \"emasset\",\n                \"rate\": \"1.000000000000000000\",\n                \"security-contact\": \"support@emasset.com\",\n                \"update-height\": 3366889,\n                \"website\": \"www.emasset.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.119871827206916636\",\n                \"blocks\": {\n                    \"signed\": 48644,\n                    \"to-sign\": 49152\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.128066074517233666\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.122518971319482988\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121478069607158983\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123868958144334452\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.119199179715439207\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120498201392810360\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.123344646839541777\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.117075931039007606\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117443632316369303\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118248512526214046\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117066016496765358\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.118588636335428884\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116548148957775899\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120539590414533114\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120480549113125594\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119046811680916748\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116953560946420949\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117814009348726545\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.053312251642125432\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.119070552598297524\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.121460959791458229\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.118843946580905869\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122921076852020858\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122489779874891739\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118567286545771077\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121359492899573905\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118886661802356999\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.119960229086609573\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120536288892581717\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120724160907943965\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119871827206916636\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16270,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16104,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16268,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.8337564644160595092364e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                \"bls-public-keys\": [\n                    \"54e176df47fdf17c32c996ed028bf50ccd1e4d7c051dc73131b0541f40ee5169c1cf64f530b5e4c590c2188686590f0c\"\n                ],\n                \"creation-height\": 3366908,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16m5r7awa4y2z2cyage4cns4uejxx8rn0gw77ug\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jpxwmkc4ad7p0p66ya6vl3c379qwhuywqrq95v\",\n                        \"reward\": 117116730971849907087,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d0974tslprzkxgsatc8ahaxxa2p8phvpgnahjx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"生きとし生けるものそのすべてに、ピザの恩寵を賜わらんことを🍕\",\n                \"identity\": \"ピザの恩寵\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 5e+28,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"君に舞い降りるピッツァ🍕\",\n                \"rate\": \"0.008000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3473019,\n                \"website\": \"https://www.1101.com/juku/hiroba/1st/free-101/03.html\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.280401526327519118\",\n                \"blocks\": {\n                    \"signed\": 189703,\n                    \"to-sign\": 197946\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.716013185947578627\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.107992221368148861\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.616295804798565704\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.243066918954097308\",\n                        \"epoch\": 189\n                    },\n                    {\n                        \"apr\": \"0.241830116920033222\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.280401526327519118\",\n                        \"epoch\": 191\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15727,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15533,\n                            \"to-sign\": 16685\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16892,\n                            \"to-sign\": 19038\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 47073,\n                            \"to-sign\": 47390\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 56258,\n                            \"to-sign\": 56579\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 38218,\n                            \"to-sign\": 41868\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 6.89861044744687519179e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1kv4pr4zchyv7kkypnezeskchxaacakk7vgtw3d\",\n                \"bls-public-keys\": [\n                    \"c6a310513ae626ed58a18b8f8753809bc9e9d9e2c132d91a551294a9dee268d2d3b749cf3d347b123055329fe4022d8c\"\n                ],\n                \"creation-height\": 3367208,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kv4pr4zchyv7kkypnezeskchxaacakk7vgtw3d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1drvtd8ry50teatkmucae2tajg7ngjr7cdk02ul\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qka5ahyct3k4hc6gqujedyj9xq3d68nj0ws4st\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one127ytfzx3vqnknwj5fjq9z8ds0xtgsuhutwd4kl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15v2a60gqk9ue0h6nq7pu38kq456t7kj0ygl6ex\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12psjdqfvtd2jskzvhk0sp2kmv58nemfx3g9cwl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"...\",\n                \"identity\": \"HarmonyTest\",\n                \"last-epoch-in-committee\": 191,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HarmonyTest\",\n                \"rate\": \"0.035000000000000000\",\n                \"security-contact\": \"Trop1co\",\n                \"update-height\": 3438019,\n                \"website\": \"...\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1h2vuqrgpey8f0nqq5x80l2kwxqaxr3sh0hd6cc\",\n                \"bls-public-keys\": [\n                    \"6617e8e242dbdd246f2151d4cb7e4252a8d513f574ad8a4a6b44ac30dc81f379df5294adc6a95b052adf06d3fd255514\"\n                ],\n                \"creation-height\": 3367406,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h2vuqrgpey8f0nqq5x80l2kwxqaxr3sh0hd6cc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"5% fee will be maintained over the time. 2FA secured server with newest generation of CPU AMD EPYC 2nd Gen Rome processors. Experienced community member supporting Harmony nodes. Contact through encrypted ProtonMail.\",\n                \"identity\": \"Vega\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 8e+24,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Vega\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Vega.node@protonmail.com\",\n                \"update-height\": 3379959,\n                \"website\": \"Vega.node@protonmail.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                \"bls-public-keys\": [\n                    \"0c86750ff767e17cf362fefbec45d3672e9b14e31cc019f0a11d886f8735e235d497c29ee242cf55394a0a7060e04894\"\n                ],\n                \"creation-height\": 3367610,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"blockchain engineer\",\n                \"identity\": \"naturedcorn1\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"naturedcorn1\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3367610,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.120136853113517150\",\n                \"blocks\": {\n                    \"signed\": 48081,\n                    \"to-sign\": 49152\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.127247394071928367\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.122486696260745125\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121352085474989403\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.122969106520305688\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.127972630818075586\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.124173013549658380\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.137994978481520371\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122248372536335524\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.116636012022410796\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121263274277390114\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118316312058499222\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125365218675462807\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.005366877088518252\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121801824496346478\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.123593590240616417\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.112906494270771031\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117809350964426407\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119168619380953124\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122448366710497107\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121105077527241984\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.123788009421522305\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120835057426482903\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122948428712255017\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122586226557561419\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118857105197048037\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121585537115428332\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.121051178218456150\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.120950095971358727\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122419969514743840\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120832885945790406\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120136853113517150\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15756,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16077,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16246,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.6340087265425619745588e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 8.3959999999e+22,\n            \"validator\": {\n                \"address\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                \"bls-public-keys\": [\n                    \"289eb7f7c6b601dc83534734f500365f4fcf2189a5813b806b9ef6a777183c697d5fb22c07a26d19b63f1e10fa88e50c\"\n                ],\n                \"creation-height\": 3367619,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c6m2w8t0p3de3cjleu2t2duvspas6366jtf8da\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0sy6uju6s3p54c7xpgrnxsztke3jjv5shsa2p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3959999999e+22,\n                        \"delegator-address\": \"one1ruwk3yw8lue9gjjdjuplqg5k534ts89qq6tus9\",\n                        \"reward\": 2640373273896320587,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"If you want to continue earning high delegation rewards, please re-delegate to Algorithmiq Ventures Aurora node with a higher APR and higher uptime. Brooklyn node shall not be elected for next epoch.\",\n                \"identity\": \"Brooklyn--2286455933564097969\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Algorithmiq Ventures Validator Node - Brooklyn\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"petr.koutny@alventu.com\",\n                \"update-height\": 3391488,\n                \"website\": \"www.harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 13581,\n                    \"current-epoch-signing-percentage\": \"0.998456109395677106\",\n                    \"current-epoch-to-sign\": 13602\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"6914877284546400000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 506463,\n                    \"to-sign\": 521504\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.112234508457726136\",\n                        \"epoch\": 207\n                    },\n                    {\n                        \"apr\": \"0.077076629026788579\",\n                        \"epoch\": 208\n                    },\n                    {\n                        \"apr\": \"0.121483626789877236\",\n                        \"epoch\": 209\n                    },\n                    {\n                        \"apr\": \"0.081796161496608386\",\n                        \"epoch\": 211\n                    },\n                    {\n                        \"apr\": \"0.084002469581973630\",\n                        \"epoch\": 212\n                    },\n                    {\n                        \"apr\": \"0.074211026305859571\",\n                        \"epoch\": 213\n                    },\n                    {\n                        \"apr\": \"0.095243305998457468\",\n                        \"epoch\": 214\n                    },\n                    {\n                        \"apr\": \"0.092819865173615593\",\n                        \"epoch\": 215\n                    },\n                    {\n                        \"apr\": \"0.100638503162183226\",\n                        \"epoch\": 216\n                    },\n                    {\n                        \"apr\": \"0.101750048695211610\",\n                        \"epoch\": 217\n                    },\n                    {\n                        \"apr\": \"0.099012791732429768\",\n                        \"epoch\": 218\n                    },\n                    {\n                        \"apr\": \"0.096215285583030800\",\n                        \"epoch\": 219\n                    },\n                    {\n                        \"apr\": \"0.095748156205500478\",\n                        \"epoch\": 220\n                    },\n                    {\n                        \"apr\": \"0.096118376437105574\",\n                        \"epoch\": 221\n                    },\n                    {\n                        \"apr\": \"0.100443032003736560\",\n                        \"epoch\": 222\n                    },\n                    {\n                        \"apr\": \"0.095099805855826486\",\n                        \"epoch\": 223\n                    },\n                    {\n                        \"apr\": \"0.052591575489846836\",\n                        \"epoch\": 224\n                    },\n                    {\n                        \"apr\": \"0.102291254308380394\",\n                        \"epoch\": 226\n                    },\n                    {\n                        \"apr\": \"0.104867058568615864\",\n                        \"epoch\": 227\n                    },\n                    {\n                        \"apr\": \"0.108339025481041634\",\n                        \"epoch\": 228\n                    },\n                    {\n                        \"apr\": \"0.106112317063780248\",\n                        \"epoch\": 229\n                    },\n                    {\n                        \"apr\": \"0.118204967824594595\",\n                        \"epoch\": 230\n                    },\n                    {\n                        \"apr\": \"0.103198827609795156\",\n                        \"epoch\": 231\n                    },\n                    {\n                        \"apr\": \"0.112327228783839748\",\n                        \"epoch\": 232\n                    },\n                    {\n                        \"apr\": \"0.118161615727154279\",\n                        \"epoch\": 233\n                    },\n                    {\n                        \"apr\": \"0.113485580622987013\",\n                        \"epoch\": 234\n                    },\n                    {\n                        \"apr\": \"0.122436623254344889\",\n                        \"epoch\": 235\n                    },\n                    {\n                        \"apr\": \"0.107393654078912394\",\n                        \"epoch\": 236\n                    },\n                    {\n                        \"apr\": \"0.112884896773160343\",\n                        \"epoch\": 237\n                    },\n                    {\n                        \"apr\": \"0.076184033270116762\",\n                        \"epoch\": 238\n                    },\n                    {\n                        \"apr\": \"0.000000000000000000\",\n                        \"epoch\": 239\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 16368,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16360,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16371,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16360,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16364,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15896,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16068,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16076,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16097,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16109,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16028,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15966,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16216,\n                            \"to-sign\": 16390\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65005,\n                            \"to-sign\": 65534\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 48794,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49062,\n                            \"to-sign\": 49154\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65296,\n                            \"to-sign\": 65534\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 38567,\n                            \"to-sign\": 49148\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15879,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.07312892951083353361508e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 0,\n                        \"key\": {\n                            \"bls-public-key\": \"f49663784bfe0ba02c2ea24711f431108aa55b16781a324b0f9db02c7bc1eeb60d1dd1aaaa2d7d90069ff2c0cab31318\",\n                            \"earning-account\": \"one1mgwlvj9uq365vvndqh0nwrkqac7cgep2pcn6zl\",\n                            \"effective-stake\": \"6914877284546400000000000.000000000000000000\",\n                            \"group-percent\": \"0.007128269265309351\",\n                            \"overall-percent\": \"0.002281046164898992\",\n                            \"raw-stake\": \"6914877284546400000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.0951752469794e+25,\n            \"validator\": {\n                \"address\": \"one1mgwlvj9uq365vvndqh0nwrkqac7cgep2pcn6zl\",\n                \"bls-public-keys\": [\n                    \"f49663784bfe0ba02c2ea24711f431108aa55b16781a324b0f9db02c7bc1eeb60d1dd1aaaa2d7d90069ff2c0cab31318\"\n                ],\n                \"creation-height\": 3367685,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.805454e+24,\n                        \"delegator-address\": \"one1mgwlvj9uq365vvndqh0nwrkqac7cgep2pcn6zl\",\n                        \"reward\": 1.2803048723526001547196e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1nqfdfsvnuzpjkyntfppda0savk26tprxmjt0qu\",\n                        \"reward\": 16840525648913596532,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0695719794e+22,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 37009489158515402127,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 4742742351452252096,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.841099e+24,\n                        \"delegator-address\": \"one1wcfhm6t87ygsqm5jkyr23hl9eg0ts56yfmynst\",\n                        \"reward\": 2.6491909304206749657814e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+24,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 9.82335764842592021551e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5395e+22,\n                        \"delegator-address\": \"one15tjsjcff0mcxc76qjrspmc8ml53yg9px3d2qgp\",\n                        \"reward\": 118691970662976217340,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 1769966916824579673,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.24575e+21,\n                        \"delegator-address\": \"one1dztpmj96q2f7rmu8gl8hne8k2z84s8tjmmcj4q\",\n                        \"reward\": 381697510938411747,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.66863e+23,\n                        \"delegator-address\": \"one19u0l4vvzhqntlyefjgtxlcmnml99et7jk5nm86\",\n                        \"reward\": 354792289700628820773,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5e+22,\n                        \"delegator-address\": \"one1c0gjxhujxst85e8az6mll2s8tm30609d9ylxe6\",\n                        \"reward\": 158814854617135009027,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1p7z8y46j8rf4etvt0h95x8ngz0w3ccj4fx06l9\",\n                        \"reward\": 20582855391921892545,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 487823511327409517271,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"HODL_Validator_group is a Harmony Foundational Node operator in Taiwan since Harmony project launch. We are a professional & reliable POS validator with low fee (4%) and high performance (slot tuning).\",\n                \"identity\": \"HODL_Validator\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.040000000000000000\",\n                \"max-rate\": \"0.040000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HODL_Validator\",\n                \"rate\": \"0.040000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3367685,\n                \"website\": \"t.me/HODL_Validator\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.099842839431734799\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.103106607340994716\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.105135409104182643\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.106073409993395398\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.099349306307657178\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.103208360096450867\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.098360494454107101\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.079798994840345253\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.104076970279561684\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.101567969899686842\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.100005802589298404\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.100469913085045284\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.100404874379505382\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.101196295052893013\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.101605786334367417\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.098575724446491908\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.099902352837886929\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.098689187436734845\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.099776046617325934\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.098252742757265869\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.098723397311018819\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.097068956847234248\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.079034600401273237\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.099213147423889466\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.088824485923340362\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.087011448269010805\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.099047776576803916\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.097038158180926726\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.096571902699047270\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.096757415611715902\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.089734795591636485\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.099842839431734799\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.809738e+24,\n            \"validator\": {\n                \"address\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n                \"bls-public-keys\": [\n                    \"b42ce709d9267a69a0aa4ecfc4fd90008920e16aa7273b5b19a66b328f7d302991579274d25b883b461355573b075094\",\n                    \"8ad8b118c8dcb535f65603bd069896c75fc3b96fb0f666aeb2e8332c570461c3598fabcbee5c971f33d07efaa1a1e394\",\n                    \"fa5e37d8b4ee977ac17334bf316b0af763dbf81c83e25e3123fe12553900290361111e3cf8897f76674a8727cc1c1e0c\",\n                    \"364871ad3c0be1131c5d21aeee76dc262f9a49e3896396eab3883d213e8dfb2fa294efa48164cea275b423c83a455880\"\n                ],\n                \"creation-height\": 3367987,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.799738e+24,\n                        \"delegator-address\": \"one1r0k3amjm6njuuyg3zmj57c6hnjmkqn9qpzx7gm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"I've experience with Harmony 6+ months as a foundational node runner, and participated during OS testnet. Understand how this works; keeping stable uptime won't be a problem. Relatively low fees.\",\n                \"identity\": \"Stable\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Omen🥩  (DMun)\",\n                \"rate\": \"0.014900000000000000\",\n                \"security-contact\": \"@DMunn on Telegram\",\n                \"update-height\": 3367987,\n                \"website\": \"https://www.harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.771626398530998466\",\n                \"blocks\": {\n                    \"signed\": 190953,\n                    \"to-sign\": 228776\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.362066328373531770\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.771626398530998466\",\n                        \"epoch\": 187\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 6028,\n                            \"to-sign\": 6040\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 133804,\n                            \"to-sign\": 166912\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51121,\n                            \"to-sign\": 55824\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 6.3875078414535766941164e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1kgpgnudej6nvt56jvjura5sk96vr4fev72zy27\",\n                \"bls-public-keys\": [\n                    \"699654f5cc4db777d5e639473d13875110b7a933ca3bdad35a2c7bbbf3851ec09cb01512cd5b83cccce4cb216b20e10b\",\n                    \"461164907d55d192392dd0c6000b0b6051ade60369366ce9b7cbc48eda2d7feb6c2bed2b06beb73a91c4665b9cf27513\",\n                    \"a834580d88e2aff52ceb0d391955d2fc366b3d3ab162827ce7590fdb1a9e8aed908cb054bca13250b6f20c4825cb9287\",\n                    \"a49ec56a0efddd498a0e73603c9eebda8e5a84360488d41d56fe6adab7ef77a25ff323ca0f307b1d41cfc79102733087\",\n                    \"7c1e05e19c5543d3a4bc88c334b970cb50ad81ead7f7632464a19be7845cce7d72f51741e095d30d3c19303137897698\"\n                ],\n                \"creation-height\": 3368052,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kgpgnudej6nvt56jvjura5sk96vr4fev72zy27\",\n                        \"reward\": 8.36444449189054592073e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one142w6su2shfgx8jhckcnakxkjzz63fj0tukdvyz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"A hairy, upright-walking, ape-like creature\",\n                \"identity\": \"Sasquatch\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1.5e+25,\n                \"min-self-delegation\": 4.9999e+22,\n                \"name\": \"SUSAN\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"Sir Lionel Frost\",\n                \"update-height\": 3368052,\n                \"website\": \"MISSING LINK\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.475825498111998227\",\n                \"blocks\": {\n                    \"signed\": 19359,\n                    \"to-sign\": 40460\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.475825498111998227\",\n                        \"epoch\": 187\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1186,\n                            \"to-sign\": 2372\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18173,\n                            \"to-sign\": 38088\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 7.483548726116791944336e+21\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1k4wsglw30mluqnc8cu0s4px5xrendmfz92w9wq\",\n                \"bls-public-keys\": [\n                    \"3c99505dc21a5a2a2a44f93c8909b7166e8b0ac3dc9d7bc870741dd9e2c248f945331eeed7ba25fdd49fbdcd673a5e15\",\n                    \"1fdaa5135a5729ccf72f00cf5e5795fe6afa74cf37ebddbbe2b62c34b27c4a24a5902aa6d9b51d7821adb5e5d2e39009\"\n                ],\n                \"creation-height\": 3368256,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4wsglw30mluqnc8cu0s4px5xrendmfz92w9wq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"DETAILS\",\n                \"identity\": \"Clickatelli\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.200000000000000000\",\n                \"max-rate\": \"0.400000000000000000\",\n                \"max-total-delegation\": 2.7e+24,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Clickatelli\",\n                \"rate\": \"0.200000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3368256,\n                \"website\": \"BOB.COM\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000006347065906478\",\n                \"blocks\": {\n                    \"signed\": 48302,\n                    \"to-sign\": 49152\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"1.010571646795483252\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.751695632826547775\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.452478613851949922\",\n                        \"epoch\": 188\n                    },\n                    {\n                        \"apr\": \"0.056560924173073186\",\n                        \"epoch\": 213\n                    },\n                    {\n                        \"apr\": \"0.064292544495154781\",\n                        \"epoch\": 214\n                    },\n                    {\n                        \"apr\": \"0.065208462225687236\",\n                        \"epoch\": 215\n                    },\n                    {\n                        \"apr\": \"0.070236154470300063\",\n                        \"epoch\": 216\n                    },\n                    {\n                        \"apr\": \"0.070960117481349379\",\n                        \"epoch\": 217\n                    },\n                    {\n                        \"apr\": \"0.069040078194267383\",\n                        \"epoch\": 218\n                    },\n                    {\n                        \"apr\": \"0.067107380101295300\",\n                        \"epoch\": 219\n                    },\n                    {\n                        \"apr\": \"0.066590630087110529\",\n                        \"epoch\": 220\n                    },\n                    {\n                        \"apr\": \"0.067402204269964950\",\n                        \"epoch\": 221\n                    },\n                    {\n                        \"apr\": \"0.067296249835598531\",\n                        \"epoch\": 222\n                    },\n                    {\n                        \"apr\": \"0.066341984363149060\",\n                        \"epoch\": 223\n                    },\n                    {\n                        \"apr\": \"0.068475391998009286\",\n                        \"epoch\": 224\n                    },\n                    {\n                        \"apr\": \"0.066529311397648232\",\n                        \"epoch\": 225\n                    },\n                    {\n                        \"apr\": \"0.068103498545756009\",\n                        \"epoch\": 226\n                    },\n                    {\n                        \"apr\": \"0.066530299311680821\",\n                        \"epoch\": 227\n                    },\n                    {\n                        \"apr\": \"0.068781135951337428\",\n                        \"epoch\": 228\n                    },\n                    {\n                        \"apr\": \"0.067520293516226851\",\n                        \"epoch\": 229\n                    },\n                    {\n                        \"apr\": \"0.000006347065906478\",\n                        \"epoch\": 230\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16153,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16081,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16066,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.703466117883707465904e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.00002e+22,\n            \"validator\": {\n                \"address\": \"one1lm8jajxvqn478t7pwvuf80v5raana6c3fr2rzr\",\n                \"bls-public-keys\": [\n                    \"3829743a2295519e89538412cb11ea4f04698949761cfd6dd460222c80976b9d4f2bad4d1266e9c7e90c95336fa48794\"\n                ],\n                \"creation-height\": 3368350,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1lm8jajxvqn478t7pwvuf80v5raana6c3fr2rzr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7lxuqkg3sedxz9j6a4v2axxmrdhhr45d2ckv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hyqgueh0fv7mwwtt82f74wq9guzmw8ytf74qhn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xvyfjz4ypmcwqxvd7q28xp3jwv5xy7wa85jr4n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 13286172582424073986,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rsswq9k7yq47mv7mrpc28ngq7mrn0xhnhe7mgk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1utkxtz9mjja28lrtltf28w4jmuzqrn5j7hlat7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wl6umsv354mqhlrxjnutkwfpdzu3ls4tx43ejk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wlpuyd73z03j6qyufye7lynl00nq6dcq94y89k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dm69hwemcpae6gdeaefkg0h9njvr977wzywrkl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8pu8pwfh7q7x8e70ptnztwdk6n505adm42yva\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h3szew3asdd32u7mzd9upjg78k2afdz2cl2fxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qch57lkuudl850ner7xsytezwclzhnzztnkazr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8dt4hz56jzksjaw7vayf8d4n5k5tj5heagnpw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 200000000000000000,\n                        \"delegator-address\": \"one1p0ce8m2pzu7lanwvt9su9fh4e29mpfsgyh53qf\",\n                        \"reward\": 2587115267646907593,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lcw9gkm4xuwrpqyjfqgz4zf5fduxrrqexnp4hf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4h9h9g2xkd6gvfzcudclzukjq3z998huxrvn3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Stakeing for a decentralised future\",\n                \"identity\": \"STAKEOLOGY\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"STAKEOLOGY\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Stakeology\",\n                \"update-height\": 3468459,\n                \"website\": \"STAKEOLOGY@PROTONMAIL.COM\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.120173649666419643\",\n                \"blocks\": {\n                    \"signed\": 48927,\n                    \"to-sign\": 49152\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122697159116499765\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121369720863028647\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123715412921557582\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.128288016275239596\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.124713817602455443\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.138454126595504025\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122950978380920573\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117361605243379258\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121662848237623083\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118753258196788460\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125985631590937799\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114635436990457203\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121050166773220230\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.122487878976630339\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.124358553922093236\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.114179694291662226\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118503558480193849\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120195066631769941\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.123064974618258812\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121856149016562684\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.124065285168602033\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121286665882425967\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.123050136529705673\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122678532600463172\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.119149539895549658\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121816676349055837\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.121255737778249874\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.121062903573084694\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122513279980588575\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120964470340435029\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120173649666419643\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16377,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16370,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16178,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.836269458399961008746e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.0672e+22,\n            \"validator\": {\n                \"address\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\",\n                \"bls-public-keys\": [\n                    \"79dae4be1cc8dfec7d85b0bc13f77cb8b2ee5d423f0bfc56e057998547d1b588edf7966a3365a9cfe1c9ea225d279590\"\n                ],\n                \"creation-height\": 3368370,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0672e+22,\n                        \"delegator-address\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\",\n                        \"reward\": 1.1659556346758844733185e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aurkwpe7p3zz9k2z70xg758m26p7q5wvem5prx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xx7d6ldrtla7dw7yawg4rq05ws05qrkhxxfqaa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qgkqpscscfp7frvq6enexlekj6tz4u6r66phy6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kctqdpsfuexz2lefefcqyyjydw6zvr3kc9tras\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fsqyatysv7y3dg7lg0h39kmq2qygxwx3lmm83m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Experienced team running closely monitored, enterprise-grade hardware in a high-availability UK datacentre with redundant power, network and cooling. Website and branding coming soon.\",\n                \"identity\": \"HarmonicValidator1\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Harmonic\",\n                \"rate\": \"0.045000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3368370,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one146xcqrrxj6rnue8yhpw7dsat4dqt0763gnpxzg\",\n                \"bls-public-keys\": [\n                    \"9fc51e843e2b13839ca96eb910a6e8dbf41d61840686ee0af663058e075ff5d601e0af55da3ec24aadf5259763586308\"\n                ],\n                \"creation-height\": 3368411,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146xcqrrxj6rnue8yhpw7dsat4dqt0763gnpxzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Our moto: Stable node + Low fees + Low Max Fee Change = no surprises and stable staking income for our delegators\",\n                \"identity\": \"the.real.one.validator@gmail.com\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"0.150000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"theRealONE\",\n                \"rate\": \"0.030000000000000000\",\n                \"security-contact\": \"the.real.one.validator@gmail.com\",\n                \"update-height\": 3368411,\n                \"website\": \"https://harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1q6a4nz5ev7zq4jn3j9xwvcace8je3hqyptvx7r\",\n                \"bls-public-keys\": [\n                    \"190f68e8edc3beee370c0e1bdd64f9c2da63ff365af3f854b843d45a3c0bce0fe9a2157564a39676725832d91651d113\",\n                    \"1df9c24f62fb16665bc27e7b06e5cac592e1a33a1e5f7b00e7275f937bef7aa4ef51706398e9384d420c648608831a17\",\n                    \"939bddd7b1c4d243d556646df9f24b5778f90419b0a5d867f65f4bdf3ed94c6366f3cb7bbde9ce37576a27560279c787\",\n                    \"96f76836d055170b26774130c8c22b5422dc70a5cbd6cc388cb8284704e82b11e453a24f85f41e2d96ccc88fe8e6fc87\",\n                    \"4d79a177fe8d8271a5c99f51815b696ba6ef70756f879d4682a21f1e2df8db3864c6bb322c473752f910a7438f2edd04\",\n                    \"9ee66d63af8150126429149b4be4a9598eaaed6435a17c6edb9ff7dd898454b6ad5754da4e2e12c2849aed2fc87f6014\",\n                    \"a467b721f2cb0c86b0d4b7c616ac760cff2e4ce38bdaea00ff9e5f521d781d97e24aac898868a99f0baffe2bcfe94810\",\n                    \"ad305ce86a286a1ab1729284973cbda2699063c2aa41f7f8580d06c629917c3164ce921d748a04279239437310f1ce88\",\n                    \"266f565cf2730fbbf93559b7dcdaf39cd03c52435368c13659cc14e5e39a7b851ec20ed1a9affde3dbbc5fc625872f81\",\n                    \"47f95eccffb1bad80004699d5570e0739f27fba12e46b972d816aed048406edfd991188b74b4e66b50f2e119fb377c95\",\n                    \"88ce510b10cfd582efd0528ee0bb6d1259585e05b4643923026b9f58bc83edd3b3add554fc06820aa01eb3753da09499\",\n                    \"c6f71fcfd08195939205c3a399bfd0d67fc80f4bcb7ef4ca1f43f9a216fca1f60d2f2ad33061f3c0cc1e278510315315\",\n                    \"13072ed747891e84e5f30bbb178ec88b9aeaea5b9ce7a1d32c2937a656894abad7370c7a3e80dd26218be1bbaae0570e\",\n                    \"1daf280203a953b0daa3b163d484f0ffd4a3a22601838c3596fee380b37b049a1d8c52cb5ceb5f373bc3ceb9613efc82\",\n                    \"d13c9aae3730b6a57fc6e14819eea1f8a42f6405ecf1008a5a642c83b532e932edeaaa84a26cf8b57aa46cb092a15592\",\n                    \"fecd27b98c33f652f55f148258defe5579cd01fd9f4be11b15b47ee0f90c07737304e8c42b78e23046deb32ae2b10e0a\"\n                ],\n                \"creation-height\": 3370356,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q6a4nz5ev7zq4jn3j9xwvcace8je3hqyptvx7r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"High APR, High performance, 24/7 montored node\",\n                \"identity\": \"Blockchain Investment Firm\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"WolfEdge-Capital\",\n                \"rate\": \"0.048000000000000000\",\n                \"security-contact\": \"@mohakagr\",\n                \"update-height\": 3372816,\n                \"website\": \"https://wolfedge.capital/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1u8f5zey8ge5y7p47qlw94cphzajeftquvlhqgf\",\n                \"bls-public-keys\": [\n                    \"78e9984762dc51de827c02826dabfeb3043868b554bb2faacebf6f02425d0a1739dc3e2e0019570b7d55a7a65e1cdb11\"\n                ],\n                \"creation-height\": 3371139,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u8f5zey8ge5y7p47qlw94cphzajeftquvlhqgf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"My node is installed in a reliable datacenter and I have extensive experience in supporting Harmony nodes and many other projects.\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Satellite of Harmony\",\n                \"rate\": \"0.005000000000000000\",\n                \"security-contact\": \"Telegram - @artkrpt\",\n                \"update-height\": 3371139,\n                \"website\": \"https://ru.validators.club\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.100238119177231600\",\n                \"blocks\": {\n                    \"signed\": 32582,\n                    \"to-sign\": 32768\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.103562550748440020\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.105628552435266922\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.106786527726715671\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.099616039422021440\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.103484603742685366\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.099001586119227421\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.098345346744189163\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.104718967523820819\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.102649185576231572\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.100293886654213677\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.100643526816622105\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.100459295089721637\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.101389427709964088\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.101872780382092458\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.101893028576623207\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.099824073727269343\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.098387786769311467\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.090148435930509757\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.098625141069020743\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.098668918424392109\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.096471870220544439\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.098257253945183339\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.089767852497730521\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.097113533694412843\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.095340861103280262\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.099521689585960861\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.097152694931049794\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.096762259533617153\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.096653535583523286\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.093005414052501226\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.100238119177231600\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16278,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16302,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.2280024864619882511652e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2.004e+22,\n            \"validator\": {\n                \"address\": \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\",\n                \"bls-public-keys\": [\n                    \"286c00f71145c770f2c791492b3f26f7150ff2362780755530539c02c9115de76503ad367ab981065d3c7aa658140b18\"\n                ],\n                \"creation-height\": 3371163,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.004e+22,\n                        \"delegator-address\": \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a37yjkrxdzwkkl3ntkqsv305grcklpksxkwsrq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"DETAILS: staking-power.tech\",\n                \"identity\": \"STAKING-POWER\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"STAKING-POWER\",\n                \"rate\": \"0.035000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3653906,\n                \"website\": \"staking-power.tech\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 114802,\n                    \"current-epoch-signing-percentage\": \"0.999112302443779155\",\n                    \"current-epoch-to-sign\": 114904\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"53236909185502403801244000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.117972445059139320\",\n                \"blocks\": {\n                    \"signed\": 2052593,\n                    \"to-sign\": 2065042\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122118693741596266\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121940442593842745\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124166664859631868\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.119885591224107732\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.123159155178373956\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124585069115134492\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.116869520092544036\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119810917859768373\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.120313997227416214\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117574863560088212\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.121522182335244236\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115339222054938675\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119936339034046771\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.120876272217658701\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.121216162103038986\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.115117655868268814\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.115738319777116653\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.117457541205568893\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118163769774171203\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.117760868130665686\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.117669655015619654\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.116609339655341027\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118608675481817679\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118285322307685880\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117048216947943839\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118018908024294606\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.115024211011971928\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.115255977402865716\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.109666138917392431\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.116514169531448343\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117972445059139320\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 134957,\n                            \"to-sign\": 135208\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 138322,\n                            \"to-sign\": 138472\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 136281,\n                            \"to-sign\": 136396\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 134619,\n                            \"to-sign\": 134676\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 136702,\n                            \"to-sign\": 136820\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 132661,\n                            \"to-sign\": 133252\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 135418,\n                            \"to-sign\": 135888\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 133460,\n                            \"to-sign\": 133960\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 133617,\n                            \"to-sign\": 134196\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 133857,\n                            \"to-sign\": 134128\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 69562,\n                            \"to-sign\": 69792\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 71476,\n                            \"to-sign\": 71780\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83781,\n                            \"to-sign\": 84408\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 41412,\n                            \"to-sign\": 41572\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 40838,\n                            \"to-sign\": 40844\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 37248,\n                            \"to-sign\": 37254\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 93817,\n                            \"to-sign\": 94272\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98622,\n                            \"to-sign\": 101236\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 51141,\n                            \"to-sign\": 55984\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 8.18788104376368862452332e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.818048301906142199244e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8bab9efc3a1468735d9cdbc526fd3032b9c335a9716a2fdda001616950464cc96def3b8f41262143bc53f5b2fb34f880\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007326170774462393\",\n                            \"overall-percent\": \"0.002344374647827966\",\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.818050070584296358646e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f82ed7e0ba50226342e714de452dbf9404702d670ed08b43d022acf00ad3dee18e5ff8961bafe4692de5e220d7694704\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007326170774462393\",\n                            \"overall-percent\": \"0.002344374647827966\",\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.818173624108670381502e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"007282a93589fa2522e3e9c659ebd1629ef6fe98921d888414818fe88c3043aaf1619a8960edcdca48928c8fce51ff88\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007326170774462393\",\n                            \"overall-percent\": \"0.002344374647827966\",\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.818050689829410399976e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a3ea8b3d50a96ee130d7bc213450018d2ce2bc61380d93c249cc0265ebdb6abf88f79589c524650b243b3cc641669b04\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007326170774462393\",\n                            \"overall-percent\": \"0.002344374647827966\",\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.778362302206278599856e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d4e9a9e708070791c0f9cac4b91cc3c60b6a97cbc38b36b1778d74d7266cad68731f36a471359bd513e9b77e76a28c91\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.778629718255708652822e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"861e2d7cb713051e9a2ef95479e9da5be4d192609cb7af95737187abb0cd327aa70cec44ac26dc6844f231ebcbb06081\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.779523357787658881364e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2561bd527a78d0fce8913e83f126e9fb21d1fb5a9f2df85304d03cd3c02fd4c1bd96c52dc8e47fd85dbc09b6022d4c05\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.779015483913115208647e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3d95117eff84aa5e20b50b0bc9f7321e19dbb991d45396a227711ee9ab55aa7e2057216516c3612b6a9444118f356199\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 9.4076546e+25,\n            \"validator\": {\n                \"address\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                \"bls-public-keys\": [\n                    \"861e2d7cb713051e9a2ef95479e9da5be4d192609cb7af95737187abb0cd327aa70cec44ac26dc6844f231ebcbb06081\",\n                    \"d4e9a9e708070791c0f9cac4b91cc3c60b6a97cbc38b36b1778d74d7266cad68731f36a471359bd513e9b77e76a28c91\",\n                    \"2561bd527a78d0fce8913e83f126e9fb21d1fb5a9f2df85304d03cd3c02fd4c1bd96c52dc8e47fd85dbc09b6022d4c05\",\n                    \"3d95117eff84aa5e20b50b0bc9f7321e19dbb991d45396a227711ee9ab55aa7e2057216516c3612b6a9444118f356199\",\n                    \"007282a93589fa2522e3e9c659ebd1629ef6fe98921d888414818fe88c3043aaf1619a8960edcdca48928c8fce51ff88\",\n                    \"8bab9efc3a1468735d9cdbc526fd3032b9c335a9716a2fdda001616950464cc96def3b8f41262143bc53f5b2fb34f880\",\n                    \"a3ea8b3d50a96ee130d7bc213450018d2ce2bc61380d93c249cc0265ebdb6abf88f79589c524650b243b3cc641669b04\",\n                    \"f82ed7e0ba50226342e714de452dbf9404702d670ed08b43d022acf00ad3dee18e5ff8961bafe4692de5e220d7694704\"\n                ],\n                \"creation-height\": 3371372,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.3962111e+25,\n                        \"delegator-address\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                        \"reward\": 2.6237793363230786409052e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 27147391468514588182,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 80782702558329717490,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.177650183811532060073e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 19605169942060965035,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.625e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 101167413770278620,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.185e+21,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 16050922069629736,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Seek. Learn. Invest. Contact us: investorrelations@dacm.io\",\n                \"identity\": \"dacm1\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 5e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"DACM.io 1\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"investorrelations@dacm.io\",\n                \"update-height\": 3371372,\n                \"website\": \"https://www.dacm.io\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.493523318441835289\",\n                \"blocks\": {\n                    \"signed\": 195542,\n                    \"to-sign\": 196608\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.755579289802664643\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.691674760573819743\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.493523318441835289\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 8,\n                            \"to-sign\": 8\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65488,\n                            \"to-sign\": 65536\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 64965,\n                            \"to-sign\": 65536\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65081,\n                            \"to-sign\": 65528\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 7.3626142215754572531752e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1a39hd09sc7lfyhp8yhejeyj6jc8mfp7qsd4tvs\",\n                \"bls-public-keys\": [\n                    \"4e0b42e848c4192a2b0ba3d26a0272e3c331d6b53532c8c13926d97bef74f7796287ae29a62a5dd004fa7e2b87df4e8c\",\n                    \"9d44dcd9f7159e858c95ea73ae608de58e2583abea9ea65e53f68127f1f7d2f92d4f79f1b8cf6391ff82fa8e4edbdd94\",\n                    \"d306a87b0bd5920fae3c5dc1bd38126ace36bd7ee7149949ea8c5834e982d6170863db286101dc324e4ff9fdecb83c98\"\n                ],\n                \"creation-height\": 3371443,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a39hd09sc7lfyhp8yhejeyj6jc8mfp7qsd4tvs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Seek. Learn. Invest. Contact us: investorrelations@dacm.io\",\n                \"identity\": \"dacm2\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"DACM.io 2\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"investorrelations@dacm.io\",\n                \"update-height\": 3371443,\n                \"website\": \"https://www.dacm.io\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one149h38k3rt8m8gfaxxfn3zn43lqt6mzlvthcy5e\",\n                \"bls-public-keys\": [\n                    \"09daca3c60481be37ee1ce96bfd6c3fe8becfb92d2341f74e37d9188c191a1ab204a1b0f91913441717cfbcce6036a0f\"\n                ],\n                \"creation-height\": 3371492,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149h38k3rt8m8gfaxxfn3zn43lqt6mzlvthcy5e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"R35PECT\",\n                \"identity\": \"R35PECT\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.150000000000000000\",\n                \"max-rate\": \"0.750000000000000000\",\n                \"max-total-delegation\": 1e+25,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"R35PECT\",\n                \"rate\": \"0.150000000000000000\",\n                \"security-contact\": \"t.me/dillagr\",\n                \"update-height\": 3371492,\n                \"website\": \"https://bit.ly/3b8SifA\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 217250,\n                    \"current-epoch-signing-percentage\": \"0.999815914216024667\",\n                    \"current-epoch-to-sign\": 217290\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"153795830208833967426300000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.118069462909879968\",\n                \"blocks\": {\n                    \"signed\": 4673566,\n                    \"to-sign\": 4681115\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121948418866892337\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.091582940320702125\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.096047624976010039\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125738348161951464\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.120886798664955543\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.126238626917986129\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123150058513355397\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119941584852172845\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118347207247183420\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117511423367786064\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117201752997392866\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116766100108236253\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119969314490104383\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119877136044202659\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120454555311178363\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117978506976297169\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120233923672143887\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121022446682986114\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121177126435755035\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120638762531007517\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120318362805510355\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121217102609137763\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118304870464562910\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118709147143267188\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118122916509480679\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.118776952538574584\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118534980625270671\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117226228052302504\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118595881942591253\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118110465867470745\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118069462909879968\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 255843,\n                            \"to-sign\": 255993\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 247230,\n                            \"to-sign\": 247231\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 241319,\n                            \"to-sign\": 241326\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 238043,\n                            \"to-sign\": 238046\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 242508,\n                            \"to-sign\": 242513\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 250720,\n                            \"to-sign\": 251525\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 249759,\n                            \"to-sign\": 249840\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 250315,\n                            \"to-sign\": 250325\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 252195,\n                            \"to-sign\": 252197\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 268724,\n                            \"to-sign\": 268726\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 271890,\n                            \"to-sign\": 271899\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 260066,\n                            \"to-sign\": 260077\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 314238,\n                            \"to-sign\": 314300\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 227962,\n                            \"to-sign\": 228044\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 192841,\n                            \"to-sign\": 195950\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 187525,\n                            \"to-sign\": 187525\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 232811,\n                            \"to-sign\": 232811\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 163432,\n                            \"to-sign\": 163889\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 108895,\n                            \"to-sign\": 111608\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.5808401006101500814318e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.500952768160254674189e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0742d2fb9e19f3956255c4b866fe2c80b37a32a9c08eab25db88ac58c7f883e1a05faa7df005b5b102d361fad272940c\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.006047010476370645\",\n                            \"overall-percent\": \"0.001935043352438606\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.500952768160254674189e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1280a5222b63bc66c31176a1b321db7a5207d7a37226ba25b769a776ddbf2f50ef90d7da28fe8feed3882355c561f910\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.006047010476370645\",\n                            \"overall-percent\": \"0.001935043352438606\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.500952768160254674189e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"01907faf33066dfd001fa0ccccf0dbf5bac13c45a06677fd476e4a5e88b0bfe68a36bef81b9439092762f6dd053fbc10\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.006047010476370645\",\n                            \"overall-percent\": \"0.001935043352438606\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.500952768160254674189e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"102fa26fee93a03582ff5dfd459d73b1ef155918b17681b2d9882ec6a541addf0dca42ab6f7b5aa298498a59befe7990\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.006047010476370645\",\n                            \"overall-percent\": \"0.001935043352438606\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.469982466495684884384e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"00f97b06aa7b67db2dbcc7f3ddcb05cfb9e128de3c672597fddd102b827424d183865178dbb8759a098fe8b274cca405\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005736720911016886\",\n                            \"overall-percent\": \"0.001835750691525404\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.470093044107974300369e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0cd4f33a299dd068042d5423bd1fe00f572a44d20137c093c6f636a069c0913e76cd04131554a8f4c4a91d892f161419\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005736720911016886\",\n                            \"overall-percent\": \"0.001835750691525404\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.469982466495684884384e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0643b03e4436172ae33a0bc3bb385152e1493f50475331753bbd58568cce3a334e79b9e4996b469fab2cc274ffc79885\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005736720911016886\",\n                            \"overall-percent\": \"0.001835750691525404\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.470093044107974300369e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"10ad4173cef1909c35ce7464816b9f6809e336e8b70d92bca64b11311722bcbf33b9578a60e96d305b3a9f013c297c8d\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005736720911016886\",\n                            \"overall-percent\": \"0.001835750691525404\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.469988555261029164272e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0090a1b348eb265400f6cece55967e3f1acc626b1c401c75ba0c85584811ed941d0ef997b3c349549a7cb4a8cd5a3e89\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005736720911016886\",\n                            \"overall-percent\": \"0.001835750691525404\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.469860997389347560989e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0c64925d32333c570fc42d8d059c8d51c0c6891b7d01949839924b9406af82f3e0c67f7ea8d613013783ef378509ef0d\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005736720911016886\",\n                            \"overall-percent\": \"0.001835750691525404\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.470093044107974300369e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"11a4a7b7323dc3e5e6bcf64cd97b65662bdd5cf516ee85dc72647e22f7fb983c08b01906d7e8fa0d9a638bc5d691e711\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005736720911016886\",\n                            \"overall-percent\": \"0.001835750691525404\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.469982466495684884384e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0beeac0101c221ad63ff79835e52dbb4b3679dfe5132917f57480a62e212a672853129bf96a38632b06a2eb47f0c370d\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005736720911016886\",\n                            \"overall-percent\": \"0.001835750691525404\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462044783675103885374e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0b70c31a49b53761b2259674a2bb28034aaab0dfdabf3cceb8ea0bdc451333b712c2d897a32578ea877a4195847cef86\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005718929972909185\",\n                            \"overall-percent\": \"0.001830057591330939\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462377312963268332856e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"038ec53f77c4f8d58a81d9c13cfff5f1f0d57eea309bb0632fe76687a8f663c5ba83faddd23845d20ba25a359dcdf592\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005718929972909185\",\n                            \"overall-percent\": \"0.001830057591330939\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462045799590350421423e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"244170fb2374a10997f4f39b0540d98a4fe30c4325ff84ce7812f6e0e7660a4b3583bf4214a9defdbaad3db3ef76938e\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005718929972909185\",\n                            \"overall-percent\": \"0.001830057591330939\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461627444638231265029e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"133acf05ac9701c81ffd1150ec12dc016b2f6083a979aa90b1f8c63619700b8d8fc85661d186dee6dbd4bbab465c5392\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005718929972909185\",\n                            \"overall-percent\": \"0.001830057591330939\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461713561780413136932e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1a846c0d8c648c4c029093e21d3e5d64179ac94e74b422cbd8a157b760fbbd8b556b0c4cc2eb04f155ff22f38c288b02\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005718929972909185\",\n                            \"overall-percent\": \"0.001830057591330939\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.461755280840996005675e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"050569b98c2fe451e981e964c13d65e0b922825d0570c51f2f8883b849c32fbc15415e71045544f803c1286037abbe8e\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005718929972909185\",\n                            \"overall-percent\": \"0.001830057591330939\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462158143381760975151e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1f4d1ca9f1ecde65af73e44e4ae7912f91ed2aa7ccacdf11a660d172200b06fc509b4f5fb879cb364269a547bf72548e\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005718929972909185\",\n                            \"overall-percent\": \"0.001830057591330939\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.462262547134354430343e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"01af43ece70486159d0fcbde2986037dbd6466ada58ae584c8a38f5f4caafab86835c9643b3380fe357dc19d3e97fc8a\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005718929972909185\",\n                            \"overall-percent\": \"0.001830057591330939\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.510823253658101720202e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0a2b57cc2a8574f56033ae74aa4e597012218bfeecaa3f3801a0dc3179b60b92cf99bac581f6b1ab8e6fb00dcc496617\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005925114790003938\",\n                            \"overall-percent\": \"0.001896036732801260\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.51112711079744019056e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"11c43fa0691d6f706c57f8cc85f094388bd0f6b7edc95b5167fc3eec61283dcc20c92e92d5377e37eb28bbf00c154513\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005925114790003938\",\n                            \"overall-percent\": \"0.001896036732801260\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.511227750506947984027e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1aa713611e2496a7136b9bcddeea0dba78ed1f8d7f2d67cf1c6f3cedab549a00e2dc45e7dd8a58eb0f81e93f2feff507\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005925114790003938\",\n                            \"overall-percent\": \"0.001896036732801260\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.512083987685262190614e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"06f8dc945fb93c437d8896ae5cfb4143c065bf525eb3c9ba1144b1c542098fee332e2b9b543d028df7bacbda0fd5868b\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005925114790003938\",\n                            \"overall-percent\": \"0.001896036732801260\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.511328753908859248503e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1471e1ec34c64eed9df5640f4c517d144395e45a2cc373dafec3ff9e7064b969faab23309f1511873419c1cce8382513\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005925114790003938\",\n                            \"overall-percent\": \"0.001896036732801260\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.511350963657505194431e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"226dd250b580edbed2239bfdd268cef37fa5e8ec5f323cb0eae5a830c1e17fb8d2e45dbb0ba90e383ed95f10ed9e5593\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005925114790003938\",\n                            \"overall-percent\": \"0.001896036732801260\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.510974805135519346273e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1f2efeee18134f78a2ce7d483599358ed228eb45e1124e8eb3cc741486d6eac76bdf6dfa2450bf54cb75a71a2835bf83\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005925114790003938\",\n                            \"overall-percent\": \"0.001896036732801260\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.511282609875917428037e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"08a261d6b9a0e5eabbf07335605a97917c35158379a3a00da1065402ef7ef49759e5bedc39561182509ec0b3c171b003\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"group-percent\": \"0.005925114790003938\",\n                            \"overall-percent\": \"0.001896036732801260\",\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.533343989036187e+26,\n            \"validator\": {\n                \"address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                \"bls-public-keys\": [\n                    \"01907faf33066dfd001fa0ccccf0dbf5bac13c45a06677fd476e4a5e88b0bfe68a36bef81b9439092762f6dd053fbc10\",\n                    \"0742d2fb9e19f3956255c4b866fe2c80b37a32a9c08eab25db88ac58c7f883e1a05faa7df005b5b102d361fad272940c\",\n                    \"102fa26fee93a03582ff5dfd459d73b1ef155918b17681b2d9882ec6a541addf0dca42ab6f7b5aa298498a59befe7990\",\n                    \"01af43ece70486159d0fcbde2986037dbd6466ada58ae584c8a38f5f4caafab86835c9643b3380fe357dc19d3e97fc8a\",\n                    \"038ec53f77c4f8d58a81d9c13cfff5f1f0d57eea309bb0632fe76687a8f663c5ba83faddd23845d20ba25a359dcdf592\",\n                    \"050569b98c2fe451e981e964c13d65e0b922825d0570c51f2f8883b849c32fbc15415e71045544f803c1286037abbe8e\",\n                    \"0b70c31a49b53761b2259674a2bb28034aaab0dfdabf3cceb8ea0bdc451333b712c2d897a32578ea877a4195847cef86\",\n                    \"133acf05ac9701c81ffd1150ec12dc016b2f6083a979aa90b1f8c63619700b8d8fc85661d186dee6dbd4bbab465c5392\",\n                    \"06f8dc945fb93c437d8896ae5cfb4143c065bf525eb3c9ba1144b1c542098fee332e2b9b543d028df7bacbda0fd5868b\",\n                    \"08a261d6b9a0e5eabbf07335605a97917c35158379a3a00da1065402ef7ef49759e5bedc39561182509ec0b3c171b003\",\n                    \"0a2b57cc2a8574f56033ae74aa4e597012218bfeecaa3f3801a0dc3179b60b92cf99bac581f6b1ab8e6fb00dcc496617\",\n                    \"11c43fa0691d6f706c57f8cc85f094388bd0f6b7edc95b5167fc3eec61283dcc20c92e92d5377e37eb28bbf00c154513\",\n                    \"1471e1ec34c64eed9df5640f4c517d144395e45a2cc373dafec3ff9e7064b969faab23309f1511873419c1cce8382513\",\n                    \"1280a5222b63bc66c31176a1b321db7a5207d7a37226ba25b769a776ddbf2f50ef90d7da28fe8feed3882355c561f910\",\n                    \"133be332ca558804b26aff5e9b15ec0ff78ee201eeb48f54e7cf48a5837c9f3f88313372ff4b06d3afedda5d35a0d500\"\n                ],\n                \"creation-height\": 3371986,\n                \"delegations\": [\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                        \"reward\": 5.983148436406068336309e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0335177e+24,\n                        \"delegator-address\": \"one1g2y34thlk74u6tlkqc927sucdc2phr56mj05lz\",\n                        \"reward\": 791862125079602969689,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.57312302e+24,\n                        \"delegator-address\": \"one1kys9tkc3gu5647qnaavzus64ql7jh36ktxdefz\",\n                        \"reward\": 1.000381101018859463525e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4896238e+24,\n                        \"delegator-address\": \"one1xh02grrhj4kts9fh6y8le8k7dd7keqg0n8g94q\",\n                        \"reward\": 579420268480454569605,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 1.005927687588258812923e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3027774526e+22,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 70257866258076960880,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kjncp7r9er5cuvnxxwuw9xquwsgr4q6uqggr97\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 1.117260226733029058903e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.6e+23,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 1.711333222517008932847e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.0436e+23,\n                        \"delegator-address\": \"one197wwsy7fnkts6mj3258gysaeqq7qz8nqnyent0\",\n                        \"reward\": 941860787183585457615,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.08694e+23,\n                        \"delegator-address\": \"one1jarjmx6hvwgypj3gd58gv0cr9lnfg37ry2hw5g\",\n                        \"reward\": 1.016994711838672456092e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l672kfy4fpvkmmg6d05unv8ln6sdq6lwq980lk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 27078349076116159137,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.04e+23,\n                        \"delegator-address\": \"one16er5vnzw5fxsyy405wnv0ykrjcw6g5mj3cwqse\",\n                        \"reward\": 121025503429120542262,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2e+22,\n                        \"delegator-address\": \"one1yg5anur6l5tlj250k5ue37z539kkrrjrxg2lq2\",\n                        \"reward\": 68153866817777255442,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6e+22,\n                        \"delegator-address\": \"one1m5g77qw0qmxrta42vy9g9l2s7zdw6df8xu29pz\",\n                        \"reward\": 96658160713957713527,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2966e+22,\n                        \"delegator-address\": \"one12vq79k6nwv475khc7mmp83786wrlgslj0zllgs\",\n                        \"reward\": 205351702500165415004,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 60846690673374207951,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.052876e+24,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 97166921552791825696,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1l4dtuj5s7sj8q34urqmyev5jjx2s6t8yp28wjx\",\n                        \"reward\": 36248507265630276447,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4119605337e+22,\n                        \"delegator-address\": \"one1fql0lwnx4dyzy4z3nrfcqem0ejxdhshe4hud84\",\n                        \"reward\": 430421220851345623092,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qgkqpscscfp7frvq6enexlekj6tz4u6r66phy6\",\n                        \"reward\": 47356854492261924110,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.600056e+24,\n                        \"delegator-address\": \"one1k9nvefx0znyg4jrpvcj6mzphecxqmqa398d5nc\",\n                        \"reward\": 8.399358662449442723268e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.28886860371e+23,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 2.300022700101229504465e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.179068459245e+23,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 1583387527526095020,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.08623e+23,\n                        \"delegator-address\": \"one13xa9y2kzal5lhzmf45vd6p3r6n2qdkw8tsnyzr\",\n                        \"reward\": 301208057802471576638,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.052e+23,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 439326394539548419011,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+23,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 74071436541151537986,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.65e+21,\n                        \"delegator-address\": \"one1ausldvnqxmarafdcswmp5drtj85ak35qw4xud5\",\n                        \"reward\": 38478011769376763431,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.87626e+23,\n                        \"delegator-address\": \"one17qmr4c2zxysf62dqgj4m9kkw94c4qexpu8m5kp\",\n                        \"reward\": 519869500501291369427,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.000343932403e+24,\n                        \"delegator-address\": \"one1396xnj3chgfua3mssh5szu7lqghawsfm8luexw\",\n                        \"reward\": 484512843024769053310,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 326236910851572451877,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.57967e+23,\n                        \"delegator-address\": \"one1dm69hwemcpae6gdeaefkg0h9njvr977wzywrkl\",\n                        \"reward\": 1.288810961024039197394e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lcw9gkm4xuwrpqyjfqgz4zf5fduxrrqexnp4hf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.9e+21,\n                        \"delegator-address\": \"one1r8p9p4hnt3kx9ymvznxgfcm308md5fxwezy55d\",\n                        \"reward\": 68780356768636655900,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 28802945736598131889,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1802405824e+22,\n                        \"delegator-address\": \"one1dsvacurqg54u3q4k7p9t7k2k44rldzsjk39aup\",\n                        \"reward\": 2985959804003539134,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.55729e+24,\n                        \"delegator-address\": \"one168dwndj5xz3e3yca4wzm8x34knf5gezu3ypyt5\",\n                        \"reward\": 9.4486277976775179987673e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.8004944652e+21,\n                        \"delegator-address\": \"one1prc5xaxhrwhzr6t9npwntw5jvrtjun25hkezgg\",\n                        \"reward\": 35524619983255308758,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.000000757e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 29734448411722567706,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1fk4s3rqdfakfjqzhyw4lhs58reguqx02lnrs8r\",\n                        \"reward\": 21346315283963840997,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.568e+21,\n                        \"delegator-address\": \"one1e504ehgs8n3llhs2g8jc7zukcjp4kscduh0hwr\",\n                        \"reward\": 27742697106347355064,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.754750989125e+23,\n                        \"delegator-address\": \"one14kjc4vcd6n36xjye7z78rszljmncm3msa6p2qk\",\n                        \"reward\": 338037085531284174440,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1npcp2tagsewhk4q7wy729azttw8rey9er74zrq\",\n                        \"reward\": 4891962527123719471,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15gmk6l5df6aczsh0jx3hsk59kk26curq54u6gz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.79689840437e+23,\n                        \"delegator-address\": \"one1wsy0f9p245mugshnsud7se805htq3sram33ek0\",\n                        \"reward\": 2.522271700603315564101e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 123032817490860500757,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.315e+21,\n                        \"delegator-address\": \"one14kr7gvrrmhvfa3p30q8tmy8nkrlqtcjpce6jqq\",\n                        \"reward\": 13476779237880029589,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.22061e+23,\n                        \"delegator-address\": \"one17mquutrtzjecd0sgaqf3q5ncemxvwg3snve06k\",\n                        \"reward\": 60539789064582987594,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4511e+22,\n                        \"delegator-address\": \"one1e0v6q5fl9383rhupnhhwgeqc62xy7p23znd4cz\",\n                        \"reward\": 105825332900496258523,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.63e+22,\n                        \"delegator-address\": \"one1kj7s0p7mg200j6sjtljj9yv52tem9jja3qt80k\",\n                        \"reward\": 369168037350029189220,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1lj4fj7tz2ftp6ahcxsk07usqvaedu524den8kk\",\n                        \"reward\": 4454761718881793559,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 2123423766589640296,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 76662909032952128059,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1athys8vztd2gwkt20w0k48kmywhxle0j3u6q0w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one105jk2q4cnx3lt8k4desct6phta6lhqv8e265ya\",\n                        \"reward\": 207632653852000700072,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one1d0w5upanuqxwwkt4eqd0uxa64mhx58xafrmvhl\",\n                        \"reward\": 2.407703817320714436714e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wma490dp0qd5f085er2d0yj6apgajajv5j4xme\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.099e+22,\n                        \"delegator-address\": \"one1mp9hnvwm5tc7hjuwge6n4llarmxclget7r93rz\",\n                        \"reward\": 435000664542867118647,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e0a43e43kvlw2uzmmk3xv93t6gcz5mr4whr974\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1tmn4dxdntlsmvf43mxudkfpva3rtwvuylqyyld\",\n                        \"reward\": 584111696247338773861,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1awzkclvn9vdennul9m7ftqdwfwftwyhuqk4yta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.29001e+23,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 402280280785140353701,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17td8n6wa7l57gj727gl4u3z7hn7mpyftj9fhef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1qpczdf6s376y2qay80ustlr5k3lvtml6y4j5az\",\n                        \"reward\": 1.736585075546527092245e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.008e+23,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 1.508150922553316451919e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.477e+21,\n                        \"delegator-address\": \"one147w9xun8eqrdg6yka7ejnr4mpjwupl4pgs9dtz\",\n                        \"reward\": 20732364683117998220,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1utr8dmfygm8xn2n5t4fhalhs9tagpr2l6dwpzp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one19sdf30xtcpys95gwd2j8pxazt628am20m2vauw\",\n                        \"reward\": 70184037519017086242,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jlz369f2t09hy8pwwg85kdqqfw690rt7nfjeta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.000461269e+21,\n                        \"delegator-address\": \"one13v02w4pt7f3vcdarqnhywwymymaadhjsrg5d5w\",\n                        \"reward\": 38543937234927911682,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12ayrjxs8rkl3zhuczkrpflpr3fxqvkau9cx3sr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+23,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 165322826112013722940,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10dlpldqlpf27vdlcafrfj4augx47lmjms7ev70\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1g4u3hy78vux7mtqerfqechx7q7seyg6avtnq4h\",\n                        \"reward\": 28133339730468107387,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1mh74g5fukxlvpxjjpteq3wxtla0tnuz2z2e6at\",\n                        \"reward\": 30078213046905833614,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.728511066995e+23,\n                        \"delegator-address\": \"one1khpmdjyc8qc9ye5np6dpe2paqrz4e2jxymwpj2\",\n                        \"reward\": 6.189664579903263810125e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.3978591035e+22,\n                        \"delegator-address\": \"one122uq95m7t63rcvy6jd8jwgf96x8hfv63q9m9hh\",\n                        \"reward\": 5265234637163124497,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.6111e+22,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 182766590701657525,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xcy78f2hs6wmxxtgm7u5gwtc73m22mm72yj0c0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.000077301e+22,\n                        \"delegator-address\": \"one1llnqqpepyjlpmhr96zhrqpf7ekgd3dhx3jpscf\",\n                        \"reward\": 6170887493878606431,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.0100056e+23,\n                        \"delegator-address\": \"one1vpslanr565n5v3qd0q7gt3j2cz8c3jj9ye7r43\",\n                        \"reward\": 489225487014428365926,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mmmjjq2689gl7eyf9peaj7tcu34s3a2243sf9m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.43992e+23,\n                        \"delegator-address\": \"one1dnh7wjg8mkvru3fantlqcazsrw3ma6ucdkqvps\",\n                        \"reward\": 223050180115369996111,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ddcmhnet00ryqjtmqzzguq3j352g6da2724puw\",\n                        \"reward\": 1067619832828306435,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.9646895137e+23,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 369204134217994609028,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.95e+23,\n                        \"delegator-address\": \"one1ek6nkv3d9k62zl0kkdza9xrktvhz4j2dhsuhcg\",\n                        \"reward\": 2.37405956568746375656e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.702014322e+21,\n                        \"delegator-address\": \"one1kl6wxrxhxualmrl5fshqzvs4unq5cc38esf85q\",\n                        \"reward\": 3794797095922053166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 110461807332097949837,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 2e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 2.6832e+22,\n                        \"delegator-address\": \"one1n24e0eqg0ajwf2ehtvy0fw02ruvu4955ks27xg\",\n                        \"reward\": 32305949473918375,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.955e+21,\n                        \"delegator-address\": \"one1qnn5c20aymv7v3hjmewvmpewc0w8sy8hceqqaq\",\n                        \"reward\": 71212025175647236494,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.12e+22,\n                        \"delegator-address\": \"one1lncya8swehqpd3vl8xadwcaye7hh80px40rrs0\",\n                        \"reward\": 93751241150118150483,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one1780hukztd6ty8f7z6z6wye0j6hez3ds8jydg5c\",\n                        \"reward\": 17004283951938468507,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 124382243574441565,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ex8lpdj9tzu9wpfgupea04z3m2nh9rqyjefnx5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.11e+23,\n                        \"delegator-address\": \"one1r97crm8uptghenwar2kwdnsy56t47kw2tvkupr\",\n                        \"reward\": 245083300773143060148,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dhs6n2mk5eqg7qlgwfwlldmxtnrequ2jtk2832\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tnway3f5c5vqpuvsa2qjgsua4t08kehpzq65m2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 38587572576860069,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jg7dty0ft0q8pk0tucmkhqjh2h4449lxx2gtjr\",\n                        \"reward\": 111894251980482361,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.79999999815e+23,\n                        \"delegator-address\": \"one149q78p2h2g6qfvd60kdttmgq50v9ftnf5n040a\",\n                        \"reward\": 239033458295166898956,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kvcps7vmga2mlzk8lzlweefqz6xpnfm53umywj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00104278127e+23,\n                        \"delegator-address\": \"one10steweqwvh3gk4cu9v85z53ndjrt0c40e9pfsj\",\n                        \"reward\": 102524429743603318109,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one133z76xlp2dysfzgjeuc6asf6d882cpn3m40den\",\n                        \"reward\": 41045028984386584873,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 4.76208e+23,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgsdhg36jdsst6hpagxxum3ncmgax5amqawptv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5131e+22,\n                        \"delegator-address\": \"one1znlpkkj0as0mgf6k63l29d6mqf4sx4u5nchdxm\",\n                        \"reward\": 25757013777187622543,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.15e+22,\n                        \"delegator-address\": \"one1xjq4xf4uhd9fyszvm2aw63j4hvhcddn0aq4hg7\",\n                        \"reward\": 511411249988024774,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.401443788e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 85958015027549173796,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+22,\n                        \"delegator-address\": \"one1m7ea57j3nxuctq8r2nyrxh657fxuzjc2d36h5v\",\n                        \"reward\": 59966799640026783892,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.2e+22,\n                        \"delegator-address\": \"one1r3cjxvlvjrhq3537yswks43tfprn8vzahwdu94\",\n                        \"reward\": 13157265650802465977,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+21,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 12521481040514871595,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.8803e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 89170775875939570549,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+21,\n                        \"delegator-address\": \"one1sdp4lyruf8ruk2x3xyyremdaq2ck0xxw9n53x5\",\n                        \"reward\": 38220020437364453746,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.00478e+23,\n                        \"delegator-address\": \"one1jyhyhtrrd5qa50f8cgmtl7t8xzsyrag2nwczp8\",\n                        \"reward\": 287448238380096533382,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 118348998348477661839,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ksemd8htnmw9plclg8wjrqql4rnax7kqpzrfy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4784201969e+22,\n                        \"delegator-address\": \"one13k7vlreqgy80w4kvkqknpgsvp2ux92lwf0kssa\",\n                        \"reward\": 108847918117063846346,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one15h9yu7x6myf8sacrra0qzsc8mtfs0fdtj2faw6\",\n                        \"reward\": 8371071544532132139,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.2474967403178907824935e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 111717523145366869541,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1jm9erjgeudx44jxvpyr09u2wevfrjykuvch5kf\",\n                        \"reward\": 167421430890640706885,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3566461069e+22,\n                        \"delegator-address\": \"one1d33sufcyef8k4eedfj84akatekack9suvmc8ru\",\n                        \"reward\": 185554334176904287941,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3504499977e+22,\n                        \"delegator-address\": \"one14m8mtlzu6gk9557ya4nv004lew0ve2tf3kxhzp\",\n                        \"reward\": 25498782801270173342,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+23,\n                        \"delegator-address\": \"one1ugcjmc89hdju06s6s3l7ypevrhvf3yzhl68zea\",\n                        \"reward\": 2.098030318017073390786e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05e+23,\n                        \"delegator-address\": \"one17zh0n602sshq3akqfrxsfpkyj7udmkx4glwy2u\",\n                        \"reward\": 10860758562217345038,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qa4cn2u9axkz545ys6mlzk37erl365xqmn3nxd\",\n                        \"reward\": 15008406870254227630,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1sl9rej68ymcdxjldqnwh6rz9mrxw2h7wta6x7q\",\n                        \"reward\": 8262989097910303105,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1shtfgjgu099ygdkas8gp6akje3xnf6kw35xeh5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.095805092e+21,\n                        \"delegator-address\": \"one1nsycmjwwe0fcdtzd4a3tgadfw76jxkuyhzsp4f\",\n                        \"reward\": 8216317586477046041,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 13368852908439048734,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one1cmeph4v694phwfs0yz6saeuan4knmvxtgpvhf0\",\n                        \"reward\": 116031288036635294830,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.66121223122e+23,\n                        \"delegator-address\": \"one1eq3ratczrnpct6hpn384rvy9njyzq6cparn2pp\",\n                        \"reward\": 1.995369889805273597281e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.000000999975e+24,\n                        \"delegator-address\": \"one1q4h79q70fjmfzfxaak5j8vxpygawpr9zty5gz2\",\n                        \"reward\": 507387669945874425166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.455247e+23,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 1.478285126261813007463e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.0184198847e+22,\n                        \"delegator-address\": \"one160jydjptac26mnvauqtgejvy2jx549sahmqxxf\",\n                        \"reward\": 162143850791221530246,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 87999557031874567352,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.15e+22,\n                        \"delegator-address\": \"one1jg5marhgzswdcqude0ld6qd7ndwjun9l3d9wxh\",\n                        \"reward\": 22561839239013921264,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 110028646989722427805,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.835000931118e+24,\n                        \"delegator-address\": \"one14z84r4a4rhl3n09u0kra222vev4sh03k9f52jl\",\n                        \"reward\": 2.8754735513221234765901e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.173e+21,\n                        \"delegator-address\": \"one1aul8ywp5wdzwnf9j7fmc9ucrvvry8czq68kvcp\",\n                        \"reward\": 11029960582894839118,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.54000322768e+23,\n                        \"delegator-address\": \"one13usnsnxwuaz6wqt2fuynk8p6xg2dvah6dwyf62\",\n                        \"reward\": 1.851222522874397045265e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.905e+23,\n                        \"delegator-address\": \"one1z9fvhzdxn76rdckva824xvvhlpd8rt0fnv404c\",\n                        \"reward\": 452058521493052289802,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1t6ynwcj7wtd2t8lpcwdxsgzh2j36unngd3l4u2\",\n                        \"reward\": 33366637571444775707,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yy96kgumhfw6tjwdkxtspju4qf0sc9ay4tf50s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rjc3pnzdxdgghsdxvnlg386vzkuyzw66e4yvlr\",\n                        \"reward\": 462617519125278835,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.62178345768e+23,\n                        \"delegator-address\": \"one13jvy37vzaem782f8a8c8kmhuzw5pp7xvqqx8f2\",\n                        \"reward\": 106431723647536895481,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 258021153847516171624,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1atdwrxe98t8kx2cy9r42qjvuslps7dqtxtn6aj\",\n                        \"reward\": 53224267830961837080,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.085716635869e+24,\n                        \"delegator-address\": \"one1mta85467cfp3qhvfcksxjf74m4f6fd8vagpwhn\",\n                        \"reward\": 2.309683985926848528e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 108354676392658243896,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 25062845716610618686,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one1lpy9wdzcvyek6g629zzv728lnpmxqzqyxhvpl6\",\n                        \"reward\": 3740775098490669612,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6802545616731177199,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+23,\n                        \"delegator-address\": \"one1983tu4snhurnned0n25jn55s4v7rmkknvqfu8g\",\n                        \"reward\": 387648215120943815616,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                        \"reward\": 61563596250052185773,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1d2nafxk24ufu2rw3q96am8juun9jjct346rq2v\",\n                        \"reward\": 307817981250261069360,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.75e+21,\n                        \"delegator-address\": \"one1255krzxrjvkqdd05jmykehrn7qn8f5av8wgaut\",\n                        \"reward\": 10773629343758994078,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5e+23,\n                        \"delegator-address\": \"one1wvaxshh8c7kxda02c5pszvme564274x3uaywek\",\n                        \"reward\": 238651494797742836776,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n                        \"reward\": 545978843992157915312,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15xsj5dfqxes7dxwa02cpfdvzdvmzg2vgtchkcx\",\n                        \"reward\": 32002192460559633355,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 1.56323229737e+23,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one18pfvm5jwueyuwzkxzux69ln205zzwenwqunfeu\",\n                        \"reward\": 22996447201995834645,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1qy9mum6mtp5j5u0y3ekaqn8quahvsezavxwu32\",\n                        \"reward\": 24873396862260612389,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.025e+21,\n                        \"delegator-address\": \"one1gmdfmdn4r0xnhjv4atrjuqu75lp5c7n5stzra2\",\n                        \"reward\": 1544524782247867099,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.803061e+24,\n                        \"delegator-address\": \"one1m49vajm7vtsvl5fxvy75kfnulsxx4uc2lv0dgl\",\n                        \"reward\": 1.1100291941821532226828e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.64055206805e+23,\n                        \"delegator-address\": \"one1fnrlvje767q02th6xgln763xvplw5pswwkj77m\",\n                        \"reward\": 1.57542791213692063727e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18tjf47kcqj5vxm79kffcjcz78cd638m7aa626c\",\n                        \"reward\": 1755220189266454613,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 9115466615311610453,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1000000000000000000,\n                        \"delegator-address\": \"one1m5swd0aqzfkp4mywurxfng5wk46rvcvquv2g7j\",\n                        \"reward\": 4940573936318724,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.8005e+23,\n                        \"delegator-address\": \"one1zhy3d3j0322vl93wmukw4qmwgz4axqtlg33y9a\",\n                        \"reward\": 48336565278870650513,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.085e+21,\n                        \"delegator-address\": \"one1fcuf5rkhj9xsn8svmk6fns240rnsag5jx8vv05\",\n                        \"reward\": 28204111320956794653,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1te2tfurcvk678g9j5u920l72jdz58fr0lrkpsv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+23,\n                        \"delegator-address\": \"one12cswq02gkn3r5cfpy3t0ep0vn2t3cvn3a38ltn\",\n                        \"reward\": 282320992535803773857,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+21,\n                        \"delegator-address\": \"one19jvw9uruqem0hehduv95km63947p4cvxfgnsg0\",\n                        \"reward\": 7670926972789400693,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6e+22,\n                        \"delegator-address\": \"one1qp54xf6rptk2559wg0v8yyh2f0kz0qh0g7088f\",\n                        \"reward\": 21491223269853212980,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.1e+23,\n                        \"delegator-address\": \"one1fp2nnpwyjzy0j68j38p6x9vcp8e7zzem3nt9e9\",\n                        \"reward\": 422208492138493544667,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.574504716e+21,\n                        \"delegator-address\": \"one18cj3m04q7zwk27v2erw3ss5dakyh6xzc0kl8pn\",\n                        \"reward\": 288336783325544632,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one1pgu7fxnu6t6maj7qnd952xq9f5c4dty7tdvf8d\",\n                        \"reward\": 462111621108747481499,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rr5n6qvjxlyhrhnkzxtjslzffrp4trl3wtsuh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.053e+21,\n                        \"delegator-address\": \"one1d9vl22yqm43ut87wh2c2lja5yt55jwk62q74a6\",\n                        \"reward\": 4014201945393262800,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vh2pxsm52m73k9vedcppmx9jgrdawevkfge9er\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1yxfylrfm3r2vee07kynwjc605nq5nu2suff4me\",\n                        \"reward\": 388791116720128806052,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+22,\n                        \"delegator-address\": \"one1d7rudy5z7tsp9th0c8m3p527znu2lxuq8wd0qq\",\n                        \"reward\": 176929290134033982284,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10z6ssedgr9a46ycyy24m4czy35qmjthcxft8z9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6406e+22,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 46138467374388432992,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 16378344356661034979,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1j3frzp0l0ex0zhp4ft7w6kp9n8rmnj5962gasr\",\n                        \"reward\": 5248921100366397956,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gg8p84y09svpxa5xlqc36v4epwyjv8mk0cmrj5\",\n                        \"reward\": 1131561395234801530,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cakutxh9emrat3v0gxs3ueuz3pfxtrfhmjk7k6\",\n                        \"reward\": 20478379088434682088,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19mqs8kpuu3vzytsq5gmxauxv8g6yf4j93mll7j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5uxq78rvnlzx0janmk23q4hcwsexv6q70d7jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+23,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 487198309606468480192,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.29e+21,\n                        \"delegator-address\": \"one1qka5ahyct3k4hc6gqujedyj9xq3d68nj0ws4st\",\n                        \"reward\": 2483908384529948603,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1l6v5djd7ss7axpfxgr9rq2v2chp3trnvhzl7aq\",\n                        \"reward\": 5545229012932196580,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.005e+22,\n                        \"delegator-address\": \"one134ujy0hvfu4eksfprrpawyn6szkmg74cdd6zwf\",\n                        \"reward\": 15657689375584037422,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.724570635119e+24,\n                        \"delegator-address\": \"one1z62wq6ucttx2ksj5v3s0vk0hup7xg0yez8qkyw\",\n                        \"reward\": 839685952177777139090,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1a869ad50qkw0446x3q3mhzx7fm0azx5fvcu7wk\",\n                        \"reward\": 31159580846933538259,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.115e+24,\n                        \"delegator-address\": \"one1cgg0myd5n29te0t2qkmefd6ttv54pvcd8jec4d\",\n                        \"reward\": 611185273905632281339,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.75e+22,\n                        \"delegator-address\": \"one1ju2tg5mcqqz2n2tjq3l8ngfdcu47gg8mwxlus8\",\n                        \"reward\": 44897761953615507519,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.3774738e+22,\n                        \"delegator-address\": \"one1e8uzznvvrtxfrahvy5gugtk7fdux3t7hcmd8lr\",\n                        \"reward\": 10948025920344363713,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one1xdpqw72hseu8z99y9l6gjg962j3a9kw5zmkews\",\n                        \"reward\": 3683918929527383584,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one14xvqeuw9v6mqarw5uathtys6wc3r228sdyp7hg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1kh5pn90gclnqwm2hwe7d44nzywes4r7rxjmuah\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one15m5p65tgwlkc3r0xqvy3fdpf7ae7hfkma5647h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Harmony Foundational Node operator since Day $ONE. 💰 Stake with us to help invest 👷 engineering time into build 🖥️ dashboards for you and Harmony. Experienced Proof-of-Stake operator running Harmony, Cardano, Cosmos and Terra validators. Based in Silicon Valley.\",\n                \"identity\": \"🌐 KysenPool Dragon 🐉\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"🌐 KysenPool Dragon 🐉\",\n                \"rate\": \"0.035000000000000000\",\n                \"security-contact\": \"support@kysenpool.io\",\n                \"update-height\": 3676301,\n                \"website\": \"https://www.kysenpool.io/en/networks#harmony\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1flf62ytjdd9narlkxkz7zwzzakp09hfnc463lq\",\n                \"bls-public-keys\": [\n                    \"767bf0b7e2480b2a2352be0bf2bcc90a677005da10dc07efa99b93358c95bc95abbfdbb3f2ce8be4afe143f28ce1df97\"\n                ],\n                \"creation-height\": 3372373,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1flf62ytjdd9narlkxkz7zwzzakp09hfnc463lq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"The first communist node. The only honest node that won’t raise fee after you join it. We work for the good of the whole world. Forward to a bright future, comrades!\",\n                \"identity\": \"Stalin 3000\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.000000000000000000\",\n                \"max-rate\": \"0.040000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Communist node\",\n                \"rate\": \"0.040000000000000000\",\n                \"security-contact\": \"@Agrest\",\n                \"update-height\": 3372373,\n                \"website\": \" \"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.831845528732078954\",\n                \"blocks\": {\n                    \"signed\": 15102,\n                    \"to-sign\": 16384\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.831845528732078954\",\n                        \"epoch\": 186\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15100,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 6.275179603135801283996e+21\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1qa872qeh25g0lexnvgq0a6apdz79nyvrus70uw\",\n                \"bls-public-keys\": [\n                    \"0dfa0979c12a2b46b94740d110361f42bd3eb4d5dd08e980808b22e85b730608b4acb9666d0608a2d5ee1aae99931498\"\n                ],\n                \"creation-height\": 3372439,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qa872qeh25g0lexnvgq0a6apdz79nyvrus70uw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cl46vhd99u6rhtyuqac823a0cp3ggv293yd0kj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jpxwmkc4ad7p0p66ya6vl3c379qwhuywqrq95v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Plus ULTRA!\",\n                \"identity\": \"Plus ULTRA!\",\n                \"last-epoch-in-committee\": 186,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"One4All\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3372439,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 136033,\n                    \"current-epoch-signing-percentage\": \"0.999390225983719768\",\n                    \"current-epoch-to-sign\": 136116\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"46582295537314603326088500.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.113292656912712729\",\n                \"blocks\": {\n                    \"signed\": 2734476,\n                    \"to-sign\": 2748885\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.116800117880340831\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.119326378821154389\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.120420735920002228\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.111912608598627511\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.117081902052938767\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.100708489977246785\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.110837834310687154\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117934239360149172\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.115650637434088922\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.113331587889813232\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.108190311300980832\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.113281948277986138\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.114663844573284914\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.110692834587490285\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.115287293374594566\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.113558747845692730\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.111752661417818419\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.085177740129985720\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.111692438340196899\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.112075381858944166\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.109580441695577988\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.110915903454914671\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.112553024810047643\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.112080975663402928\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.112838457006092366\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.112413782763909528\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.109999234609639251\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.109442582826555070\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.109754952034727710\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.111109845290930919\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.113292656912712729\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 156346,\n                            \"to-sign\": 156964\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 182066,\n                            \"to-sign\": 182340\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 176929,\n                            \"to-sign\": 177150\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 172697,\n                            \"to-sign\": 172850\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 178041,\n                            \"to-sign\": 178210\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 167827,\n                            \"to-sign\": 169290\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 174636,\n                            \"to-sign\": 175880\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 170173,\n                            \"to-sign\": 171060\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 170809,\n                            \"to-sign\": 171852\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 187869,\n                            \"to-sign\": 188650\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 191248,\n                            \"to-sign\": 191928\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 196529,\n                            \"to-sign\": 197395\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 231002,\n                            \"to-sign\": 231612\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 61887,\n                            \"to-sign\": 62156\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 40776,\n                            \"to-sign\": 40844\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 36907,\n                            \"to-sign\": 36951\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 63426,\n                            \"to-sign\": 68332\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25298,\n                            \"to-sign\": 25309\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13977,\n                            \"to-sign\": 13996\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 9.26805395971678506736348e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.779283554623667089892e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f7f8425f0d57c469cfa7dcf2af856792c1ab07e94762de09d53e39b4897e9b75f865be8ffc2f2bab8c88f177f86f3c01\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.779273647821793469089e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1fb8c58a2d557f659cc11f423df5efd7eb9e7160b3d77425dcfb650a5714c640aa3997e548462c82fd65a122399f040d\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.780036093776283232023e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"248288b3a44b0775da68d6cebd4fdafb45cc8e7e4b90606c0ce174b09c941fec361b61935aa77746a98eeafe11b81689\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.779907935797895778149e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"eb2bb03ff0a8502769d3718469bdd4acf592d752b372d6c184530bc19c13fc18786d4301a478f0572b22a8e42553f409\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.780425515419772118808e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"22ef49408747a9553e4a3f77832a15aba9294f8ff22ac9566826b384ef1c2b4eeafc791c19f729393f4a1a08190f3d19\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.780157496122837155983e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1a675b05b7787b10c0cdbc08a1ed3881a841082ab0b62bdfa7fadec77a02aadedc3d47c096c598d403a2c06410f51281\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.780047739478673619876e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7fc4ee1eaa81a6287c6d9d94b13c0f8f6c5ef4da02a44905220a57e2dadba6a787cca7c0804c760247458c0835f28681\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 9.41522595418462e+25,\n            \"validator\": {\n                \"address\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                \"bls-public-keys\": [\n                    \"eb2bb03ff0a8502769d3718469bdd4acf592d752b372d6c184530bc19c13fc18786d4301a478f0572b22a8e42553f409\",\n                    \"f7f8425f0d57c469cfa7dcf2af856792c1ab07e94762de09d53e39b4897e9b75f865be8ffc2f2bab8c88f177f86f3c01\",\n                    \"22ef49408747a9553e4a3f77832a15aba9294f8ff22ac9566826b384ef1c2b4eeafc791c19f729393f4a1a08190f3d19\",\n                    \"1a675b05b7787b10c0cdbc08a1ed3881a841082ab0b62bdfa7fadec77a02aadedc3d47c096c598d403a2c06410f51281\",\n                    \"1fb8c58a2d557f659cc11f423df5efd7eb9e7160b3d77425dcfb650a5714c640aa3997e548462c82fd65a122399f040d\",\n                    \"248288b3a44b0775da68d6cebd4fdafb45cc8e7e4b90606c0ce174b09c941fec361b61935aa77746a98eeafe11b81689\",\n                    \"2be84d684be1889539ef956f96ff2af5c50ca948e419f2fb8fbc13902ecd12ff9874a4291da12160c3ec740376f89b85\",\n                    \"525f07fe40e46bda5f83d78c821d1a1306d721ebfd17883d44f1a8c11ff815423e95c36ebc2802c0b16969caadcfb789\",\n                    \"7e999839fa4db56f137d16a4d986f876d6203ff3d9041298c348a6f697b887cfda7a1f7fe1183c67c9fc5ef32c40c381\"\n                ],\n                \"creation-height\": 3372531,\n                \"delegations\": [\n                    {\n                        \"amount\": 5e+24,\n                        \"delegator-address\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                        \"reward\": 1.77172931706856894862594e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 153848631844800105166,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0499997897e+21,\n                        \"delegator-address\": \"one158uc245ezhm8zak3fj2jvw3paz9j7knhyk8uyc\",\n                        \"reward\": 8135947132434825777,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.145e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 33087794255381469413,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gza4u23qrlzgc8lkccsk9lp0wf3q5qxva367nq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.2118573539e+22,\n                        \"delegator-address\": \"one1t3mw0rw3hy8tr9k4snlaq3cq5yxd00lxjaylwn\",\n                        \"reward\": 209209170997887351832,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one16ymzfqvxyhjr65tk94ql693398dh9tpyd6e9v4\",\n                        \"reward\": 225619156511899033600,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 57661256187004263238,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5e+21,\n                        \"delegator-address\": \"one1cxcgfqdmzha83nlhrw22lqr4seet5y4sufvqu8\",\n                        \"reward\": 92502357444983892374,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.19015e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 64022470793639328387,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.7406856472675e+24,\n                        \"delegator-address\": \"one1fseavu2wexuvcptqyu6kvj9es5t6tgm4jmmq4l\",\n                        \"reward\": 5.4829900310130696869306e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.1047710900780091466987e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 9606771034432849451,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6468073838766555113,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1737670818852371515,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 118707699315094137,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.85444532125e+24,\n                        \"delegator-address\": \"one1um3qsvsku2w6edjfl0k38emd64wv5ftmq0kfu9\",\n                        \"reward\": 8.863102836358709644659e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+23,\n                        \"delegator-address\": \"one12cwc8q4r2c6wl6a797ksxgc0njs8j4yshavkky\",\n                        \"reward\": 286671845303859173527,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.3e+21,\n                        \"delegator-address\": \"one1pcnt5c4t5r8v2rtp26tr8g4eykf64ld9qr0pgf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Stake  with Granny, who is always reliable. She provides Validator services exclusive to the Harmony Protocol and only loves ONE chain. \\nDecade of cloud infrastructure experience with best of breed security and performance practices.\",\n                \"identity\": \"granny.one\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.330000000000000000\",\n                \"max-total-delegation\": 2e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"granny.one\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@granny.one\",\n                \"update-height\": 3477407,\n                \"website\": \"www.granny.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1d9sqruv88cs2ay4frwe36ftg77u4xsj3fzlqfu\",\n                \"bls-public-keys\": [\n                    \"a5817162f2789fe1915fca922e05757f5661b73f02dab7cc02e5fc752981786063ebbd82c29d717947970fa554f07607\"\n                ],\n                \"creation-height\": 3372537,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9sqruv88cs2ay4frwe36ftg77u4xsj3fzlqfu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Looking for the real ONE\",\n                \"identity\": \"The Real One\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+23,\n                \"name\": \"Karolina Validator\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"Karo Chavez\",\n                \"update-height\": 3372537,\n                \"website\": \"www.KaroStaking.COM\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 15124,\n                    \"current-epoch-signing-percentage\": \"1.000000000000000000\",\n                    \"current-epoch-to-sign\": 15124\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"6654613648187800475155500.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.094817724278242787\",\n                \"blocks\": {\n                    \"signed\": 518441,\n                    \"to-sign\": 531817\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.115202041880803029\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.121229808195977821\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123291488048679045\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124531390310700057\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123535245469490854\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121729788975569646\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121575216799946571\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.119801885566736796\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122493821940449247\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119221043793965655\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116713960761038917\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117383333567431260\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116543381526828281\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118892558763983420\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119813309639848238\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120542196817780421\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117181028742040390\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118480123351231045\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120089349280905023\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118205414505878518\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.138830542592197084\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.075768847062359501\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.094459514351679552\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.094199199648108639\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.093864175581577918\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.092268179163153491\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.092394706607809689\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.091789989456595043\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.091951201493071628\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.093110445366797596\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.094817724278242787\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 17406,\n                            \"to-sign\": 17418\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18234,\n                            \"to-sign\": 18234\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17715,\n                            \"to-sign\": 17715\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17285,\n                            \"to-sign\": 17285\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17821,\n                            \"to-sign\": 17821\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16925,\n                            \"to-sign\": 16929\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17588,\n                            \"to-sign\": 17588\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17106,\n                            \"to-sign\": 17106\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17164,\n                            \"to-sign\": 17165\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17150,\n                            \"to-sign\": 17150\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17448,\n                            \"to-sign\": 17448\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18147,\n                            \"to-sign\": 18147\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 42816,\n                            \"to-sign\": 42816\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82942,\n                            \"to-sign\": 82942\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 61266,\n                            \"to-sign\": 61266\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 42532,\n                            \"to-sign\": 54669\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 45385,\n                            \"to-sign\": 45950\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18387,\n                            \"to-sign\": 19044\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.83808684193504832239008e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.777306753455970097916e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"413ef5bc7ce1ebaf352011ba39106d8fe63b181462b49978649425a95f563e0412ea0a48a5dddd4ba2d6135375a36999\",\n                            \"earning-account\": \"one1427qn37jngpu78lrdaw5e0q923jjcjkcra3t84\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"8190461893344000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.4082621e+25,\n            \"validator\": {\n                \"address\": \"one1427qn37jngpu78lrdaw5e0q923jjcjkcra3t84\",\n                \"bls-public-keys\": [\n                    \"413ef5bc7ce1ebaf352011ba39106d8fe63b181462b49978649425a95f563e0412ea0a48a5dddd4ba2d6135375a36999\"\n                ],\n                \"creation-height\": 3372722,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.3432979e+25,\n                        \"delegator-address\": \"one1427qn37jngpu78lrdaw5e0q923jjcjkcra3t84\",\n                        \"reward\": 892235683067979881117,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one19665lwwdn5ny5khdrqpfju0ze8wec26yqqkkf7\",\n                        \"reward\": 94633421475204035645,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1deupw3nqnpmyy2sjsjyfxw2l57pnwchvy0m0gx\",\n                        \"reward\": 94629390781269908363,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05e+23,\n                        \"delegator-address\": \"one1775t8mfxsfm3fcpqsgn7ncljr5f3hp6pfdlw6y\",\n                        \"reward\": 198713256183405117482,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.6945e+22,\n                        \"delegator-address\": \"one1cn4z0h7yr9dwjunrh9l58syt9dv2xwnqukgemh\",\n                        \"reward\": 88839966167464799385,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.17697e+23,\n                        \"delegator-address\": \"one1r0zj3v0n9v6ltyhunlzlf0fnlnwgwyyk3jlqqh\",\n                        \"reward\": 2.647362284258466013056e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.8e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 78039116436313988839,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1596345395879051775,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 5621399519927761903,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Hashparty Harmony ONE Validator. Overpowered and 3x redundant AWS/EC2 Linux servers run by experienced admins and pool operators. We have 3 nodes across Europe, US-East-1, and ASIA regions with 100% uptime for the last 24 hours and active rebalancing and optimization.\",\n                \"identity\": \"HashParty\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HASHPARTY Global ¯\\\\(◉◡◔)/¯ 3.33% FEE. AWS/EC2 w/3x redundancy across US/Europe/Asia\",\n                \"rate\": \"0.033300000000000000\",\n                \"security-contact\": \"hashparty@protonmail.com\",\n                \"update-height\": 3376219,\n                \"website\": \" https://twitter.com/0xhashparty\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"1.346072673285968580\",\n                \"blocks\": {\n                    \"signed\": 40412,\n                    \"to-sign\": 40835\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.891053953797054541\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.346072673285968580\",\n                        \"epoch\": 187\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1544,\n                            \"to-sign\": 1544\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25338,\n                            \"to-sign\": 25345\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13530,\n                            \"to-sign\": 13946\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.555609654274323647692e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one180mfv4dneefp9g74duxhspjvkmcjffstd0sj6q\",\n                \"bls-public-keys\": [\n                    \"714fb47f27b4d300320e06e37e973e0a9cfa647f7bdb915262d7fe500252a777f37d8d358dc07b27c7eef88a7521ad06\"\n                ],\n                \"creation-height\": 3372909,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one180mfv4dneefp9g74duxhspjvkmcjffstd0sj6q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165j823cj3mhfva8xly4488e395d3hltq2euqnm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16lexpnvm40w7dj7u328stxdnxyzv4n6ypd9qum\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1623ft30ls0zp0jafc427a624vlquy924vseukr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ka8rvmmmw4gale8mmwse2fzp0zqasy99tu2nz6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Staking Made Easy. 100% Commitment to Uptime and Security.\",\n                \"identity\": \"Asymmetry Ventures\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Asymmetry Ventures\",\n                \"rate\": \"0.008800000000000000\",\n                \"security-contact\": \"harmony@asymmetry.ventures\",\n                \"update-height\": 3372909,\n                \"website\": \"asymmetry.ventures\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.117510811046193988\",\n                \"blocks\": {\n                    \"signed\": 83012,\n                    \"to-sign\": 83557\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121451859800505068\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121448751468020845\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.122267079654048691\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125861526049384550\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.118968118290940511\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.124750631402062914\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123616235585221238\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.119161239218858512\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.116423051230771837\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117465163000098276\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.114210247623016593\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116406446951355007\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118971105554292029\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.118211760237932631\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119667707046292860\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118748558007928523\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120970202349580192\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120448327114089969\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121443749843400481\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120883845489768753\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120886888917210324\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.123285504777897540\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117035753760343750\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118231033779185251\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117234615761192525\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117919930520944808\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117762899568086182\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.116945649444438123\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118247542979906431\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118003169880496313\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.117510811046193988\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 302,\n                            \"to-sign\": 303\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 23989,\n                            \"to-sign\": 24088\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 31105,\n                            \"to-sign\": 31274\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 27616,\n                            \"to-sign\": 27892\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 3.0669990590915330734156e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.7e+22,\n            \"validator\": {\n                \"address\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                \"bls-public-keys\": [\n                    \"879230eecfe6297b0bd6d2f2dbf23c367b54bfe1ce2fd3591a00820d06c83ee31da6c70560251955ad5e542e16aac38a\"\n                ],\n                \"creation-height\": 3373242,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rsswq9k7yq47mv7mrpc28ngq7mrn0xhnhe7mgk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one108acxe4v8jacnvzpvy5laufmhw0a5rd8d7zsjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wmz9574u0w86hza0ftxvqtuas6j7jsvgjdgjat\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wsy0f9p245mugshnsud7se805htq3sram33ek0\",\n                        \"reward\": 5368633903789263194,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zds3yfq3duelych87e6prkgjsc90emmtqk5nwv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+21,\n                        \"delegator-address\": \"one13s9upxk9rsvy8e8dn65s9w54kd4e3yx8lxw5hr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Edi Fundational Node Since 2019, 2FA, Backup, Low Fees\",\n                \"identity\": \"Wayne Enterprises\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Gotham 🦇 Foundational Member\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Edi\",\n                \"update-height\": 3375056,\n                \"website\": \"https://github.com/edixonve\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.050092190727239281\",\n                \"blocks\": {\n                    \"signed\": 39660,\n                    \"to-sign\": 40835\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.051018080914320362\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.050653362594226565\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.051076161557900127\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.051357328578772987\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.050268888645918517\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.049975588310105887\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.050127080269644792\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.049606249671956057\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.050374035975727650\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.049405953405045663\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.049951930907583505\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.048429776852498353\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.049631015150403949\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.050016036341778411\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.049593928449068300\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.050364681840151333\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.050243993563078838\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.049816375083296214\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.049545005711702043\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.033936193450378361\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.000000000000000000\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.051193273097028648\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.049378212485495135\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.049943806822116728\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.049559682973126336\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.049666853873378007\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.048546329693266618\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.049037849648129380\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.048987299705088079\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.049657007745930024\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.050092190727239281\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 661,\n                            \"to-sign\": 1544\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25063,\n                            \"to-sign\": 25345\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 13936,\n                            \"to-sign\": 13946\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.7606030472554290125576e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.60593e+24,\n            \"validator\": {\n                \"address\": \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\",\n                \"bls-public-keys\": [\n                    \"014d802636d36a50a687512b4f81f4d93324518c8099884b90e5467fa3d7f7fd52ed2e65892db70edf6df4a30530a78e\"\n                ],\n                \"creation-height\": 3373592,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.53908e+24,\n                        \"delegator-address\": \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rz9pdvsk4jajzu63m7ln869ns78nlfh9qm6swl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.685e+22,\n                        \"delegator-address\": \"one1f4rp0r5f0sa0a7n9a8e5hzn4fy030ntt88lm7u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Zenon\",\n                \"identity\": \"Zenonist\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.490000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Zenon\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Zenon\",\n                \"update-height\": 3373592,\n                \"website\": \"zenon@harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.490803697973440244\",\n                \"blocks\": {\n                    \"signed\": 64415,\n                    \"to-sign\": 65536\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.998485592139410404\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"0.756755317243356996\",\n                        \"epoch\": 187\n                    },\n                    {\n                        \"apr\": \"0.490803697973440244\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16282,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16177,\n                            \"to-sign\": 16386\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 31954,\n                            \"to-sign\": 32764\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.379323044999684381304e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one12tthayx2u7g262afmcfca29ktnx9aajjd8uj5j\",\n                \"bls-public-keys\": [\n                    \"44efaf5c155a5c762e0cbfc5eceb4c48dcef36601115c01a28d58b281076e07f72518b5a6fde7fb2152b05d526711f00\"\n                ],\n                \"creation-height\": 3374016,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12tthayx2u7g262afmcfca29ktnx9aajjd8uj5j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l85psy64zvjjqwz2j6224tekjsslk37ecdggfc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rsswq9k7yq47mv7mrpc28ngq7mrn0xhnhe7mgk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak28gl97jp85mz2kw2vdwhyg98hjrgq7ydlep4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tzpje28dnuh6fvwfl4hsn7j9ayw6zj02j28qnw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one108acxe4v8jacnvzpvy5laufmhw0a5rd8d7zsjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1prc5xaxhrwhzr6t9npwntw5jvrtjun25hkezgg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \" \",\n                \"identity\": \"insider\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"insider\",\n                \"rate\": \"1.000000000000000000\",\n                \"security-contact\": \"trueinsider@gmail.com\",\n                \"update-height\": 3374016,\n                \"website\": \"https://github.com/trueinsider\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1k73q7skgddu0u5vjvnq2e08j4y8uep43lme53u\",\n                \"bls-public-keys\": [\n                    \"0666d3f980ea3fc31708c9cfc1401d6d7cd6a76d17e1a74e50daab34785c75e0c032d5cff0db1e219e81da992959c680\"\n                ],\n                \"creation-height\": 3374177,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k73q7skgddu0u5vjvnq2e08j4y8uep43lme53u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"“pipi”\",\n                \"identity\": \"piyo\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"piyopiyo\",\n                \"rate\": \"0.005000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3374177,\n                \"website\": \"YOUR-WEBSITE.COM\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.1489e+22,\n            \"validator\": {\n                \"address\": \"one10vrseld7tdvqqt3nwg385j2m2w3f7s9h538s56\",\n                \"bls-public-keys\": [\n                    \"a6b846395cbc256c8ff1e5298fe603acdd5bd50ca1c45564a7a46cfa977c2710d51730c9fefdfc47b12016559180fd91\"\n                ],\n                \"creation-height\": 3374314,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.1489e+22,\n                        \"delegator-address\": \"one10vrseld7tdvqqt3nwg385j2m2w3f7s9h538s56\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"Ankr-stanley-2 by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Ankr-stanley-2\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3374314,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"1.143556653674610293\",\n                \"blocks\": {\n                    \"signed\": 80711,\n                    \"to-sign\": 81620\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.778777119507190901\",\n                        \"epoch\": 186\n                    },\n                    {\n                        \"apr\": \"1.143556653674610293\",\n                        \"epoch\": 187\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 3016,\n                            \"to-sign\": 3016\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 50417,\n                            \"to-sign\": 50692\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 27278,\n                            \"to-sign\": 27912\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.4466890910854539567476e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one12kpxkxzmfmkwaywgg2mgw30394y9tcdfv6a8fa\",\n                \"bls-public-keys\": [\n                    \"91e2373d83770283479f3633134e425a3205b8f1e49d63ed18cd770ab863717dd752758859348ffbc011a64cca0c818b\",\n                    \"c79ea8d41f17bd5a3e12991b9f3da9da8d82a4187d111dd006a2731fce95d0d947af48323dfbb8edc8be0551d5fe2e0f\"\n                ],\n                \"creation-height\": 3374437,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12kpxkxzmfmkwaywgg2mgw30394y9tcdfv6a8fa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xqrg0xnzzrfwhcmjkt96pqhk8h5mpuhh9yva6y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"The All is One. Actively managed.\",\n                \"identity\": \"Ouroborus\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Ouroborus\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"one@mein-computer-geht.net\",\n                \"update-height\": 3374437,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1k7jyqrxktvslvm5xyl3sq3hh5lx6x97ejed6g6\",\n                \"bls-public-keys\": [\n                    \"c2c756886621a7017866c9f05949b8a7f18d7e3a156bae43e3161c6cf3bcf332d55503701ff3e5e1d034ef49c8556382\"\n                ],\n                \"creation-height\": 3374686,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k7jyqrxktvslvm5xyl3sq3hh5lx6x97ejed6g6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9m0daqeqrcf0c36x3ctvsz0r7qydxqmafl3f7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"Stake Together by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Stake Together\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3374686,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.120159966802386740\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122648432771435489\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.080526485128849886\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123640322995306334\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.126701981496918419\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.124689100119106981\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.137532285111674291\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122125510568278294\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117372227416566309\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121762844960901729\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118771307311774676\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125968560118939947\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114393127907233954\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120931505181253287\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.122527030537612553\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.124413708869195513\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.114157282175064003\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118467064709752648\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120214687943325301\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.123120764042724225\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121990664977360222\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.124082674647845606\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121320568350292904\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122979143314544357\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122675693667251083\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.119091361297720793\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121821508240782630\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.121245341153678516\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.120989306778062358\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122521912283361661\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120965219344950757\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120159966802386740\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.0001e+22,\n            \"validator\": {\n                \"address\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                \"bls-public-keys\": [\n                    \"d01b2602aed09580fc73a56cf9bdbd19e14a7bbcf4fee71154cc5068ca7e2765d7b7750d8409e0b22d060afb89b9ee88\"\n                ],\n                \"creation-height\": 3374707,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0001e+22,\n                        \"delegator-address\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f8t28at9n7cpw7j95yvl66m3u96wtnsuyastng\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Well-being & tech work, actively seeking to make the world better. Have been part of Harmony since early Pangaea and running many other Masternodes.\",\n                \"identity\": \"MindHeartSoul\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Mind Heart Soul\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"Koen\",\n                \"update-height\": 3374707,\n                \"website\": \"https://ict.mind-heart-soul.org\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 13602,\n                    \"current-epoch-signing-percentage\": \"1.000000000000000000\",\n                    \"current-epoch-to-sign\": 13602\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"5425959730136522978700000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.120130466842458156\",\n                \"blocks\": {\n                    \"signed\": 533263,\n                    \"to-sign\": 537191\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.127709222277818788\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.122747489026373143\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121534152305525504\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123712042321634763\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.128283001827245707\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.124740308965797308\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.138495394075822651\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122958033834047567\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117398411208587323\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118745067171379631\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125927963217939890\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114686517202047293\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121101972867555458\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.122564374797240970\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.124374918830645647\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.114248170161803612\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118527660395865817\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120225415993352222\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.123159728412107076\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.122044624141232665\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.124090217536514431\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121336376380697965\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.123022808530112072\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122635268499628781\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118829511066070296\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121812200604664684\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.121269452074234629\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.120988756023554179\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122472414472617580\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120907916293817957\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120130466842458156\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16378,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16458,\n                            \"to-sign\": 16584\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17113,\n                            \"to-sign\": 17165\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17130,\n                            \"to-sign\": 17150\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17445,\n                            \"to-sign\": 17448\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17929,\n                            \"to-sign\": 17945\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 21393,\n                            \"to-sign\": 21408\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 41570,\n                            \"to-sign\": 41572\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 38081,\n                            \"to-sign\": 40844\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 36786,\n                            \"to-sign\": 36951\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 67118,\n                            \"to-sign\": 67152\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49055,\n                            \"to-sign\": 49154\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 64901,\n                            \"to-sign\": 65528\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.94470922610942405872528e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.481658844684103029104e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5e30eacccec0a503b8df9ffe97df69e82c2137f83ada86e62e11cc79a931ea99d64565799b83c498bf3c775c990fb40c\",\n                            \"earning-account\": \"one15mf5amj7nc8c9zpp0e2wr48em0r2vm02k9m8h2\",\n                            \"effective-stake\": \"5425959730136522978700000.000000000000000000\",\n                            \"group-percent\": \"0.005973525992626374\",\n                            \"overall-percent\": \"0.001911528317640440\",\n                            \"raw-stake\": \"5425959730136522978700000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.63975795114333333334e+25,\n            \"validator\": {\n                \"address\": \"one15mf5amj7nc8c9zpp0e2wr48em0r2vm02k9m8h2\",\n                \"bls-public-keys\": [\n                    \"5e30eacccec0a503b8df9ffe97df69e82c2137f83ada86e62e11cc79a931ea99d64565799b83c498bf3c775c990fb40c\"\n                ],\n                \"creation-height\": 3374818,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one15mf5amj7nc8c9zpp0e2wr48em0r2vm02k9m8h2\",\n                        \"reward\": 143763609078857380504,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9196469e+24,\n                        \"delegator-address\": \"one1zvaqqafg0nvmxtsvzkqalc3lz378qw5j6ysz5l\",\n                        \"reward\": 1.311141155455767271857e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fk6jqppy8hwx4zsd905mrusffk867r50f785ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.55e+24,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 8.240102583913921649532e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.4e+23,\n                        \"delegator-address\": \"one1h38hsusx5ptlc5xj9ke4ghr2wfug4fycukpcjp\",\n                        \"reward\": 83819347451913043380,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 61208397082469172902,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10k6uja7hj9uuwxuaz3pc0s0ypnf0ddhghltrs4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+24,\n                        \"delegator-address\": \"one146hqys8w369p7lqa7sc450g0ysykcj09taghmy\",\n                        \"reward\": 437480308697650407996,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.11291e+23,\n                        \"delegator-address\": \"one13vjtxkev4afaxev0rfurmc3r5pwmslyrv69x6x\",\n                        \"reward\": 1506700029192718291,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.8074783311e+22,\n                        \"delegator-address\": \"one1emggc9549mcv259z3w6fe4ptwt89fy2rzqhc3c\",\n                        \"reward\": 58951216662119043706,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u9zujcwef859daahd4puj8utagglq0w2v7y3tw\",\n                        \"reward\": 23259318026560260746,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.5e+22,\n                        \"delegator-address\": \"one1jewus8je3hfdpjrl2arkvsgd2dwnty5m4zu2qe\",\n                        \"reward\": 977438830208439493585,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10umgrh373mm7ch9u62jxg6lx9z0736w5gxhwmc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zr3y8tr2l5djdff5wjvtf0ec6j2shsp6rp5j80\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1euwk5hnx7fy66fm27xm3ddpgwxdlr9zud5afcx\",\n                        \"reward\": 177716150946989005336,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xmxu2t0c38gc9l9gc2dzkp7a2nh79eucuxv4g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1cpp354hrvh9c2vaej2xpwx3d237e87f6cr46yv\",\n                        \"reward\": 64818581459331688148,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5607476e+23,\n                        \"delegator-address\": \"one1s23gnh5t69tw343sw7h7wwmlm2l68szt6a5nu6\",\n                        \"reward\": 185538858587443416990,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.59481433333333334e+22,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 11664464182040261428,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.3e+23,\n                        \"delegator-address\": \"one1l672kfy4fpvkmmg6d05unv8ln6sdq6lwq980lk\",\n                        \"reward\": 236170878937773189835,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.5e+22,\n                        \"delegator-address\": \"one1fsqyatysv7y3dg7lg0h39kmq2qygxwx3lmm83m\",\n                        \"reward\": 24999746469452998424,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.32136e+23,\n                        \"delegator-address\": \"one1g7hu0lpmp99rawhjhh80jtrv6u42xzpg2sg2zs\",\n                        \"reward\": 897807863666547556878,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z250uy4fvkzwxvkjz30s26rwgwwezvdtvpwygf\",\n                        \"reward\": 5731330994679797089,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.42e+23,\n                        \"delegator-address\": \"one1x8kgyyqgslzrm7jrlj4m7rpg285etdywjk7gez\",\n                        \"reward\": 2.547640247189221120678e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.820163097e+21,\n                        \"delegator-address\": \"one1rtsgzcklp4x8afgs3k7ysh4zcz5esuhwrtrr8p\",\n                        \"reward\": 103433698348254690561,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.02e+21,\n                        \"delegator-address\": \"one1pk57rf87semvljq0sqwz893k2ckjaewtg7yk6y\",\n                        \"reward\": 38490084297416567713,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+22,\n                        \"delegator-address\": \"one1cg2mu0yd9yr3pjfdz5yse3yrzntj3kpnhje8ft\",\n                        \"reward\": 226868091669843245658,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one13f5u4z9xjprn283x88fjqf6xc8v6065xvq3n25\",\n                        \"reward\": 69475310451360935490,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one16ymzfqvxyhjr65tk94ql693398dh9tpyd6e9v4\",\n                        \"reward\": 238240950966792497884,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3ehduhrny4xa7jw8q7dmvl9sfd06uhp0u6app\",\n                        \"reward\": 38948531515895958,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one1xtshmhs4cg2kckutfqhp6umr5mx05crjyjg0dx\",\n                        \"reward\": 109750852823790590477,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1a0urgyhgc5wajgsd44vf6xfd2lz4q8fmsa2mhd\",\n                        \"reward\": 10943042830457961727,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqhrrmnj644jj9tdztg6up8yx9x0yrv9ktsxfq\",\n                        \"reward\": 964208047019012934,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one15tjsjcff0mcxc76qjrspmc8ml53yg9px3d2qgp\",\n                        \"reward\": 79989980433210968236,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.998e+22,\n                        \"delegator-address\": \"one1yknheu6l4rer60vyymepw0qrhvd0lj4snk5jj6\",\n                        \"reward\": 54707015180810442680,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+22,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 81943536751619264099,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6882404373369374702,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one10pva3pa75aczyka66lz6fppzlt2yc330rttfv3\",\n                        \"reward\": 88844686891613864537,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.245e+21,\n                        \"delegator-address\": \"one1dztpmj96q2f7rmu8gl8hne8k2z84s8tjmmcj4q\",\n                        \"reward\": 388444359984248915,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16295hjtqyr0z22swaqthv7mvmvn2gltnj5gera\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.446096e+24,\n                        \"delegator-address\": \"one1uuh6gsq539gg0lyvpje4zcn9p2x4h09kd3r3uk\",\n                        \"reward\": 2.260072284377541541976e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+22,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 38633423538782515638,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8e+21,\n                        \"delegator-address\": \"one13hw3v424sg9utx8jnpdge367wmfgw7y6329mt2\",\n                        \"reward\": 18444890498068898755,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mv7g0rj2dqfnw9jgqqxa8aqea9g8dw4kay77gc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 17140116316726402884,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0063e+22,\n                        \"delegator-address\": \"one134ujy0hvfu4eksfprrpawyn6szkmg74cdd6zwf\",\n                        \"reward\": 15867029424682489631,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1q3cmz8wmf4akeank9tcpcsjse0ctgp33u8y4wd\",\n                        \"reward\": 8862332966562610948,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.4e+22,\n                        \"delegator-address\": \"one1tk90nrhjww9dw46vvm6gh3rljrweckcxf76jre\",\n                        \"reward\": 19698605362988939893,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.22125e+23,\n                        \"delegator-address\": \"one12xfkkmqm7cnv52tml8vpdawvax0kr8f4wrlp96\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.773258761692e+24,\n                        \"delegator-address\": \"one177gxa33ts6xl9jnp3rwgt3a6my5y4nx9aguc34\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"We're professional node operators since June 2018 and an OFFICIAL Harmony Staking Partner. We run 2 nodes per BLS key for the highest uptime: each a bare metal unit in a SSAE16 SOC2 certified Tier 3 datacenter with hardware protected keys, 24/7 monitoring, alerting and analytics.\",\n                \"identity\": \"63575EE3F0F9FAFC\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"1.000000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 5e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"FreshONEs: 0 missed sigs since 2020-06-10:02 = Longest Continuous 100% uptime of all\",\n                \"rate\": \"0.025000000000000000\",\n                \"security-contact\": \"FreshONES.net\",\n                \"update-height\": 3405797,\n                \"website\": \"https://FreshONES.net\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 179848,\n                    \"current-epoch-signing-percentage\": \"0.999599822143174744\",\n                    \"current-epoch-to-sign\": 179920\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"129668970410843072142270777.999999999999999986\",\n            \"lifetime\": {\n                \"apr\": \"0.119327402917338024\",\n                \"blocks\": {\n                    \"signed\": 4505853,\n                    \"to-sign\": 4532731\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122453227300343578\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121941171165340890\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123960382297425114\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.127082041752545918\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.123346882018123275\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.133507449577502118\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122561266149972835\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.118003166780828799\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.067560106355431574\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117927021920764093\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.122431292421705712\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115324977416668094\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120514601662257825\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121423639255479322\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.122265743246226401\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.115066885848631578\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118624031747482192\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120438422232830471\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122086046937749831\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121195513992246808\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.122218988209629150\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120732205646734880\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.121223499345480675\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.120999517766683859\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118895375677912032\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120603897650329698\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120183573984563219\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.119289096768534281\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.120784397255009590\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119759212668736471\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119327402917338024\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 206112,\n                            \"to-sign\": 208932\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 217665,\n                            \"to-sign\": 217694\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 223851,\n                            \"to-sign\": 223883\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 221015,\n                            \"to-sign\": 221040\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 307562,\n                            \"to-sign\": 307583\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 196787,\n                            \"to-sign\": 198706\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 214483,\n                            \"to-sign\": 214542\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 214483,\n                            \"to-sign\": 214523\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 1027,\n                            \"to-sign\": 1028\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 232761,\n                            \"to-sign\": 232771\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 234620,\n                            \"to-sign\": 234663\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 256293,\n                            \"to-sign\": 256964\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 301745,\n                            \"to-sign\": 302811\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 232851,\n                            \"to-sign\": 233392\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 215872,\n                            \"to-sign\": 215969\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 201523,\n                            \"to-sign\": 201776\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 413409,\n                            \"to-sign\": 420728\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 433946,\n                            \"to-sign\": 445806\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.5082577415666980205455e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.538838290543257834319e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"070d3e9aed0dd70d8a28d3974f39cc535ec2957f0ce2ab61eccfde53dd5777648ab8f666f582319e6ba3e43c97ca568c\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.539002608461755586954e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a79f863b7e9a77b599c82756e4a635661223de7166ecca7d2549c9c5457b6e2c3e4ca3247de1259cf4fa920646bb980c\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.538838290543257834319e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5124782156094cf9aaccbcc5eb0f79d25db882352cf21b490c8cf70136d20405520659fdb4961396d3bb363ec4d80e14\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.539002608461755586954e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a53fab665af692aa971d8f43752c347fefc2a2b5e83d5dcbad8d28ff7e629d7891291712c7721dd0e1d4fd6665b97388\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.539002608461755586954e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"20d0791f77c7e82988628d05948655b9a264df9a6f1d4ddbda8a22a28622aa97a6fb6f16f46b16dbcba633165b091304\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.540179432038012057646e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bbfd933a7c834f1fa71c9437dc78764478a7459f888f63a09fac489b6f5e4ef14cf9a912206abc960c0f9ee3d295da18\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.539002608461755586954e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8b76663e5fb776bfb89ed8c118d56dfb4ded0517aac66ab20ba942a22cb3284a916cf01a8a6d0a9cd6a2f88aeb26d000\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.538886942696552237176e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"65876ec707a3ddb5c5ddae8e9e954cdb8e9913806df683109d8a4cee24f03bf32db85199859241c7f0b221c8b00eb394\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.538838290543257834319e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0c7a28e86f911493cafb4fb7325a08f763d5cd4cdd627971d4e09e7ef2471634b21e32ccb57b13ab8cdf68c78287c314\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.540179432038012057646e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"58e71a7b7de2ff603b62c8aa36686e89626404b6388279929a3f96a6317964df9a8cdada09421a38cc859bc428009910\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.538886942696552237176e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0ba26722c41987f55796edc8baf049f63e48e2f044675f70adcde17a94247bd2333ecbce6c1b9cba6ff770dacbf33500\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.540179432038012057646e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c44062315f968d707543b41882793ff7c945a0fd53f6d08ec355c261a327a368af7d1dc60da392b150a3ebfde4964708\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.539002608461755586954e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3659fdd8668677830bf2ff054c0e58ff46fc174c19112cc7a5c761b9a4ef8c031dab18793ae0cc03ca7a6eeab1b2d60c\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.538838290543257834319e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c27e8e691c26104d809022a33226fc9df0ead19f35d030054dfb847f06df9277a44b60d64bb8616ce2b911b76a7e2498\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.539002608461755586954e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f82e45094a111e9c85321e6779598b122bab7584f584be1c667ae5a186bc3eb14784ffdf3b78cdbb03b3c3dc788dea04\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006206723776794590\",\n                            \"overall-percent\": \"0.001986151608574269\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.508923994227623878442e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b6cea881ce7ecd6efd223874e509647454ce2c96ddd25955bb7e00e9e72cde34a3f31e66fb61c97003f60d261298d191\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.005888238860901352\",\n                            \"overall-percent\": \"0.001884236435488433\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.508923994227623878442e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a79b037697b9f7d3c0e0334d9faa249abd3b4f32e525da18cabe275e102869a24f6e6321e3dd9b2347a9591d00d8b70d\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.005888238860901352\",\n                            \"overall-percent\": \"0.001884236435488433\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.508923994227623878442e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dc0be4d95496d741547821ed34271dde5e5f072c1672010f75fd052af44ff592d5f07c75a8c4328913a0b4a7cec17195\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.005888238860901352\",\n                            \"overall-percent\": \"0.001884236435488433\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.50881692537723507914e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"164fe2da87e1e07700e93ed752924dd9243b1e4f1dcb437ab2826f4e381cfcb14035a24ce4f464d24aa3f4462a9ee815\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.005888238860901352\",\n                            \"overall-percent\": \"0.001884236435488433\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.550436079640583080667e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5b993e01879f8bc389a42f6ddd22430681937bc34dae44b6660afa944b2888c3e23dd2321a3b11c58b02c245261a4697\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006081608588418892\",\n                            \"overall-percent\": \"0.001946114748294045\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.5506415376944373657e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c44709b345924d9e39c9a6a087ac205b0f8daec3523362e47bcc1cf88eb8f035bfebd0552a7e1c2c10b84ff6cf2f5017\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006081608588418892\",\n                            \"overall-percent\": \"0.001946114748294045\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.550518906829603233534e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6905e31b0a8c2b5890f0af8dd6f81931e893120f0db983ce1406fa742161db12f9e28b7095fe43aca3c6a6d9b24c8897\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006081608588418892\",\n                            \"overall-percent\": \"0.001946114748294045\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.550337835273290175564e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9f28121f54bc1619b0f2534b3fd7b4c14837e385b76e28554a706c042f38d8ba075a3e2e46b8d5808b3b0d7cd7d0a80b\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"group-percent\": \"0.006081608588418892\",\n                            \"overall-percent\": \"0.001946114748294045\",\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.28094087951486305801173123e+26,\n            \"validator\": {\n                \"address\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                \"bls-public-keys\": [\n                    \"00575c5ebf56da455c979bb04639325d7e30d5bc4440e98aa9b0f2aabc36be6443bb09650929d098a5ff62c730d9a911\",\n                    \"1a15bf53b3f52a98ff95582605e6768a6924dad6c303ce6172657d0dcb5d456844a4e87fe0a3ec84bb59b02747ddfb8b\",\n                    \"00f7d5b9e234434a773fd3937a5e8a686c16d937b7b9477079729f7ca19b67a729eb21ff56925830d24edc3d0e8e0e82\",\n                    \"1b489b4fbe0bab76b5cef1fe532adbaa2098ab6c952190f3d3f5424e25cad631a30fa00824095ef5c4b765997fbc9307\",\n                    \"7985494305d6b43423e1e271eb980103b3adac6c659b5e25a3cc6989910f857d587763e94080cc11fd23c650dacbb803\",\n                    \"93061fd22a775769109194fa15eb0e55c48b80f47702497db39f120fc35204395ebcf268e556835862483d186a7b378f\",\n                    \"39ccc12c9015321a0934d367a073ab0ae70add28483fe441cf5a9fdfe4b43dfbe7d152717f2ef5a933cfd9d337519e0e\",\n                    \"65143bfd331f7dfff6bfacc8a36c5f19569a7cfb3221f60e747797bdd86a2861c430179e938c1507427577bda8481412\",\n                    \"a637433c22fb998c69dd1808b2d6d36f24ba6aa6e876a5369c9ab7486624013ca44557f50033ee3a37bd51cf942ec202\",\n                    \"7541c2ed9479285e19da9257fa1bd23ff55054a7fcc264a168554899132c27a9d8c291022f570846800ecadd08d45515\",\n                    \"7a1455fd53b2c19084a3a965e8067042cf3f7c7300d71ebbfa21a818e0b9d78f18b846523ebf6e984b3f4a9d39f42d89\",\n                    \"8f995554e69bfd10c109051a84c5614764b7a6b81a2e3a1912b36533b31edef739fda89af97a50e82d751967c10f0019\"\n                ],\n                \"creation-height\": 3375103,\n                \"delegations\": [\n                    {\n                        \"amount\": 7.535052004417721605636363e+24,\n                        \"delegator-address\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                        \"reward\": 9.586602343602157023092e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19af86ddjyxsw8dsujj2v44nqt7yers6vk4hqrj\",\n                        \"reward\": 4.418236831993646967166e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.469685604419587645531846e+24,\n                        \"delegator-address\": \"one1gqdnwl6zmn9avnaksqv2555x388nr792v7gzjr\",\n                        \"reward\": 647214237630314146126,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1439231074821976749637131e+25,\n                        \"delegator-address\": \"one1zgmd5s6fyv9rm2vuf3augqf3ucnp9a2j0h09u3\",\n                        \"reward\": 5.037559368883791494905e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.264566271095602129655563e+24,\n                        \"delegator-address\": \"one1zzhwus03x3j3fgtust0v07k7rf583rrp84zdet\",\n                        \"reward\": 1.437636569243554192961e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.0635921082221781401124e+24,\n                        \"delegator-address\": \"one1s4rypls26kmzg03dxkklmpwhmv8u4nlh6vqkdv\",\n                        \"reward\": 1.789508354905917843414e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.760970426984086819800231e+24,\n                        \"delegator-address\": \"one14uzsrvucmxx5wwkx46r9a6mpqgtjlrchelw5pp\",\n                        \"reward\": 2.536992994595645080344e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.30577685e+21,\n                        \"delegator-address\": \"one1t06uqmpv67gjhams3pp0kqxkdq3zuuaecnhcg8\",\n                        \"reward\": 63660387170586950880,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1y7e39h6z0c0jqx9vu2epx3v5d3d44nx7sqmjsg\",\n                        \"reward\": 253832361976355626190,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+23,\n                        \"delegator-address\": \"one1cny9ehjg06e29znh5478jpakfu7fey2kfdq9we\",\n                        \"reward\": 2.748343282954063400508e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.80943007181987915058561e+23,\n                        \"delegator-address\": \"one1fzh923dkauvyye7w68nc38j2dw54gldu5mheaz\",\n                        \"reward\": 123721077630153929148,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.483e+23,\n                        \"delegator-address\": \"one10e20lg77vuwse39k3rp86g2s2q80fketsjf7l9\",\n                        \"reward\": 568420583879367403057,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7e+21,\n                        \"delegator-address\": \"one1uqf7k4l6e63prf7lz04yyeztpc5vdvdqfy7yqw\",\n                        \"reward\": 52968484834352106976,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 165394208775026665409,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1u8dt4hz56jzksjaw7vayf8d4n5k5tj5heagnpw\",\n                        \"reward\": 10581198993833890281,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.237005275490913999307714e+24,\n                        \"delegator-address\": \"one19ly97t6qs4waps55m588wf228mvz3ka08avhs8\",\n                        \"reward\": 985123389318509308190,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.91056847692650796433314e+23,\n                        \"delegator-address\": \"one1qv3e6dycywtc6u3xz9kxvg87mnwgykjc5cuga0\",\n                        \"reward\": 216250559085267212570,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+25,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 3.0903816793150902799781e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.55738447342e+23,\n                        \"delegator-address\": \"one1xm7p6e27auwwe6g9mv4pm7prpcwjg4ff7teqxf\",\n                        \"reward\": 1.499355345935100930683e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 550132431807387317,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1k9amy7ms74rxp5ze4jne3hwavmghza48l43qve\",\n                        \"reward\": 18591835726348166689,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one140h65laq5sdcdtkctds7y4ky5q0tqeuw4g62ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxgyhh80mhsxtf9y80msgmnrtsqezd83jd0z5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2955e+22,\n                        \"delegator-address\": \"one1zk0xpjg7685grn50m8afwt2zqg0em2nj8emdfh\",\n                        \"reward\": 491378249041015182796,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0674e+22,\n                        \"delegator-address\": \"one1x3dgj70uux54tq86ytgensnfgxmtrdkgaetgdr\",\n                        \"reward\": 476014890997528770494,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3529e+22,\n                        \"delegator-address\": \"one1gt6f89q47ca8lj4cdgp942d35dd65kjzlzx9n6\",\n                        \"reward\": 495244346154983044570,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.9918e+22,\n                        \"delegator-address\": \"one13ekkvq2cflget6qc3ma5a0j3x3k5tv64z3y5zv\",\n                        \"reward\": 538276566470562023077,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.0654e+22,\n                        \"delegator-address\": \"one15rxw2ldd4rad8yp5dw3zl6jf8pk4yvadw40cly\",\n                        \"reward\": 475880183781013963626,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.4588e+22,\n                        \"delegator-address\": \"one1gyul78ktyq9da8n056qy47rum3rkvuc8ggk0v8\",\n                        \"reward\": 502377093269429623723,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.3787e+22,\n                        \"delegator-address\": \"one14xxcggfmgklve2gn8fr7nu4sak20x34kat0m4l\",\n                        \"reward\": 496982069248020911362,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2823e+22,\n                        \"delegator-address\": \"one1fvzaw5jp5456nrzmleclra5wa82ghvckz0sclm\",\n                        \"reward\": 490489181412018789366,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.7403e+22,\n                        \"delegator-address\": \"one10z2sx4ewe0pmmm7pl24neadxs0dkx2xk6knu65\",\n                        \"reward\": 521337133993855091332,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.5733e+22,\n                        \"delegator-address\": \"one1alsg5uamaxlc84wmar6vf5puzckvsxhy93730y\",\n                        \"reward\": 510089081414888758192,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.1051e+22,\n                        \"delegator-address\": \"one17nmtfjje64znyefzt4kuvlr8xt5h0k7f0phx2r\",\n                        \"reward\": 478554122028828302048,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.9641e+22,\n                        \"delegator-address\": \"one18j98j2p3xxgvd8jyja7cm9c33a5wg74paxz6xq\",\n                        \"reward\": 536410871521835102779,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 7.2499e+22,\n                        \"delegator-address\": \"one109nf69eul2pyjnzxh6j9pckjpcj8dsavvd9v4z\",\n                        \"reward\": 488306924504482953042,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zefl483yyzshrs3276c2y6uk75nkll6u4cjrsm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 9521803891856246742,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6043614559921033567,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.687814e+24,\n                        \"delegator-address\": \"one1a0sy6uju6s3p54c7xpgrnxsztke3jjv5shsa2p\",\n                        \"reward\": 1.4562028880588640934958e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01091e+23,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 8892608814350499355,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.5e+21,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 25199402691750009993,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.215521069676e+23,\n                        \"delegator-address\": \"one1jnm0mmlw2rur0hjvq3nl4uw3v7r9fd3gjvzcna\",\n                        \"reward\": 690387026791389122568,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.573429e+24,\n                        \"delegator-address\": \"one10g29pg6ec2yzp2wvl4ex6tlft69sk86l5xhx84\",\n                        \"reward\": 3.799901811471249113778e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+24,\n                        \"delegator-address\": \"one1rhsvtu2hppmhxemycxr0kujwlgefwn7lu09vwp\",\n                        \"reward\": 5.906363550688593503806e+21,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Public validator run by Chris Liu (Chickens), old Harmony intern and original Pangaea developer. Currently running with redundant signing and have 100% uptime!\",\n                \"identity\": \"Chickens-Validator-2\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 5e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Chickens Public Validator - 🐔\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"cmliu@ucsd.edu\",\n                \"update-height\": 3540416,\n                \"website\": \"https://github.com/xChickens\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.131810703428644842\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.131810703428644842\",\n                        \"epoch\": 212\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.01097e+23,\n            \"validator\": {\n                \"address\": \"one18y79f5assjyw45n7z6gp9kj6dwrct4qu5v0tyr\",\n                \"bls-public-keys\": [\n                    \"8808e5df6acc5df3676529e144d838cc81f250519e1f7f092710ee62e0eeb4ad9b614f1d59cccec06ff1da00aa01ae81\"\n                ],\n                \"creation-height\": 3376132,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.01097e+23,\n                        \"delegator-address\": \"one18y79f5assjyw45n7z6gp9kj6dwrct4qu5v0tyr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d235ehhlcdec9vsg6vua3j6gq2csz3u9hvju0e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wlpuyd73z03j6qyufye7lynl00nq6dcq94y89k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1288ntpw730ecyetgh22dn7chnn2wllsghpyfnh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"You no me by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"You no me\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3376132,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1wmz9574u0w86hza0ftxvqtuas6j7jsvgjdgjat\",\n                \"bls-public-keys\": [\n                    \"9ecbadb7b6a88502b2df98c9ed5e2b9a5b37f9e7a5c04ff653e49f0cbec5e6af7c4463e39eae5c9e549e39a6933d7d0e\"\n                ],\n                \"creation-height\": 3376172,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wmz9574u0w86hza0ftxvqtuas6j7jsvgjdgjat\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1afkxg99w2gagk45nqsrvtkgazzenrveq4z8md2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"Harmony365 by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Harmony365\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3376172,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1500000000000000,\n            \"validator\": {\n                \"address\": \"one17yrrnxjtzmwce7wmf49e5rradhy0pyctnd6l8p\",\n                \"bls-public-keys\": [\n                    \"8e598ab177d8ea36b70c4f0e554de89a90979555122df6d9ad2c694668668b9e83545402a1db75efb57cdb886e2f2e0e\"\n                ],\n                \"creation-height\": 3376667,\n                \"delegations\": [\n                    {\n                        \"amount\": 1500000000000000,\n                        \"delegator-address\": \"one17yrrnxjtzmwce7wmf49e5rradhy0pyctnd6l8p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"German based HarmonyONE Validator\",\n                \"identity\": \"Tolgamos\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"JetStake - Istanbul\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"ta@akcer.de\",\n                \"update-height\": 3382591,\n                \"website\": \"jetstake.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.099276456627343476\",\n                \"blocks\": {\n                    \"signed\": 2301,\n                    \"to-sign\": 16384\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.099276456627343476\",\n                        \"epoch\": 187\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2301,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 820278223478599954180\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one16n2pqayygz25prxen475w4ycnnt2d2rdm9e0th\",\n                \"bls-public-keys\": [\n                    \"08a203674a68b93ebe7c857570f83624297b8ffb794a75b3b5878ccd5ad6821e06e410b63bef29359b3999a5c4d20700\"\n                ],\n                \"creation-height\": 3377377,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16n2pqayygz25prxen475w4ycnnt2d2rdm9e0th\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"Dark Angel 2.99% fee Lower than You Getting that Virus! by ankr\",\n                \"last-epoch-in-committee\": 187,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Dark Angel 2.99% fee Lower than You Getting that Virus!\",\n                \"rate\": \"0.030000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3377377,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2.0001e+22,\n            \"validator\": {\n                \"address\": \"one1v0fguw8l5l0gk7fvjq2h9pqgxcekrvy273pfsy\",\n                \"bls-public-keys\": [\n                    \"0c3fd89575cd27f81d910ae0e25fa28bd0973fc16e5669c5460eb6717ce3fd00ab55c05ef7b2dfc3f1b74a1674f08788\"\n                ],\n                \"creation-height\": 3379368,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.0001e+22,\n                        \"delegator-address\": \"one1v0fguw8l5l0gk7fvjq2h9pqgxcekrvy273pfsy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"Ankr-Bozo-1 by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Ankr-Bozo-1\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3379368,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one10lev28xhn3a0es5ee07sqps0e3khw83a6sm57j\",\n                \"bls-public-keys\": [\n                    \"4de08c21ef1df0daf0daea6055eaf68dff01f6bf2cb4aa0874a735134e6154a1585382f1ab50f6532009d1126f0a5e94\"\n                ],\n                \"creation-height\": 3381189,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10lev28xhn3a0es5ee07sqps0e3khw83a6sm57j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"German based HarmonyONE Validator\",\n                \"identity\": \"Andre\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"JetStake - Schmandre\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"ab@jetstake.com\",\n                \"update-height\": 3382668,\n                \"website\": \"jetstake.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1gmnkfk532lgvxz3040pgw4zyzh80c3m5uwqugd\",\n                \"bls-public-keys\": [\n                    \"f3a16902c7a54164b3f28d309e7e8e8b857c92d10ba295ad0c5df2cdb33acc471fd1e451867790df048ff44c5b134303\"\n                ],\n                \"creation-height\": 3381667,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gmnkfk532lgvxz3040pgw4zyzh80c3m5uwqugd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"German based HarmonyONE Validator\",\n                \"identity\": \"JS Node FloSch\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"JetStake\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"FloSch\",\n                \"update-height\": 3381667,\n                \"website\": \"jetstake.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1hdxnmfgkxtlmrym9ljjw2dpweke85pheu8g8zl\",\n                \"bls-public-keys\": [\n                    \"95f9d0f1a688b9c4d2a9d876580f7920625f0859846711203fb4f0f364290895daab76557d09f4acb6d3b562eed00782\"\n                ],\n                \"creation-height\": 3385397,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hdxnmfgkxtlmrym9ljjw2dpweke85pheu8g8zl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Harmony Staking Platform in South Korea. Hosted on AWS.\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Harmony Korea Node v0.1\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3385397,\n                \"website\": \"https://\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 14656,\n                    \"current-epoch-signing-percentage\": \"0.992483239655989707\",\n                    \"current-epoch-to-sign\": 14767\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"77902390003308395239699999.999999999999999998\",\n            \"lifetime\": {\n                \"apr\": \"0.116812902592684383\",\n                \"blocks\": {\n                    \"signed\": 446286,\n                    \"to-sign\": 460620\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122920861287212696\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123454800981407968\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125610102417775055\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.124843948071450812\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.127427674298187805\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.123421177941607700\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122663940700438306\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.121660169071585311\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118953547595900612\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.117302480164701773\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117123969410828232\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117525360971779602\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119982213846450789\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119982043933101886\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120111105419953813\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.118417970791213625\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.120199774044702360\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.121031125664727512\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.120322274578390405\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120091929444427613\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.118171247975479173\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.119296981352851814\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.117003101791495234\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.117016981499486570\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.117267815669503967\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.117513332743906111\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.117390998690153594\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.115585437151643315\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.116878346663665771\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.116500559715720557\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.116812902592684383\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 17474,\n                            \"to-sign\": 17479\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18274,\n                            \"to-sign\": 18283\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17603,\n                            \"to-sign\": 17663\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17185,\n                            \"to-sign\": 17299\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17726,\n                            \"to-sign\": 17761\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16794,\n                            \"to-sign\": 16924\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15463,\n                            \"to-sign\": 16249\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16732,\n                            \"to-sign\": 16805\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16784,\n                            \"to-sign\": 16991\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16821,\n                            \"to-sign\": 16976\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17115,\n                            \"to-sign\": 17234\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17968,\n                            \"to-sign\": 18060\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 42097,\n                            \"to-sign\": 42566\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 71813,\n                            \"to-sign\": 77798\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 76657,\n                            \"to-sign\": 76843\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18667,\n                            \"to-sign\": 18735\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16457,\n                            \"to-sign\": 22187\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.61524009020848912798388e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.603729951419425226648e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3ad8a62ae7c504280bfc99ed88a3e35f3e490e9c118255d2ce0f617ab003ee5eb557c23fde5c632bf80ac3963923c20d\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006258707022367261\",\n                            \"overall-percent\": \"0.002002786247157524\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.603859887605212619615e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"985e263ed18e57aed7913bbb9d6b2dc1e06e27a7cdb1e44b16128068be1f3e3b79338043a33629bbb97dac2ab622c391\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006258707022367261\",\n                            \"overall-percent\": \"0.002002786247157524\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.603859887605212619615e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6af38646737e41bd8cd3a6b4a15584764fd7068f9f205ecf26dec36c64d601acdb871768a77d37259100ef8e36f4a491\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006258707022367261\",\n                            \"overall-percent\": \"0.002002786247157524\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.603729951419425226648e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"449e9459311d05fc44573e79d394de90a535bb266c31ad8d7c85168231445e111aa2fb0eef24d564ec9e9128728a7b85\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006258707022367261\",\n                            \"overall-percent\": \"0.002002786247157524\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.603859887605212619615e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"40f92aa97fa8e5036b0b49ad17a7a6603a33dd3f98b21f55b10927c90ab27f6c586eb3f0c44beda3458aa6c86e743f01\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006258707022367261\",\n                            \"overall-percent\": \"0.002002786247157524\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.603859887605212619615e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"12eceb4aaece26636d9e6f9fe9e5aa8759ea54d07d0430040aa13f49c8a169f1074233facf60f4f2092a087390813911\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006258707022367261\",\n                            \"overall-percent\": \"0.002002786247157524\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.603729951419425226648e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"26a1ef0f3477ed61c7b6c9bbfa2057ce289460457e1ea16b9f7c5124ef1abc0269cf126826212cf73624ffbb579d8611\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006258707022367261\",\n                            \"overall-percent\": \"0.002002786247157524\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.603859887605212619615e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ccc797f918528cea5ff7932823b503ff264718d9e4d1797fb8ddb3c57b7c49175d0999290158cd800db399e62d810115\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006258707022367261\",\n                            \"overall-percent\": \"0.002002786247157524\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.603859887605212619615e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"277845856fdaa0ab4293ab18e2e8dc43edc5163666025eba00a9fd5c88a3d48b39eada8a9ca14d2c6ab6ee34179d4499\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006258707022367261\",\n                            \"overall-percent\": \"0.002002786247157524\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.59567257907717972215e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5f4dd3a7989049bc0701bc05e1d8303c0cd2471790505bd361902b6d15e796ff5b21b1aabb4b7f17ff73df6c50f36a82\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006239297280984282\",\n                            \"overall-percent\": \"0.001996575129914970\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.59567257907717972215e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"892b77f0cdd8f37fe9f57cfedb59d5d93b3a247ef11d1d6e3e7f2a25190be95d84239cfb7507d3bea6e0edde5507e50a\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006239297280984282\",\n                            \"overall-percent\": \"0.001996575129914970\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.650459986309650359593e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"883b02bd5e72bf44bb478e5018e00ebf8bcba72076409d69436af0b6e74e85c4de1b6c2f2e365a0440b39db65f3a700b\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006464242921999908\",\n                            \"overall-percent\": \"0.002068557735039971\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.650459986309650359593e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"66ae22ecce040a1705b8caedcef611831b019c66685f136e5124a4afbf5cad346ee8d2c98b22bfdfc98d3d8b13d7b213\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"group-percent\": \"0.006464242921999908\",\n                            \"overall-percent\": \"0.002068557735039971\",\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.1219738989377e+25,\n            \"validator\": {\n                \"address\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                \"bls-public-keys\": [\n                    \"be5c09049176d8f029a14a561ec00df8e505c5aea6239ee690002e2c966704402a8b9d989e81be72b029da5da4c2a80f\"\n                ],\n                \"creation-height\": 3386789,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.4e+23,\n                        \"delegator-address\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                        \"reward\": 2.985730799600885888931e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1028388989377e+25,\n                        \"delegator-address\": \"one12t4hfhh0am0jzt834yjsrg6s7m6x40whmh7rf4\",\n                        \"reward\": 5.015187194419067836168e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1894217420616076231,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.035e+22,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 3792927819450496651,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Strat World One\",\n                \"identity\": \"StratWorldOne\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"StratWorldOne\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"admin\",\n                \"update-height\": 3488354,\n                \"website\": \"stratworldone.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 89276,\n                    \"current-epoch-signing-percentage\": \"0.996350568619354263\",\n                    \"current-epoch-to-sign\": 89603\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"73200750130065805226710500.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.103790876873280282\",\n                \"blocks\": {\n                    \"signed\": 1865328,\n                    \"to-sign\": 1884552\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.107521989520847062\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.108284149595388300\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.109747098218374964\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.099726885659258145\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.106500656702741272\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.104573104594755945\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.103888860655979601\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.106508030073607375\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.105224006138811239\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.104861576054040148\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.103353525959186571\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.105034015400984758\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.105853499388918693\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.105704094662166556\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119795422144323540\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.105285037973327779\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.104211506193043594\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.104697748803640976\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.104656930295715492\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.104295918246162430\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.101232929993735711\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.102536954928603616\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.104219889314379002\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.104605134260771041\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.104708969669790521\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.104672006390918462\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.102264466562715724\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.101098343361016590\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.102186161646458497\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.102724229604863394\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.103790876873280282\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 104090,\n                            \"to-sign\": 104527\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 108685,\n                            \"to-sign\": 109195\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 105073,\n                            \"to-sign\": 105694\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 102741,\n                            \"to-sign\": 103588\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 105385,\n                            \"to-sign\": 106372\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 98518,\n                            \"to-sign\": 101494\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 82425,\n                            \"to-sign\": 84756\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83153,\n                            \"to-sign\": 84468\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 83336,\n                            \"to-sign\": 84913\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66620,\n                            \"to-sign\": 67904\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 68230,\n                            \"to-sign\": 69136\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 69977,\n                            \"to-sign\": 71471\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 106323,\n                            \"to-sign\": 107157\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 223642,\n                            \"to-sign\": 225570\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 222276,\n                            \"to-sign\": 222892\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 145578,\n                            \"to-sign\": 145812\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 6.39876674288061464046828e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.509288393919976604849e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6480fdc6e2c7f03c9cc419aa9f3ab79b0ad5279cfdc7c45363a17de3832d97d2ff280487c9482ba4622768d5ed208681\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.509040518373359032778e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"87970ebfed4e6e27cc7b546537c4de38248d985918c6576b6559784fe6ac02a6841bf856163635e6e93f8a476b924c85\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.509308764355996321236e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6d5351b8c815a3d89685a82ee7173f2759ccadc9fc2faed0b9b0b4f63c7b9021551d1cc78f7ec0aba62e2e577e8aa68d\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.509413148538814349479e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3a30d5f923cfd0e3f673f62b4161c47b452743e1f50044de3df07c0f51d455385893668fedd75e63248a02f903dc4a01\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.766448605402881140797e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"044b97305780a0cc6b24f649fbe8b507794bf6e4d0c1268658cdc7b64d38fa0adf45ad81aba61aaef769c3c0f9b0ba0a\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.765797883953957834394e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5f4e20b6ad0cb25c0d2a9eb1b109e8e873b405d6b25960732a28c5af378cac3df86950bd136f622e31f0e5cf76f0130e\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.765709871664157160988e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"41261930c23c0a5585f5fce4dc5b39e91dfc76bc67677210a79a462a2ce62a41fa68fa6ac80e2db372fda35dd95ce016\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.762668210184077262585e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9b4f2ed9b5b7046cd635f986add792518994cc162be665802daff25728e505f3e84ee42ca21b966f078427cee00b568e\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.829654985911768609821e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"3ef63d9e8c9f045c6a2fbc4488a92688337ae5b3386964057ac8784bae5eef8227f3bbb8e4f099102b62ed0c6917e417\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007178489764402561\",\n                            \"overall-percent\": \"0.002297116724608820\",\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.828979526775639696778e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bbd0666e619c0c3f10f44619a8f4a872e48b13cda499b8c8750a05c5dd714e7e49cf852055fd7e0a4910f9ac24964e83\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007178489764402561\",\n                            \"overall-percent\": \"0.002297116724608820\",\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.829066549124562810245e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7b3d2d588c731a78607a8d8043223bb7f87b4292543ee2ecc3a663e89d92b7a16007eef23084937bfdb2df780970f487\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007178489764402561\",\n                            \"overall-percent\": \"0.002297116724608820\",\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 6.16340208692504e+25,\n            \"validator\": {\n                \"address\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                \"bls-public-keys\": [\n                    \"3a2e4c280f9c32a97ccb68d8b1710f892e361392266c023efbf484c2ac31aef678e3fd1163179faef3f58cb83b03178f\",\n                    \"3a30d5f923cfd0e3f673f62b4161c47b452743e1f50044de3df07c0f51d455385893668fedd75e63248a02f903dc4a01\",\n                    \"41261930c23c0a5585f5fce4dc5b39e91dfc76bc67677210a79a462a2ce62a41fa68fa6ac80e2db372fda35dd95ce016\",\n                    \"5f4e20b6ad0cb25c0d2a9eb1b109e8e873b405d6b25960732a28c5af378cac3df86950bd136f622e31f0e5cf76f0130e\",\n                    \"3ef63d9e8c9f045c6a2fbc4488a92688337ae5b3386964057ac8784bae5eef8227f3bbb8e4f099102b62ed0c6917e417\",\n                    \"7b3d2d588c731a78607a8d8043223bb7f87b4292543ee2ecc3a663e89d92b7a16007eef23084937bfdb2df780970f487\"\n                ],\n                \"creation-height\": 3387248,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0001e+22,\n                        \"delegator-address\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                        \"reward\": 2.830692240043546046764e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.10010001e+25,\n                        \"delegator-address\": \"one1efazmyus8wk224s0mkzduzat44k0g88nt2uqv7\",\n                        \"reward\": 2.35775460293270253997029e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one14vkjrtd6z7k22pnae5kygftnwve4f2qhuxrvdp\",\n                        \"reward\": 125298119474131541314,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.51137692504e+22,\n                        \"delegator-address\": \"one1rf732ne5z74ahp79c39jpezz07qzuwz2gtwgyn\",\n                        \"reward\": 323785384010252560642,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.82e+22,\n                        \"delegator-address\": \"one1frv0sk5yxa23enkrsgeve6lyr29jjq7lkd0n8m\",\n                        \"reward\": 2754510254591454628,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfuvmhz4zgvpeyap5k7qngj25xv84t65vnecye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 1182002530470086008,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.3206e+22,\n                        \"delegator-address\": \"one1xvyfjz4ypmcwqxvd7q28xp3jwv5xy7wa85jr4n\",\n                        \"reward\": 186252455529060225107,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 10287999234304766069,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 6846713147404519022,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5e+23,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 168799741625820703421,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1842518023450999855,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19qy96szsrhuyjfrqgr4gzhaaw8cgct7ym83wy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9e+22,\n                        \"delegator-address\": \"one1ewhakak5wfhjlk5aulejksp5eapqpg2pm27qvt\",\n                        \"reward\": 111999216749009369893,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 21897621138389642926,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.75e+22,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 31946553627785332689,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"BTMX\",\n                \"identity\": \"BTMX\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"bitmaxvalidator\",\n                \"rate\": \"0.030000000000000000\",\n                \"security-contact\": \"support@bitmax.io\",\n                \"update-height\": 3456176,\n                \"website\": \"bitmax.io\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1u0n3mnzdysgk9lcz4j0zmfe48ceqc8ja6ewekc\",\n                \"bls-public-keys\": [\n                    \"a7727191ce47f86dfd942ae31c57a1f9a9bd56c6d6fb69b73f97660ef3a8cfd5c8025272b68c68f4f94c019f4db80789\"\n                ],\n                \"creation-height\": 3390173,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u0n3mnzdysgk9lcz4j0zmfe48ceqc8ja6ewekc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"LEMONed-ONE by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"LEMONed-ONE\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3390173,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1fxtdau23qk0fl63e40g3h4nfwsj0k8uutx59qx\",\n                \"bls-public-keys\": [\n                    \"59b98b2f2ee7a192fc68c05c4af99028a4fbc8532ea56eacd47711fd193d55195826d1a247a054e41904a48b3176cd93\"\n                ],\n                \"creation-height\": 3390469,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fxtdau23qk0fl63e40g3h4nfwsj0k8uutx59qx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"All for ONE and ONE for all! by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"All for ONE and ONE for all!\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3390469,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.4205899e+22,\n            \"validator\": {\n                \"address\": \"one12lwj5h27ne8ada20s7ya5qzmwvuwpsj423kcg7\",\n                \"bls-public-keys\": [\n                    \"a8da2b1416631eb1b2e22cfac8f168c3019ce92579559a521c346cf1edac7271a30c29d6e034191b4b21b94f92787702\"\n                ],\n                \"creation-height\": 3390673,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.4205899e+22,\n                        \"delegator-address\": \"one12lwj5h27ne8ada20s7ya5qzmwvuwpsj423kcg7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"MR020 HRMNY Node by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"MR020 HRMNY Node\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3390673,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 5.00452177053e+23,\n            \"validator\": {\n                \"address\": \"one1vx3xzr3frltweh4u4nmtdwaxxrzv0eylepc2v7\",\n                \"bls-public-keys\": [\n                    \"9993736d688f85533a277fbda150cd632cb9c1ffcadd3846f2ceeb4265774a6e44775068e7a4f3acc78dc41509ecfd97\"\n                ],\n                \"creation-height\": 3391040,\n                \"delegations\": [\n                    {\n                        \"amount\": 5.00452177053e+23,\n                        \"delegator-address\": \"one1vx3xzr3frltweh4u4nmtdwaxxrzv0eylepc2v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"FANIN5050-000001 by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"FANIN5050-000001\",\n                \"rate\": \"0.030000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3391040,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one177kcfufknjq9vxnqcy2vu45wjghmy6j6um4zpj\",\n                \"bls-public-keys\": [\n                    \"9e0b9c00e58079ffc914906357a54d31539577427e2108214247cf6790d967bd84ab20ae84cb75e07955a0f36d21e200\"\n                ],\n                \"creation-height\": 3391264,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one177kcfufknjq9vxnqcy2vu45wjghmy6j6um4zpj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"-\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2e+24,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"del\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3391264,\n                \"website\": \"-\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one177ty3kcr9y6p4wuh6uqklx6vw3ydplnu5xmx8s\",\n                \"bls-public-keys\": [\n                    \"73aa5fe614b955007f9ed9193fe772089efa4e083c472f29a6b44586e6b19eedfd9a8df1bfd405f217b2d31a41926298\"\n                ],\n                \"creation-height\": 3391278,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one177ty3kcr9y6p4wuh6uqklx6vw3ydplnu5xmx8s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"-\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2e+24,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"del\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3391278,\n                \"website\": \"-\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                \"bls-public-keys\": [\n                    \"769676348acf7ddcf694bbb735b5fe6afd50dfe29fdabb3d834a70b8ea7a091e6385641a060ae6ec944179038dd02510\"\n                ],\n                \"creation-height\": 3391310,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q49nryd7cnjmtwqynxv73pkeetl5tjkq75lwws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"Koholint by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Koholint\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3391310,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one16ryldqjwdf3uytw9n8gcllhghsv0dggy4e4gva\",\n                \"bls-public-keys\": [\n                    \"ed2f595e24b1473338e136ac4f7a83daea8cb3fe9e895c458249a4320bf6b1869b4d989f5a441d6843c88eff39e4230f\"\n                ],\n                \"creation-height\": 3391620,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16ryldqjwdf3uytw9n8gcllhghsv0dggy4e4gva\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"LEMONed_ONE by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"LEMONed_ONE\",\n                \"rate\": \"0.030000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3391620,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1dkyjjf8s94nvml9rvksexlt4a78lu9u63ul8lf\",\n                \"bls-public-keys\": [\n                    \"9d382f925b24c005820bd23af588067897b22d35115b8c9c20d26cb092f3184e94ab971a145faf1b01a11bf3be338b00\",\n                    \"f1bd78aafe8b2344506afb070ed0d402d025edce4701f9163eec613af475b2e92beead02aa9c5640058c87d3e66ad28c\"\n                ],\n                \"creation-height\": 3392375,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dkyjjf8s94nvml9rvksexlt4a78lu9u63ul8lf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Only ONE will take the throne! 0% Fee for all\",\n                \"identity\": \"et4926\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 2e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Game of thrONE\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"tertychnyiy@gmail.com\",\n                \"update-height\": 3392375,\n                \"website\": \"harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.483125281132964971\",\n                \"blocks\": {\n                    \"signed\": 16039,\n                    \"to-sign\": 16384\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.483125281132964971\",\n                        \"epoch\": 188\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16039,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 5.674275624562210151472e+21\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one13333jp9cs7ezutn5wrc9hqr8nvaxr8h4x0cak7\",\n                \"bls-public-keys\": [\n                    \"a31b54451a218ecf64c514662b1de48a66d3f012e8d162ee870464ce8d3fc42faf9bff68fe7522e1a60827fe3b4a4380\"\n                ],\n                \"creation-height\": 3392749,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13333jp9cs7ezutn5wrc9hqr8nvaxr8h4x0cak7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cu2dlrhsdt3ac6tl378sxyu8g79hrn36ngr8y5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Harmony Foundational Node operator and supporter since August 2019. One of the best node's uptime. Want your own node? Not a problem: providing your node setup service, support, and consultation from zero to Elected. For more details see Telegram (@auroranode)\",\n                \"identity\": \"\",\n                \"last-epoch-in-committee\": 188,\n                \"max-change-rate\": \"0.200000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 8.8888888e+25,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"ΛURORΛ\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3423960,\n                \"website\": \"https://t.me/auroranode\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one12249q4sxs6ewrluv0zar8jxv4pmvuu7m7qgh5a\",\n                \"bls-public-keys\": [\n                    \"2b81f159ab091f825ec6c7a8be9f79a39450dcbbb22d1d6bc603b410d2870db589e95d91d6428fd994ecd6d50cfbd60f\"\n                ],\n                \"creation-height\": 3392779,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12249q4sxs6ewrluv0zar8jxv4pmvuu7m7qgh5a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"HARMONY-NODE-A by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HARMONY-NODE-A\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3392779,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1wqq9xrca6g5vfaqwm47gc953kgy6kqxm2pffuj\",\n                \"bls-public-keys\": [\n                    \"45a955c64637ba7316d8ecfd58c9da06c2821612a673e1b3eb2b88527227f707646d14b42be1a54093c219396474ae16\"\n                ],\n                \"creation-height\": 3392981,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqq9xrca6g5vfaqwm47gc953kgy6kqxm2pffuj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vvhkmljqz6k450439kjcu5a3seuqfeq2kfsn7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Living in Harmony since test epoch old Baggins validating every single block with love & very moderate comission to attend Green Dragon\",\n                \"identity\": \"Crossroads\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 2.5e+24,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"NORTH SHIRE (*˘︶˘*)━✿✿✿✿✿✿✿ NODE MANAGED BY OLD BILBO\",\n                \"rate\": \"0.030000000000000000\",\n                \"security-contact\": \"Bilbo\",\n                \"update-height\": 3401880,\n                \"website\": \"babylonodia.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.1013978e+22,\n            \"validator\": {\n                \"address\": \"one1jg5rezn9tqdgpg0awewu9khrg2y9alu3jjpc4e\",\n                \"bls-public-keys\": [\n                    \"1c84f0fe7e290a8a2a2bceb4a03208d0b6069914590899c52edfe6b275ca0324c8fac355bad47b1144cc2c5c1313ed8e\"\n                ],\n                \"creation-height\": 3395576,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.1013978e+22,\n                        \"delegator-address\": \"one1jg5rezn9tqdgpg0awewu9khrg2y9alu3jjpc4e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"td17 by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"td17\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3395576,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1l85psy64zvjjqwz2j6224tekjsslk37ecdggfc\",\n                \"bls-public-keys\": [\n                    \"66e13bfbf55c3699bf74b6bf99c1c482643bebf00a42f9ab10b6e19969cbc95f1fddee48e33f3643b0860ec7c9aa098e\"\n                ],\n                \"creation-height\": 3400593,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l85psy64zvjjqwz2j6224tekjsslk37ecdggfc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vkncynzf0kegy80nfa0ppfnktg4ltr7dvlzag9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"You delegate to us, we pay you back Awesome\",\n                \"identity\": \"Jay the Validator\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+25,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"FNHarmonyOS\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"@jerobeam\",\n                \"update-height\": 3400593,\n                \"website\": \"https://staking.harmony.one/validators/one1l85psy64zvjjqwz2j6224tekjsslk37ecdggfc\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.102187541454980923\",\n                \"blocks\": {\n                    \"signed\": 975892,\n                    \"to-sign\": 976254\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122747489026373194\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.121604860889963793\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123736111193906454\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.128291026572022993\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.124769809638345961\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.138515509101993126\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123025842090965700\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117471994775696293\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121801033265202391\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118823973476365549\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.106978774901300869\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114674660332331341\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.121137857586909872\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.122603766317381858\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.124439384351359386\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.114311645101131207\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118588062788526985\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120269842112894882\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.123156733013205691\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.122041757808370490\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.124124087693924183\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121336376380697925\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.123055488972647875\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122698318566205099\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.079447499497585196\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121859994125259768\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.099666293125561277\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.100646698055686596\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.100891460971136929\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.101323030892738054\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.102187541454980923\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 808,\n                            \"to-sign\": 808\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 85553,\n                            \"to-sign\": 85616\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 165472,\n                            \"to-sign\": 165472\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 202996,\n                            \"to-sign\": 203000\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 185987,\n                            \"to-sign\": 185988\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 335076,\n                            \"to-sign\": 335370\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 3.2842535524173370372776e+23\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2e+22,\n            \"validator\": {\n                \"address\": \"one13n974xtdzxu4uu2ugz8e2ml5p8t94d8x3tep3q\",\n                \"bls-public-keys\": [\n                    \"88e1951c59a16248525c030a930677517c3f3c049dc6a41234743844227f5c623002dc4df9cb814feeaec7875e85b297\"\n                ],\n                \"creation-height\": 3403545,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one13n974xtdzxu4uu2ugz8e2ml5p8t94d8x3tep3q\",\n                        \"reward\": 1.6522923476562240604299e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18zj55tkmgw78fmjagkfcaey9x5j7t8698nr2vm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19verfm5jyu9ys6s4nrzm6a8888kzdlvmqpenh4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1p6wcwnajxc208uxpdlx9sqktt6t8kk8nw9hshf\",\n                        \"reward\": 957749589638082834,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10wgvlxx85vwcfk43g0vzss95er80uneh2h80hv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19pumlx673zs6yercp2penvx82vwd2dmwwjrsx7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7y87z6duyjawdctndcpxfkxpyy037qa284zad\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h5y2gep78xtfuepc40eeq4xju7wkh5x4j2ne93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aw2hx2ydu4l8xkqcvksru7xeg6prt3rsr7372c\",\n                        \"reward\": 986838867778578262,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1unmae47j2w3q9vxqs8fjpa33u8eu8w5dfsuh5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"harmoney\",\n                \"identity\": \"harmoney\",\n                \"last-epoch-in-committee\": 192,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+28,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Har(money)\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"harmoney\",\n                \"update-height\": 3593585,\n                \"website\": \"harmoney.harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 54402,\n                    \"current-epoch-signing-percentage\": \"0.999889722099691222\",\n                    \"current-epoch-to-sign\": 54408\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"37069581364027499997999999.999999999999999996\",\n            \"lifetime\": {\n                \"apr\": \"0.109880535240502039\",\n                \"blocks\": {\n                    \"signed\": 758901,\n                    \"to-sign\": 775296\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.119589695357491368\",\n                        \"epoch\": 260\n                    },\n                    {\n                        \"apr\": \"0.118895075492979693\",\n                        \"epoch\": 261\n                    },\n                    {\n                        \"apr\": \"0.117759418028151204\",\n                        \"epoch\": 262\n                    },\n                    {\n                        \"apr\": \"0.119316040933203049\",\n                        \"epoch\": 263\n                    },\n                    {\n                        \"apr\": \"0.116654859609644834\",\n                        \"epoch\": 264\n                    },\n                    {\n                        \"apr\": \"0.117170313760074455\",\n                        \"epoch\": 265\n                    },\n                    {\n                        \"apr\": \"0.130269623681461374\",\n                        \"epoch\": 266\n                    },\n                    {\n                        \"apr\": \"0.131221860316324141\",\n                        \"epoch\": 267\n                    },\n                    {\n                        \"apr\": \"0.124226075151017383\",\n                        \"epoch\": 268\n                    },\n                    {\n                        \"apr\": \"0.124496643632277756\",\n                        \"epoch\": 269\n                    },\n                    {\n                        \"apr\": \"0.121949093743656000\",\n                        \"epoch\": 270\n                    },\n                    {\n                        \"apr\": \"0.114041580609361644\",\n                        \"epoch\": 271\n                    },\n                    {\n                        \"apr\": \"0.111967300826885326\",\n                        \"epoch\": 272\n                    },\n                    {\n                        \"apr\": \"0.114287562637312670\",\n                        \"epoch\": 273\n                    },\n                    {\n                        \"apr\": \"0.106730281414052882\",\n                        \"epoch\": 274\n                    },\n                    {\n                        \"apr\": \"0.111229463979424710\",\n                        \"epoch\": 275\n                    },\n                    {\n                        \"apr\": \"0.104538139972746027\",\n                        \"epoch\": 276\n                    },\n                    {\n                        \"apr\": \"0.112164999035701774\",\n                        \"epoch\": 277\n                    },\n                    {\n                        \"apr\": \"0.143457020417603233\",\n                        \"epoch\": 278\n                    },\n                    {\n                        \"apr\": \"0.135152361478230489\",\n                        \"epoch\": 279\n                    },\n                    {\n                        \"apr\": \"0.118738745244782936\",\n                        \"epoch\": 280\n                    },\n                    {\n                        \"apr\": \"0.122938131856675415\",\n                        \"epoch\": 281\n                    },\n                    {\n                        \"apr\": \"0.095375982245978189\",\n                        \"epoch\": 282\n                    },\n                    {\n                        \"apr\": \"0.122281933189153425\",\n                        \"epoch\": 283\n                    },\n                    {\n                        \"apr\": \"0.123034279240109307\",\n                        \"epoch\": 284\n                    },\n                    {\n                        \"apr\": \"0.122622804069806158\",\n                        \"epoch\": 285\n                    },\n                    {\n                        \"apr\": \"0.128199864393933888\",\n                        \"epoch\": 286\n                    },\n                    {\n                        \"apr\": \"0.137880773209850780\",\n                        \"epoch\": 287\n                    },\n                    {\n                        \"apr\": \"0.178465868220217373\",\n                        \"epoch\": 288\n                    },\n                    {\n                        \"apr\": \"0.113246123856772600\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.109880535240502039\",\n                        \"epoch\": 290\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 65100,\n                            \"to-sign\": 65536\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 62104,\n                            \"to-sign\": 65538\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 81913,\n                            \"to-sign\": 81918\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 64816,\n                            \"to-sign\": 65538\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 80513,\n                            \"to-sign\": 81918\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65444,\n                            \"to-sign\": 65536\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 65534,\n                            \"to-sign\": 65534\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49137,\n                            \"to-sign\": 49152\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 49079,\n                            \"to-sign\": 49148\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16384,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16296,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16212,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15403,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15775,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15106,\n                            \"to-sign\": 16386\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 25681,\n                            \"to-sign\": 32764\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 2.87870000099138612302784e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.517298444698509757587e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0e896e1d2e1a6b9988eaf6db3829936db3a02cc2608f911587e14a81dca9c6211ab7f2e302ee1d44a08e6b8c10896c8b\",\n                            \"earning-account\": \"one1wc32qcufuc8lzfs804dtrjrq2zufnkczp43u75\",\n                            \"effective-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"group-percent\": \"0.005781993054576676\",\n                            \"overall-percent\": \"0.001850237777464536\",\n                            \"raw-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.517335597914023358818e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"752223adbbc9379f1f52db107febd200e4944b41703b21cd47088f263e915c67169720f45914e90b6ac3502cc37fa717\",\n                            \"earning-account\": \"one1wc32qcufuc8lzfs804dtrjrq2zufnkczp43u75\",\n                            \"effective-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"group-percent\": \"0.005781993054576676\",\n                            \"overall-percent\": \"0.001850237777464536\",\n                            \"raw-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.517298129101853852042e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"109abb96c34fca03753c9c6ff99d8e8acb49186915bd053d9ad928143566bb32169aa39cac851b3c0eeba55b8fbaa10f\",\n                            \"earning-account\": \"one1wc32qcufuc8lzfs804dtrjrq2zufnkczp43u75\",\n                            \"effective-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"group-percent\": \"0.005781993054576676\",\n                            \"overall-percent\": \"0.001850237777464536\",\n                            \"raw-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.517545326021421801109e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"442aecdfc9280bdf015288fd09183e9caee49f12fc36f80a001ac41e38a18132d66f3b16e1f2de3ee8110fc3408bf803\",\n                            \"earning-account\": \"one1wc32qcufuc8lzfs804dtrjrq2zufnkczp43u75\",\n                            \"effective-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"group-percent\": \"0.005781993054576676\",\n                            \"overall-percent\": \"0.001850237777464536\",\n                            \"raw-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.51743501254189815924e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"441988ef34a9c2a62a8122cabd5945978f11db550d09090bc3e27b8053caf900f75eb9a6193aac3f5c3fa223d623e417\",\n                            \"earning-account\": \"one1wc32qcufuc8lzfs804dtrjrq2zufnkczp43u75\",\n                            \"effective-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"group-percent\": \"0.005781993054576676\",\n                            \"overall-percent\": \"0.001850237777464536\",\n                            \"raw-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.517545326021421801109e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"45e5a02ca112d39c2d5f0287456ca49da7aa2b500ee1475c5d74c62d8357429457d84d69d8bdd9f14a631472831fed87\",\n                            \"earning-account\": \"one1wc32qcufuc8lzfs804dtrjrq2zufnkczp43u75\",\n                            \"effective-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"group-percent\": \"0.005781993054576676\",\n                            \"overall-percent\": \"0.001850237777464536\",\n                            \"raw-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.517436785455664735692e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6a6cb2953ac62072a19497974f02f18d95debac38048858858b84d277f9f51b222ad5f6403351a2eb74c3d2f3987520f\",\n                            \"earning-account\": \"one1wc32qcufuc8lzfs804dtrjrq2zufnkczp43u75\",\n                            \"effective-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"group-percent\": \"0.005781993054576676\",\n                            \"overall-percent\": \"0.001850237777464536\",\n                            \"raw-stake\": \"5295654480575357142571428.571428571428571428\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 4.451837414888e+25,\n            \"validator\": {\n                \"address\": \"one1wc32qcufuc8lzfs804dtrjrq2zufnkczp43u75\",\n                \"bls-public-keys\": [\n                    \"790f87868d56594bff73320b50a2b9b9818ed30780a2aeacea6ec5e6c098e6ad073d61c73946d3855a9498cee8eca200\",\n                    \"1009456b86cb100a2c005c94070aeb79e8886536c6989d85a795dfe2299c88889a58da0565307e95a9b96407bb04a800\",\n                    \"a5666b1abd77224fbc83ed423e4ce9b9ecb0b40e7b4dfaad0017638d90d010398bda2393642ff4fe1dd6c243e7252f10\",\n                    \"8f376ac582dfc5dc3d561f735b665b5c139c1f47b16aabdf270a26ae45e62863ae0f8d7f6473012f569121decbec7d80\"\n                ],\n                \"creation-height\": 3403869,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1wc32qcufuc8lzfs804dtrjrq2zufnkczp43u75\",\n                        \"reward\": 630019511524529564,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 147503037262595471276,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ch79m3hk0jxh2xsj638azk5aatwamuyqhxtuf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.386448e+24,\n                        \"delegator-address\": \"one1ct3jxm4j23c0yjxw89mfj5jp8dwfxzle4eacr0\",\n                        \"reward\": 745225896478613278354,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jmgn96czduh7e0hf07rcdnphmq8chh7jgek2x4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17lu9a5psvv377q2nc68s5jhc3e5v2t4943vw5g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v47v5egc4cvhh2eky833pxf6mfgpqpdasmag93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ftdcrw8lc6du8t2zvrez6dpr4v44dwdkak4w8x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16mds8v2m6fxq5e8mf06cnhmfhlwj6dwdj7e2t0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one103q7qe5t2505lypvltkqtddaef5tzfxwsse4z7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1405nyejtjjg5jjdjqphwjspqqrytx5ekgvpj9p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q37j4jvfjdkuj8y6d75jxwu2vuktklhqkhh8ra\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17qzklj3k9yak6q66zunwyfyn2a70nyst5809dh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.115176e+24,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 103498039104930661084,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one190c9h3nya6rttklanutcu2nazyneemr2l3tyx4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19uz0cjmk6snv8u8804rxxvy5k8hf5lduz2gssz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12sxd322w4l5sxc2aevhyqk005q9zgkgqtfc4y2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qwhfeter93v4ec520x2mp78wxz66n0afjcefj9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gj4kwuu83cj5p8rgc4eqx8vdrhdl2ummfnx4xg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kctx8gmyyln6hqvyseqx8rfgkxu0czwjc6jfha\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wwrh68xnj0yxlt56u6kljjj5vr7ggj2yvk8phe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xuu2pf25vswl56gavmgsma60y7l42d4wlz7k0m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vvyakvldgfufhxsny2vzwyg8ytfwew7u2x9g3r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1se49tl257haal9sxdu0jh9xnfklz4v67xz405f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfs5hm87kfgzq8x2a9znfn5gnr7rvc2jryqdjc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one105qmxmwvwcvngvxwe85yml4qwqz08y69epfkl2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1twwg2sv0ld6x65rugawzh8y45rvxrkr0acccrn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wt22wh5m5rdch3469kn87jgcr8hz2qsjpm2fpx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ywxxttjeyj4js00wx90uy0w6jkpc8y96ae6xt9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wsxsdfyxglpjvnxl64h6srnhc4a2sxygwehkcf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one149f7ke2t9pzgzfxcc2r3jkr3ddermg0gzyu39m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcjmjquyfqxfzddn6mymsy6c7gc565n5wv5hwy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nlhqusgzyxp9a0u6rvqrcyg2wr2npcqmequar6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153v5njwfmwuxf00vkq5cz0wnp6yxhqv02wklw8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cy6upkkyadshlwffxalcmyskd7c4vh3luzrwul\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wcgr0ek8sh94z0sz0jx3g6jss3y3ludt3r8wrq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fpvn8v8y0jlh5y0fjnlamx3aw0qt9g6w4446gx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qk30q3mc6948x60fn5qp448da7nz2nsfkldv4w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15ezkzyl8s34zyp3mxexue3edv9uckws56pufdn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wkp2lvcy52vpzx0m373ylef0jmwtaepy3zlwf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p9kzyh6y5swufe0242g0hemtue3g8jel4un7hp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hduye4ylnewvfwhnhnwjej052su5qx3g8swz6r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fevq64mxm72ykjszm527huzfzsd6ttvzu326yf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15gjeqldmfkmue72wmuek8t7cxwpgx7ptzjlhaz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ptl2czz23uqek770pvqwhqt3hcdftwfgwndzgu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v40r5clqrhvtcwj9032lw4rcxxwtw7nx9pq5f4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ymg6tft38undxd7cjreumxqjj0yzj4k4zpa6hh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15unvvy29cyqxpukkv99s55fz0jat8v9taruqmg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zye06vtysy4jwknd4hmcyed8yedyw6gezkzngd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zpwxhv9fpfatrwhr229eupjcawqp6hxntu6jjm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10ht4nlg6a6txn886twqjqfdc2jrqa4l8knzkgd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xenvednr5n2lmre9un24ka442zu7cfua2qv39e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m6vsf8kf5h3dwtw03k0sz0k3cdad45fu8vcyp6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1shj6edj4qf9ekxqfvepg4veat8ak3kmx73ty70\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1my9r95vjzwpx7z9wn286xsv4w6mxl2cp48e85a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17xycdpm8shsj5a3sk5923qmqvcfwx03x3n3eye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16r9s65ex869qtef30zkehr2m02t5jxunnlyevs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qmvkm6z5rlrk9vqcqv49s4epvymumszdatrh3h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zrgxrqxf03v6reyn4npvaz3rn23pq9sj4zuunl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vcrmwkzu322jtp0ktdcnsxxjm84n3z0tlvglnn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rx6z9mjal7ewurpw77r4tvejammhfyealqqvqr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pryn4h5fc4uj86xz368w7na4ycqdpncc790aqw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xmqdwqwg5tqvt9jz7qdepzsvvj8k34ffq3tvhk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q8dh76jq82l667mw69r35gmwn8mq0rfgrqznp6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15yzv4gr59h49gadvpqhhg0qtl9qhle26gh4mdr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak9n5jvk83cl4as5uje9689pkxdq4994n2ed4v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k2w6t9jqgzg46vdf0jfu2sn2r2xx90vgzw3mp9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dy403a866tld87sgtmgpmg90pd0t4myz6y7f9f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14aetr35pta0t7xq3vk9nmdp242msglrq83yhew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1whkglgjxc05jvh8ghp0dg77knhxrkmlka2qzy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z6kaghsxvdq74nt2gykkhewfy87kltue7vjfu8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one162afugzh65ca92j4ypllfj9va5pdpk98nlgq6r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12r0cg0e8c0q242u23enwuhjezkp4fuc2jrj33d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m8agm4v8y8jyhdd4ppcqprpwfjf0wd5t35wz3h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uqhap3ylc20pt2r4ftpl8kvynllpvkvnur5r3h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c0qte3nnepuggay87p2gzc6kscd3e0r6pkydxt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one167dmw0ptd8n60dcjz6hnh36xplx4dej3hs2vv7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wumxfgugkalwnjxff6twctga373yf43rkaazds\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uhmj2c536agh3644p639z5vrar5c0sa366n3g6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a3gms2zdcxn4c3krpgdqfhacuc5y9zfpxcw64d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qmcj6wynfcjp9dkh3scnczenu3egm0azfrmmgt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kztszadhw7d36ml242g07jqqwa32vy6hndyla5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5u9ue2q5r65weahrcy99c4c6aqfln58ed4mge\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xpwf4d9s6mzhqefz2jaekg2802532gjar97ff6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k5l096w26lyx2rww8n3ja60qvsxqkwy3dcn9vk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jr8uyn9zx0cnzyw03wthqk5acyjn73xsplz24a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16rjq5r0njnl9uy20du9nl4gtx0kpzelnx0thmk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j4l7vt8fr55lj8gl22hg3zc7l8cws6ntw40tcd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k2dlrjdj8w4jpph0kylzsr5j2hpecqc07hwgdx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tnks0y6sqjufx8taycvkp47cdt4nmzgcwexfc7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19yj4k6nfqk39lkmyxggqtq8rlzkydxzmasktz7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16s9ds9jdf7wlkyjzayxs0y8zhfe2nkjqm4ffdd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g6qn2fp4tddgnvrp5776s8cyfc0wfakjre7x7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zkhm8gr69nwzv94j46c5h0hw7rhsmr6cy4get7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eyw3jdjx06g5ahs8hlh5jyg23hj60xkar6lkql\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rny35vys9sg5mckuwycg6wkvmrk43mzvku3tdt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ew83l8708kas8fflpx969ulfhdlpr60mjlm3fd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zqw8upr94h0g76fy3233q7d9tekzd7z9pd7f5u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhacqy02fkvd9sud25nd8pqy74g672cua7fjk5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x84kvu95fawk3fc0l0jhxzl4yw84563dmh78gw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c49r5hjhkyjghdaqwgzh3fazxjtfc053mc7z9k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cdpjezw0cktdtpw9zewc93g5vg2sex8pwgp90z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t96gual7u4dfsfvqgwmgygdez89fy25ajvxt66\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lvxvyeu9v9yzdvjyks56gky25q8xfj69nutyx8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19u6j5rng6dknwcdma0haf2vpwpl9c9wrcsqvw7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pf3gys699y6a3mge0aeacnj2utmzrrlt9fn8fc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vpkkyhr5w7v5r95ufreq7nr5lhff8jp2q7hyvm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l5l4wdyskxf6fq0c23c4c4f63vyue8464gy8f8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dky9uk59xfj82872n4gx9zr2e5v6vh3nggh65d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tj7p9uytqj2vcwwkkc70s7mg5ag94aljsdx27m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h3lxnmuw6xkuvdmkpx4fh68t52fs7jtnz9t0v4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k6vjjdcj4vsyrcg72zgphjw7pv60h95hfgg6q7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15dggk0pyy83hdqmz75wsmls25we8m97u73s66n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rev8mtupgkyr4u7vzhh07u0lte0p2vzh8k65m6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qcxt4cngq0qh98ksl8jq8fvxha09rperkgxu8l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xxt6mja6aw874483s4gj7gla3cd0ex8af7yrmu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kpz8rp4vsjxh7m7gt7e48s5q4lyy4c7rralyv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n92dg78x74eka27kzsjf4zpk766ndrx24474rp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v59zvesyhz9ktft9afzscll6496dmudjgyz03n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cwm6tukxt20aun4ymlxh7v8yxdswla4nxe7z0n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one123hecr5ncuwcxjwmkqntv6qfkkzl2clgw9w5d7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l9km4f3snkdm6a50rdtccmmgk4scxkstmk5jw6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9fuc8xxgk0m9jlsj493p9hrceyu9m9usw55y6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0vn2lmh3u2tucvyq9379evajdc0u3um2sqyls\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rs5af22wxegs0e3j3mlcgxmyj4sgn77ev4q9dq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wmfzyjyfmtgazel5r6tqvueug66yu28a8r677d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one145p78ugn9jxrtnssg0zw48ma0qygszmrdrla6n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w5ud78dt0flw7waa024j2e652zgprxleryd7sg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16y2d2x90z2m9s90d4utc9gmgrqpa73zz4w7xu7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15stldnegj33fnh5y7cyxaev676g84klnwkrrtl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a47en84daem2ux2x2v9tp30uzt704yj987g35z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xrkhz29d53dagcykdap5sxges9fgza8t4tygpq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13drrxzy06za0wu6hahsgdkgswzvxugw9m2h7u0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nqyy2vagq0kyclnturkqpzm6xaeus3ttjzqvum\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lhapka42kcv994gy29stn5gt24vnhzsjumulre\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vnwdwgtrkccf3g93fjjl0xrxqfhhpl7f07vpcr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lqyl4s5lq0dlqqz2883q3djdthnrzkvvhrhkmv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cydul49heyzxkjt37fhrnxvtdnyljdqpj078qt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12z6gm0xaafavfuw5u5v5vh6eky5w7z48rmavxn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one198y9vrh6z7yd9v5ty858d55gkxg6j2tra0l39a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s6c32hj83j4qv55cgmsx48pvvj8r9xxfeqfgxa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1le0ul3ssqffmvtkc5j7w85h4p23syk7x0utd42\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tn4jwylzdlxx407k47s6w4sxg7fftjyxk09hnw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19eazxe63jrkh223ke9fhl64kwvwmcp4x7tmfyn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kuewmxau76kpvhdyqr44lvqjuwu7kjwc3lnq85\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g8e9dj4leshm88ekvgkx5darvpyk9ptcmjjerq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x4a3d6364f4u39296plupxzqjfjuay4ag5cexq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mlftxzr60vm8scg0ly0vnxwvj0aw5c8vh5yr64\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jmhjuavwnx0vkyv47xwn6x6nf435nzp8ymhlh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pud0uqrppf6galp5k70azldmnyctm5ccen6ymc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15fs8n867dgce7kjd0fxy8v2cptg27vsk43e5ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10rvavqsr5k3usa7p3eptt82svfa4ythurt3pfg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ccl7glhqcjv3m2mrmm5ds5pn0avx92ev79rua0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one147xxf7dmaxjh3dltrhp9ctjhzvs0g2j3qwpde9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fhwa7mvzjqjhah752f0q9axdrawudw7nl3p7fh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ats04aps63rq5pthkfft3sgp5xywuxsjgn85n9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ww47x4mtdhcqg89juk4nj2j6ph7qr7psqh9z9r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p8tdfqpe4arnlj2q7renuxesmxceefu0tejz2t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vavvvstke3uq6jm3x6mak7gccmrxa9tz8kq3gn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wpzq0jccdtqu9wr3hl7ud9eg352vwj205ry8n9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jv75kzldu57a3lcge5sjzwtrtf2tn3gu3fejhs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l06emtn2krhgrwxq3vz8mezvk5nnhs5q5gc0hv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one136kn4h5syl4c3pwdmhtm6n8d3hc300nzvszrxc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uxpy2hk2r6s09ylxfy9ejna8r6qcget74aar49\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eptn7qas96s577gy5t5m5y6jgwh2f55dz6c9nt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1whsut6chaytxp4d3rlgzdu0xkpsedphuy03rfm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fwj78ykq732ya9jk7jtnjaq5n6zl9a2yshguaw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18fpjpcxgsgmuq3qdat9p06vzryv5kzykh2dsr4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kcualhsyf5nw8ww745smwxl28uye2f4gpgqnvk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pp75y6dmq3egwpll5nn0285ar2quc0shf6r02q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19g77wu2p58edd6vjfl9p3xk4dcgadhd0mnv66q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uqstv9lnu4n00r6t3u574d7lxllfel790ayuak\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n2hgqlddjednwt98l5rp0n77hzx2ekfevgn7vs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15p28mkv396c7ldu2w8wapk4p3mmzampsd9dqz3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y6992jcy70a526hj7u388kusqsdwe7ps9g5m3l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1npqc8kzuta9xxgc868d46cr7pd5gh4e0pn44hm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p52a35vs83c77z0tjxak6q60f46nazjlplqm7q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lwkkm0jjsrn3clxkjpqa5fgjz0cpn780z3tuzz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5mzr4ernpe0zd7lcu09627jgy8jp9yekh7czc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1thcpk7z5mh9l2y5pfqmttr67nkx4yanj0v3xf9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m8zf7r3uez9xwescwqqdaqwq4m5qg8jgff5k8q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1km5hv28dqdtsffapw5kyzpa7vttkgalpqv9gte\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xcsdzen3amm9nysfx37jwgu244csp35rwajkfg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rr3fqev3fl482ds0at9gx3hnhhfcjrsd558uw4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ghvsmwsdpu96utea2wrcegxglcwp6avsxgne96\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hlkgjpu9ldu9w2ck8lv8nyq5n498djy8hmsv9c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v82wgndpj9d7u33zd8t6qr74rk7ngn0csrgkue\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hkwv9euakwc59kk6ns7uh3thzjtuaz942p9r0l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10d55mcksd3m8v76nz7a7cq098flu35nuhy6unu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19d4r8a02y4tvquer0uvrnh9ka8fy3k2ur776ar\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ke5nh3uew5kyknssak4h5zsaqzrrrg2zdzn28v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zduvn6tle4ezhr6p8xvasdpnkmk2lvefm9v7ss\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14tnfudm3qq5e59tfqx6nh0qvlhsjwvkypjnzdm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15pp7jtjh6k6mh920fjdymf5zsxm60lgxuuxgyp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xmffca9j6f7xx9tajk2zqg94et5ddxppjc3f2q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1se8t7h8aanwlgz5ra6w270r2k64x8kdduxzzna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tz7p36snfdjkkqkacxq8laqwrn8fkp5s982vkn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tfspqqtfj003zkx6e92xh69pv94e3gjyj89ucj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16kxtfvmurkq54k9e9wlj3896rfqppxw6ajmc52\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g8m5s5es4479lw9xlyurkplw0vjxngmtva04lz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16qupkfcugywqcwwuq9p02endaqfdax6uaahn0m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1apddfh0semkkkjs8d5lsas087llzrg3p5s54fw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yx0y7xnsj3cv3evntl6l0q5pzk7z8pq79pqsgj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pzl5gdzq5ck0je3uk0fxa9378d9tewk0upwv5d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q9mf8gc0g3hnx99hrhx8gtaugxkn0q5jwlafwq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d7laxfgf5f44tlde29jwepcqkg26lzx9t2d0wt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19zqz6wf3pvsjzmk02we2c8609cetaq9qephe72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wh6au4pfssk4d8ygnpk20njdvw92ff3sjn572r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one104hl5472vv4gqug4ymskyayg5sjulpst6qggq6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ahqmrafsc9edml9ggn7ecve6urdts76gdjk5x9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tw8e269cazk7ucz4pwvar2s28c3rjghun0wer0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one147686swenlwuxqf2wwmq50wjldm4wxjynwulcv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wuftu8lanfwsap8dy9qrvmuqz37w7t8jlaysal\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ssyteala5g2xygl6p04fjncjs42phraa0f9fj3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zh9ej0dzuyk3xvsgfpl7yu2h3h0svazaef9tcj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zk2hwzjg7wannt92nylndjvdwnwpc7jnyd90a2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ntc8eu366puln0ma5ju3cm6u6k864lpyq2pkg5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one150y37q7usvd5qpxdur4t6caazse300xug5vcwu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z4pm0jrwucywmt9485p7rttdfc98cs73wmqhfl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ycmf8cn2dlswsvenewud9088njzfwx8z63xca9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13xtjg7lr9ckkt75gahewrqq9an0z3qhuel4gk4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gqp5rahquj65nrtu52flakg5nnxs0a0n36zs0w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dkt9zm2rz0rcun3tedq4uae56mklepvxy6vtfc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18l0yyl0kmlusfejw93p6jsw059tgpe4gmel2yr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one128alqprn884g2dv3ddgq4qwjptj2dg3xpep400\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1srjahggczq59dq7yfpveytgeumv47zv77xqkcz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t35lel2p360z0sfgzdwrg8ghz2tgymv3xygywd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vwa4hxd6ldzuvavarw6zva3fmxqwhjwrjvzqc2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zjc84kzelk6gdu5xa39685ghzvazlz9uve4y2m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xxrezm5qm66hjyf0v7etnpqhxlj7eqfxwzqexx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cnugryd4eszykeutvflskfk8fx70nkqlyukyug\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ah8y2gw7wutav66hq7uc5te0jyhgcselqjpa8d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z78zwz0824ylptmns7356cjsjkz0szzug3xdeh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vd9ej50jsz060gvc6ydwckfjd320hmwrx655h0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13cl969y5qhxl4588l48d07pn2yu3k7wc2vx44n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ut6etdsyvkeukzz0nfhgp49ftm5hqaa2ze4gsz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14c5kp8hkjalerpdk3c7qw897ygpl22eflr3fk6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12yneunuwf5payc0n4rxv3gtwypuren058ypsx8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y9c3lzqjthn2eke62qcqm2f4tsaw4g5gva7n50\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one146zmjnrsh86pgnraaasck72dstpwq025cq082c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vcl2zldtdgvfvfxpmn7wem6zu82vfhhhh74zqj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdvzzegj2f8z6hy8q0qcleuxgfa70kjap5aeyu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hp8wlghjzzm00v4wg6hsxvypn2xxp74j6emme3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a9hrrs3gdfxh3jmgxes9jkc60sj2m6r8hgf6sc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p5y4tmldcfz7wx7s9fny5wspcpalkwnyefmnxn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tzfrdnylervenrwaa75fdd8h2tdy489htugql4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sj8e5cctm7uxn2jawxdlkf6rqtw0wvfyj465cs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ddq3uhcs7yadjtrad9d4hudxhjuxf9ku4vsh8k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g7ffntkcecz2vjmvqwmz9je944y9p5pw6hgumu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t7uw25qrt3zuj9cclycafg25ketm33200ud8kr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one174chemy75u4tvrcajvgumfycdk5w5drc0jt5ww\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pvzjfem8g5t3z8gpa25glys6a4hesa7kx3qff0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1glphrw7gr4vluwefexyde46smk9gnrsqkmvyh2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cxggzj0g7yc0fu4ru93jwsv0q7v6jv6fdwwy6f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kmphtdcqgvzhul5n9lxxyrdcxhtr99fzwcse7e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d8dwc5pxzvjuhm3s4j7ptxcd9mrws962epq4ks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x07rjws2l78zrpcumwjpg3upd5wvq7vvmk492w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one197yzd8v6ff9esvezhap9phfdtru9h5s0ccvuhu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wp9m62sv8flvphqhfrx00th8z02nndamfxd9lk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ajftmkuyhgphw4kxmu4he6xvjndd409zyr69f2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15t6jtqp27fk5tk5vknc5fp6gxlsh4ec9un4m0n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hzguded67c7efh5ukhnqu0xqvmthyjs49rk2uz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g27q5x0jsrpkt0sy03z7gu6x0quqq2u8xru5mu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cwuwn47sl4930qak4fk45phszp5gwzz6dq4jjl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dpuya8ezkh8wpuy882200qsgwy5tqf38rz896l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tjac2m8ejx87gttucl94apnj9xd5pf0t8xljxj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ggmjzh2vyxkd23nw5esawlwf6xq3sxp2q9nkr7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e702emavrkanyth3pe6g7rj5zl4y0v4w7su472\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gcy64qspqvkvs67fguqzda7vdsvhrdpnh6ewq0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19m8tty2a9gydqf8gc0rrpatzh7qslcegfp73sc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nuf90460jpgucsjs560fevj9s4x9y44l9wss2j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m787nn3zme38nzf3sj4juktpan2py2yssvcdny\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a7pp4ah002xmsng70vevl50wl2uejlssuwdcvh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rsfzfm8n30gjsvxauwghsl6dp3jp8trt3vffjs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uz2hw38kff47g5qldlxj3sm757w5tx5q4hm2a6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18ev2ulkamjmmel44kymqw2djfg2j42dyvmz9xq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nj0szc7m7w0cgl84uw6qht0zr39mna94m2ap2u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dp57neul3yee6d664k3knksfvmtkljvgygqjsf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t5jcrftkallaujy48qmq6kwjg5nwph2mdz2dpu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10vctm2z3tvqr50un99vaxyansp38ljnxc5y46a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12r5h6nvxwgh5p9j7uz5grqq2n3r3r664pszncf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gwa6je5lfurdzwjyhxh9gezvtjkfnzs0mu4ljw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cehn9kfhfd8zj8u0way9594ez2nr0gdtg45qjh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vlaaw8glyd9fsw9vas3sj3ef367n7j96qq4uwy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mav7usev2n7vgn96g6y2rd5643fdh3cwqadxqy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one174wl4p6ywcsnd60tejwlfpu8cqmh0u6xrh75m9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13s4see3e9emjjfh02ykqvesxepwl6t759avz72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18ylrwcreggrshh57c29n9kj0zy5kfd27p8zkkh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one164avnzlrujw8g5mfd3ceqjr3cgg7du4qtmqq7m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14w4xcs7yjl5w23vc9qfc4nsxrm8524ue4dxsmp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v2ea45dxe522nyhplgq9f4a8np8w0vue89zeug\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9zf4tevzakwadjngyc93uz9rdzvt9rgjppxh7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13kf2vx5yp0cjxvgqn08kjrfanynfxu26nmkawn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fux3vakwce3aepy94sgux882hajyg48kv9kjdy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18hx82354t9tx8n6u0rt34zvmvruy38dj9350y6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19ewf9fmdq0afdmyj4gdrl6kz78djcp5equ4f0q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mzswgqfqj6mcgjcy9fw2qy5ktg787gjdya9u39\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ctwszvmvzld54jn8x4k9mekt9xvs7h8h08z32d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13ffypd2t8lrnlw3h8x6dvex3q9knsqsadg8yw0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ynkgz9vq6fyjxnag52f4k8fncnny2s6f64u90y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1az82fku94axuzse6rwc768f7cjc07prdd7jmpu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one168ewlhawljasueq4q9u7xw0un44klpfw4xzhux\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fggyh3f0pxg2ex9qvvgeefj8lh08jgssz070dw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rc5wxwsasv7v5v5tpq3mmke56nnun3lrcqjy48\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10l8uzwx8sjgftjv0el8fq5sphvjcc866kt56ej\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kpf65cl950cel377pm7kuvra2fjwfhmm28wp9a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one136z8688l0u707v9q9gvcxvhmy9xgv44cscww89\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qexa7j3u6ruaxn7jrw6mw20a0vv3lss0nqcdhc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x6ft2tqcdsdcudm8tv7lk9qe7mvr3086e90vgv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one177t4nfyqm46yt24ufsmushnwwhekv7rwqjukgy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ee0kfpjdvpsm5rkpekv4tqu738vez8a0c32g78\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xrfxp99yw0yrhq67uftjsgpy02pkqrv5aqdgwm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1furldna2j5m7rurtwacqc6j5ens3wt8y7uegd3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18qkljx0vuc683dtr5j4a98fay9zl9tu2us54zc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eme63njsepsg6tlsghjz5xhp70enjdsjje7msk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jk9s38fmu3nhcjurq96zkk72z5df046myp6ntt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fl2nws30p9cfn5eyxvnam6mv9zeqrx9cldclzu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lys3mwwu04vfyfk4kqdcvm5t70dw8rzj63mack\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jqy8q7n808ndg7f6exwksm7ezhxjzsnvdt55v9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jt85sw5930gtcnsws3afldx3tzjjd3gndc4que\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17uuq35583559ydkwat77eqgyqmq4q8pjkd599h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jduzx5h3h8p7a2pet26255qn2kc376dwzlzn0l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rl0v9uys2saelaynfqk2jjt6uqeget7exgkr8p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cukhh9lk5l67vhguckat0yslelvw6q0j4dx7y0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15mzaq3vchapc43t92jxnkvcg0ljclfmjelw05l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one109csa2fjvkkzxy74dtqcrpwqtdmcj6n32fj6yv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mz5zupf4paney6yxjvxxarh84ud5jnjrn4s2g8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16nexw2s6u4j2xlzvtm4prxpu946fygsajhmphs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k3da8swz5q96l6vtl4k4aycwhg90ftmuzr25m2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ht75c63v7fej6f55fewerm8qxa8lvd7jqtyzx3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16dcwl8ftecr8jsfj4n72y27xf0sm78vvygt8y8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j0tjnrkfr6tpjghdzf7706pxcz5wnfptv484z3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lmdatsmazdc3v8uw7akchyejrfyul32wzrmm78\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18ctmz8dsy2n75zn2n35m2wclks35wl4se3r64j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y5tmzxc6a6564crjnmmlldwajc98lcznt6fxrl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r5an8m0l9lntdqwv9wsyzfvprf5zdczxnzdn9p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h4mr3e466k924h89e32lhmd8skdaxufy2hqte9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jged6c388nhlgm0qcse2uqk5fsqxsmng665z57\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10lhr7mj4a5zk0geuup6mmd7wxty6demj059cl7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak8zdnwckv075xl2l7q3wg55plzaf08uxsef50\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qhpsdv8tvefj8p9nkqrqj44s6h2ga9uqkmgadr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1clsx7ep9e94mqv2ph93a5k98jm6u4642r2mprs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dwkahc3h9jy8xqan3ay57rf3gaqr3g3rxdwqwk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t7am2vxxl5xwj0sa674jq8mjewllsp0l909x7c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ndvz604dfy0r5x7x6gdk38zwspvleva8es8acs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z2fdssvlzz9nwxt2ng7qnpxryv78yyj8wwdgfu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xs0pjn7kk3dhu3eqlre2mqjhr4llyva4gpvege\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19znj3k7xxwq57j8me708gxu8z2raxgpvq9lyja\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18978kr4t4zf3tmx79pvjyrcnz3339mkavz7yzt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gv6muy9c50hjxvm2kqpayg23pd9z88r3nkz9fh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yc3mh69aexz747pjfj64watdlhqhtue8yn8g4s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10h4jm395m7r3l0r4aus79em6xvf3x2u275u05v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17yr4squu87xqkl9yk4t73mr6ljly343wrytnnz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ge3n8utkr4h3letah40ewk54s9yyu3wk6n0mnr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19cknrv2z5dtn2gc2qxrw9669kzhs9qruve7nts\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdakkpcr0u6fef660rmlsztk0lgzp5e59259du\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15gxfj2dacuu5fp2mugxcstnkrhhjznkwwppge6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uw4lff3pe86gygdwrmexaq2qdqpr6cm6uusn7d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xwu8jn2k4qnd5m94krhzecv6f8jxzfyu9n3eg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qyna0mdn94szf5ha6xsss277mr69weegyehape\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c9tkguyhpxjhnq2neygwv7aj4uqk0na3ael0uw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dyamzvh84skauweh7ms276qxj0x92xh77hrnsx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one148uhaw03d7d0ht6zaexx08ak5zamt48mzlnkju\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q2nm9y9nkz0lm6twnclyd67892s2edvp2tfpfn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17fxthj0hvgm5y5tpqq3qp2wdel39rwka0syx6r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jqaezum0l3qasznsjxstxuspvn384chkqhwxjp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a9mjnm52dd23mn8mpt0gx53z7e3qu948ddemz5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xx8z2sm9m9thhs20k92p7rfph2f3tulfm60ula\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g3n2a4wwfvy46se4njk33z860f00j0dnea8aak\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ttrvedyvds362zalr546xl8weuemkudahtxyyh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4m7ahwnayfk2leknrpz689nf2de32ycwju5f8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wg4vtl4s2q025dqxn3sv7pha8svw0z02sr785d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mkr3nhrdzj0jczaymfp0n0fsuhj3s2c7ent9jc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12m6ddz3xcc5muthfxxy25xdze2jprguvnnrrdy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdhnrj8060gc9eh0rkhye28zggrfqk4f2su7ur\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fzsszcz4snq48hp65j8fh9xtzk5lazlqs7pwx9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fx5eukxkl2t9zumg8umdc2l93gtn8qmvhcq2r7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one157df2j80avyqcq0y63m00mpc3pkk5vwkfxtuat\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10t2t309fd365jsakhsy4a87ddez0lswc8vkxw6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18cr8m90xdegzls70zqa7fa6ryvnr3whvf23kl4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jjl66ydzq7hc2ew52px9g3t5uydv98up420wfy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jnlkx30mcax57vl5ycmvd2grx90ze3rspqv9tt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1400g8mgjlqypr42y5nehmawmyza3jghf9wgdqh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13t6qdzs2vwux9frscs0mn3sx96dg72eq96ghsn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xjq7xcwedfawrnee8nk3j2sl26tlpy7pw05qfq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1caqj4t3jj9wku4y09eexsmnkyzhagak7w5dgfv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17umfrruqywa4g7decaqcj29klzcmpj6rcza82h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xqfgudc87h8c2mukyl2mx77sjwdj0sc78cqr8w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hkruhzhgaufve0qx6gecs96q2a60kwfy8vsq6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uz5ld4y3qvpflypc23ljthsuhydy4k4cpx7mcd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ajvyzc3qlxfgm9ehs49w3mscc9ualrsv0ua4ds\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1464ej5g4an5gva4hz9rurw2hxwlj7r8qhc78e4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m6lf8mrse2k6nz0rc477w7nu2nh2eu3vf3mke6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14k8gachaftrrx9k6dlqdl6ywzdsy0p37dyllfr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18tfnjuzcdmf3xfdwcdnaychf4uau4vlhd0pvfz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nw2fusewwagenrxutwf0thqz659lkdxgeh48g8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ntj04e4hfs73cre667xgpn2xqhrvnazakdn0z9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13k6qzehdfhqsfmdvxczzvw432h225m8qqg4vj9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ltpvw8dqewkdlaah6rdw3z7tr2peu50fj2yexs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hnnfexzhr3wlmf7w8afe5j8agqt5p3ksxygnpy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wg2eplq9ydezwaq8kj29yjuxpz9spkgc70yh38\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k9rn8vwq95f5d8w30788anyz9rvsnra6he8ly7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p464w74zv38r0u6j9sa3mmtxd5n6crwe7zfq8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v2p8965gxns3yunml4s5rm28mlj9xlmgfcdnhk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t9r3m96fzz2w6ynvqtm9efvj3lrepuadh6zw43\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one157llwh8pllve756exutr38ag7sr49xfqcpfgzq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15rly35hprenu50hl0axvf85uxv6whc6rf4w26j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xq3un59hdvx8yq8pg88yr3hftlj6nvfxwjr3ap\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fqtzekv76spfc5jzeaekgcayxhdxdfvdf7dnru\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one134dc9lkv553883x6gncg3m5nxh64z87gcw8p9c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vtjeq99qnv2e23ah4vgvxhtc2jrspnkh90kcx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13umzx6twgs0yxeeu8dvvp2wjkarvw70f3hsah9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eysthhz43wkrtrwanjfycqrunmppp94kfkdht6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13fhvlqmtdrvar3ttulw56ssp63j958vztgyfdy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cam8ry0lx4mr3s2cmeqg3cddmq97flfad470kh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vgw3a566ns9j2954ustrmt29pzmf76rvutmlv4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g4re7myl0cuke34rmfrt86sr7sr4udw0x6c2ha\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one102rd6r9gzann70saup20v42999l7leh0l25szc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10qr63wjwrnqhu089th5dllr6dcuz9rlxcpn7cn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one104s3ek348j6tyt76g2drtxf4zg35krx7kng9jw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cefm8s346yjk5swzn9www8am3s4nzrqf2cm5c4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ajl4ja5x6mzcs7pejzpq42mrcenxrnq96xce5v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13aurugkt2wllq0nzzymnx2d3nlp3y2dmnje34t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qgmn2qf8m3sv0rjzmgnkrk6kne6hvncdlnvehq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p9a7zmu54ge4mgd5zjl5y5tu7y4m07jh0d7dwg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mycf6g7enx6upz0e9v8cmzhg0wc8paez3shg9u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1769s3ma7r5rj53fvpl2l3f3veeaudng2jnydmm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12v4q9j70ma5yczpd628a4jt9hymtcueztj9f46\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ttmy3ktx9g4fjh9mac5mzvp62y0yhcgzsjv6el\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dw0wzhky5jfqd245z967malmwqhwpltpgha9yy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hh9u0tn8hnaa6vdwy2mjt5ueylkc5932ayz85g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l24hmx9jxhw2hkrma5caw6uu0jny4wvfqwrjtw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t3d8xjwz04rm2wwc78pnz9636cedfmaddqvsut\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one108f0esahkjguef7uvpngr0xjzmfhhh5s7hljh2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one106dqa2tf5vtmruw8vey2hhp4nflnvmq7y004a5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vqhfrfuy9xgzf8zscf4pudrjgazumr26znnh03\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17cyr939lsk7a58llrpjvwrh0za0hxhdy9x5atl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vpdu6x255rmqr4ten02l89zhqjtatr0qyzuupa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19d33arw6km4kyn8epdjwr63lxlj0apcx4jnqtm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h22qm5apqvj33fvjxdgmq7rdsghk3pyyfly34a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10scgm23ckx0ueyql7hf46dd8d2mat9vvaxzl3y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u6j9hmu7xsy5awpya439qgjzxfs45an50r4p8z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5esfq8nd2pa0h6nm75wvgcftt3acqjhadcnmu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one163g5uv554yq9yrqcwvs2h0kh79nu22qj2n285n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kwfjk446fd67amlfclw83w5nnsgwl7jn6ea8te\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1py9dqv2mlkv828un2e8z57dvy3dvqqpnjxwnlx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14epmrwvyjnesk862hgyeflnwfjzke7wxmp5ws3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tru3fjw28ekjpaph3chv0auuwhw09gjjvrgkjx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1duy6k08hc2ge7c0wpsrqdtp32f5z5j2dfjvsu2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12075y0afulvhqzav07sfn6xrpuzmtljnsyrsst\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x4fzerau89d8y8ymjg24c557cd40y2ku8yzp0j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s86qltzrfxegpejfgje7jpv7pscpt08uetjavz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xnst9jfwp8fkspmrzw2t90hde4u3pmcvgkkkdk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7nn3qcvprga526gn57py9ptswu0yr3hplrv9t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gzzdtqlkqnplxuk9mxtelf0x3x87mz3jw2tqrp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one100xuvr8e0sk9pl5ea2r3uw2ejp6mdc9v3vkkvu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xuf2nmj22whx6nsr0n4jr7kq5jfrjkngg33dvh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v735rnc09rck9x8skaru5xc89ruwss0xv62v9x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18enq4pd48hqt8fp973gk83gfe2rpzl0fsshsmr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ngu7epc2hg696ucmapwe7z9vnatl7g8jt4jymr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e8qh0u7ps7gqvgsytcwmmp009jgr0jnt58ckw9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s3mv5vsqpvrrf792rfyxtexzrayxaepz7t23jt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ue460t37tyz4gmjj6dfalcrvy7sjdfrlaa5fps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16jxayx26069c833je9ts23lx3r0aek4wxrh6g2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ra9f6gdmgl8azzwacqq7jjtyldlm60p64w0t6l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ql7e84y267vwh4c2e9ptpwveurfslddsuxe2ys\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17sv3u9eddmrsfk0etpqwhtdgx4yul259lwsc8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j7zcfq6lrpfx72w6fvyyyr07l730cyk8ntq4gh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1agx6k3w7xg0eznq3u9r22uq696du249keqqvta\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one102u2nl5xckdtq3qe4fakh87s5e30tadpzlq7qq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17cj87evcwv3t4e6axe56e3q9dtsm70cqext4vc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ydl5gj996t9lr0ywhq7upk5z0jgx4cfhcfvdy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k6tu4crxzulnuputeurqzh0fa4lu5xr228c2qn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18g03c8y8teaj3fq83m5vupj2tkcnlnk4kq4ewd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cj74h2nqwawcyy32eagztkya7ak0wjrsnlyqd8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nq6ecps94j68y3ya3yr7lsp9lhw9uek3nj8d36\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dst4c5j590tnpwctg8daj8etnw6ks6lva7ft8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14wzmqs59qddmjhsx04wvlhsxjde0xcyr86x6v2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13ef7evtwqdg7pcled977hhsgzfx29cp6djm453\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sqn47yjxkke7xw7hrw09wf92sygxcywesakvhm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ju8zad0wd8my74p3ah998jfjmcvuavdyx3lfmp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tqueqz7as9yflu5ghm84cl32q6yeyfdcsr3tca\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hratdxwlgnwav705re9fd5meus0tqngdgkcydq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1437tfmwzljd960sleysc6zcn8v35w45lt8dq0n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mkjk7lahckg7kpfhw4vys060049kt5v9n3k3fz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j2ydgzcxsy8vxzqndtfy5eesya09x0506rvamr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qq59w05mr4477cea276c0ls6ar45n0mxd906yf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uujrpuy8tk8yqs2xjcq45uhraanmdkfsgncfkw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18yeawy3grgwcc8adqqm2gqldq055xp6emj6tyr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1whz47fq8x4dswrh4fs9lrqplzdu4p7fcfnpxqh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14lvy0338pwzkc8rnzzmp25mqsjrqg5lfx4lgcj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m54gyv88m2f7j3v7zvcu62mnkpw87cnk82z6lx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14t2cxp7c4afrfppz0lrx73j93sd30e27rf7veh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1teqn4jk92symxnun83m8a6sjglvlh7f9mamfku\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lppaakn8q0h872fl7dye7865ar5yzhx6hylghp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n8ha83rh4y5xelnlkdah8tqu65njwnhml0uvws\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p9ewz5q382w5zmsxzyqcqlxpr04gv2ctwy4743\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p9vvlpt8tykfgta7mnrma22pqs20hzjkn3jlas\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h800ulprw0ujvv2y43na6jr4ukm8g5tktrhluh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ug82zwp9zaffg0ph4k2y8qqm5vy9qc0eltezp6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yhjh3762gr3cxn6pjyztml6xdmscc0q7j9dsmg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1052sjk4chfy56a82rpcpzude90z0047pjjnqut\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14x8h8w5jv5mq8rf5wetsew8fzl9engpsc2m2rz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15j00wmtkhgdjxgl2avsms6tpuwp5qgwpzwe32f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e54ujgdkm62w78yjl2es9xt960hfexpaytr4d8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1umutvc6qy3j28zk60nha3026wvzy2lnyhp9mrk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sva07shpzvdsch7xz0uzttrhkcwecpeky4lvkt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qxap337d3hyjdlpj8vy0azpsmvyqscc35ltj7y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12jtyy895kk00ne7tvt6g96clxe4tm6z7cd903a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wdqus9sramm9kfdas0trga0u9mf2mfag24m3jg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hmkak4uqqef6tkasveyptcu0s2f2pmr0ftckyh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tf60yehm0t2hkhhh7ykal9n9k5h70q5eqv2pga\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rmtc2l39y9zxwg4386k9692t5uvazsmns0lec8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1202m3g677k5fztks4fsvkcrd4mxzx76chjy56u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f70j6j3vcupghwheapa539vetd4wk9kdjlrjg9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v3z69zydkcutjapr2nulylc2hgfmrxnjy9lewm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n4v9aakqh0dt6zmm3jjwedpflf3s76cve30ln8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hn2ndv6s8ey0uqw6rn33yhfs0wxhzd950l8jcf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fy4pcr848ayeqra9wee9z3mgpnfxc9f7nmp6dj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gysxdd9xsxd9uqg9f206lu04hqayax5x5d7m67\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17uh5gewj2mu9mvj5kewugj9zpefh0lr6zfe47d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1agdlnvxs298fnxuuztsgm5vghgy6eqh2h57c8v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l3qts0hpw7ld7tm6jaxd65ttgu97tffjctrz9s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one128dwhk4q3luyak7j93z5grwwrvhlv76094924e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vahaau72lpq92unphvv0w78g0chrxye53hrcnn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv2z2ag6jck5u7asucyt9l2z25g7f40xhmdur8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1evsv7yrgtaefecppln7xded7hvqz49e25ahva8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7rlr7sea75dvpur3usnc2weurj3j4sw8cxvgp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1emmk0vavlrjjsx7pgylvd8je00qy60m8zz99nf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qd4ur2rnnzuk865lednn9te6wkrrl65r4p7hgj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1flatg5z43sfytt5ql55c2n5rah4yzdn3td4nly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zsrr8kzpv0dmyhywzu305u9h4j6kr6gsm3mkf9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1crw3tpx9yjnptz606ax5pwcmq5peevrtzem7u9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12cm9hksp7sxmpmfwd8n965kk0ducf7tuuczjee\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ylgdf6e90u8903wxa0yexncuxfyylsr68zhctv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rc50nrea0f37gc5g4d26qmenf90kt4jply5pnp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hnnc3tx5hwvy4kn6ae6dhedlgtmv6pad7ej92e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15rwt4dzjs44f36vgfykszlh2a3lqmmgraxae8t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tk8vypy38ju28wqr83sjvre2mxraq5k5jjxxnf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ya6mmwesc2eluzpnm73gyung9exx2vx0qehcvm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12clly9sda9jjyl40s6yex8hthpzzqmym8w6hdt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhneqlvue0zpz5ue8v6hr5de4f7qtkcnat4qh4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17n3ktrh3h4nyke66dhjj8we6s4ph4yyue6zqsh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qzj5gwdth9rgs5z4fck8eh4g6n8dcmkmvktjsf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g6vhaxmcwjtv9vp0ffdekxp83fx5uxa56xedxp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16qu254rrzylcv0pt4ju8sdm0nsg2ah0meqw0cm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r7fvn7g6sxg5ljtkdnfrxmy0gs6e4p0dan2mw9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10gvjecp7xqpgtx7v9e5paqrnpkn25gm03w8t2f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1el20vma8a6ple6j74m52vgxzye82xk4x4jtjzq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ul65gk49mgpd0d0tgf9udvkma8h305pfpx6qwc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w5fc37denva3ah96k987z5pjykvxplwkg8fr3z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ldwmtfqral75cps2nmnhk2grvzjac2uk7ncjyp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fvexjf44u83ys4yjuu2z8mmq03zvp0t3ernd8l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7982j3hhcw4z0yd0cgm85lgjtss6wf9xpy2ud\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vafke8gex5wu2693r9cxphqr85cmq3ht9m2m9q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1puz9zt9u2tu46aa2zfykv5ya8jer02vr9vaq0h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10lt7szqj7m6a2lenmgw4t2zttnnshcqyxlnuew\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m56dzr7r0fdrzehn8cunt347r28jmlk7xc2k4q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lxnuu6zmqpe2sk5jy8uhxew88jjn7yvfy956wp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kx6wnfkaca2r9q9rs8n2g7cj3njfeqcu29k790\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xfngumfegzeqwfzq82xdreanesyxxd7kwvduwg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one199cx6wpex8ltk6m9mn2r4npu64kj7sag3yn09e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lrk3runpzxn80s9c898w42dyarnm7zq5pewlv8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1drf4dnf74cv72dr06vwsxqhgmuzt8me8fjtdpj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1txmg4jv2ujeq768tvy70a9kh8zd47l4ccu57nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j234nz3m0zqd6ffu7xfm0az23qf29duy4ur05j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ag4ugqmw0myvax20dxx9clz78kv95lv2le53j4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14sjvt4wagnrgvyyxwq34yplku5fxx0ht8v785l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zp8h3zjnfm0du7stugud4nc4yl9rcgcgmqfspx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z5cu8mv8jynpasg7x409476s3steedxgk5w8x9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1llvk9jxkmd8zcfdg7pqysgy9mxnrel3xmk3f0l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vnx8cz8txj0t8apggjz6nyhh624ta2lqa70ynd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d8fhe6gr0vhacx9cqugsz07jzr49cwwwvvclz8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17h2y7zrhnrdlvghvgem6vwe8mzcnkcw8yysqr0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14n20ym6wq5af9hzelxt3rpwd5xu9sx49rtphnq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nq2qu7h2zy6p72hzr6uyatfqfvns4rj28thwer\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z7u9uzfmuh47cx2rxdu4h3u09yuh2ukkah442d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a0g5ttw2wm0ylc5gxca32x3zfku3uxqpawn40g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c3fy4k3u9y3sgcms45hs4xv6nnx4hfz52cnhhv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vq85l3q4ff0x82ugcdata0vzqxfyv3llq873es\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14y46lgm5vd52smfsspn27ht7afqw8c5fe2ula7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17vqe5qx6z9wj7fwrmrzhhylednam85jalryssd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zay23hjh0zzx5jmdfkzhq7lsu6k6hmcyzs2dmc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n4sjr7vdyp5rdne3j7zdqascj0pp2shaypk3qn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1plkg2y9pfca3t5gns47k2tpzu4mvayjvldd7uy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xz349l0ffuzhjtzejxtt64pe4clnctfzvg752t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13wswerh58xg7z7jm5gsghmxmekd3yw7ttlk7q7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fjrr7xvcpa5nml4unmccwcz63llg02pjwku09t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jtm82md38a5ychz4ze3en4jmj0j6kete7yjh0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13gda3ns03z9a0akdhaxmm74us9lhfaj2xu6jfj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vgrt9wwa4x9jnx269nc2fthufl3q20lq9hgaaz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1evyjkhm3td7yzjg0qhvfc39xtksgfal2dprwfj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1m6494qtacusqh00nehuvxgf83yvyc6dmj2kd70\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cpddky8sdm7s6e4q209whh5lpm0krxqvdrppe7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4tlt2u9kh4pv4n966n8d4th9n6mltrljm6gya\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14jhra2tcvs3qfjtfyddafhheja6dx66zkk2j2g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mgn2zz3wauhhnpnnknza8lqdfu6nkjq25tkyzc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w5pe5q9hk7yfqaapmmw59fpnjteztu7yehsp8j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ynhq442383xh0trf5ufjuvsshrkwk6pw8dwvu3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1knd4gdfdf0g8csy7ek2xjjxqu0y3zlg7e9qqcj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jx9sy4f6lqccm9kj9g2ffrxe2qg70vaqaxc48k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qpsd2g9yv5wq8wlnlysjefljmmjlgz9u994k78\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wd9emktyqflm826rhwdhqmn3kfvzhpwd58sy74\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1emzwxc26wx3lnueprheft36pa06pyamm95cx5s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ep42gp2dd0aehcleh3mkk3sfg6w6q8k2xn0du8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z70k0yj0ylmx4afjua54yex23q9zpyrgj6lf9l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10hpxuw0c5j0w4q86vqvvp4vtxg9lsngv8yp7r9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g7x8mey59qm4d53lppmk3lp4j5rdl4n9yd6amn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cjw0tpdwxzxmeqexzs0qfs7e0z7ppj9vekrhll\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p4qshw5y23w2aw39ujatu33cvztmqyku7q2jxg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one108453la4eazf67weuwgs4ymd352lgcs43lfx8g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eex5p4k9wdgj46xh0au7zrxmw6p85w69qy9ec9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153q5wkucrd9t9axlcsfhskkdy4urauqhlvllu3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1308lmk4rrkrhh3p5zm7cdq7qrthex68q75wel2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1env4p34m249v3r8r53dct3v0a5j3wxthe9tl2k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w7pwa2jw6fr6dejlnujjeyhtr64yx8z76e35ca\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mdgl2epytzcmadmca3p8f7vfasc064t94hd7wf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15wfps2hwgynqqh0gfs62s9gg2qn68h8zy8jasm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nmr2elpj8fg8xv94cnwpqc39lfgz2fnvun64nm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k6rlpa5uq7jknv2yddeqtadsauxcaujsl88kdz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aahp2hdqd3es05gj6p00jkrne4fx5mr59v7j38\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ndlah5yfa465czrvqee9gxwx5cu0y58hmzcrdz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zrhxhfuckjnkhq7atw9nw2ya236q9rdp0a4u3m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19yh8e9huuzj0hn8uch05pnxaj54n3cw2t4gvaw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1adq3g74rznnf7w3pfku235tq6g9tr7qudfae8k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f8fusxrd5neu6auj9rt3s5p0egg60ladjz4lhf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13hpnjdkm63m8s3ggykyth2awgjvt7zqjsv743s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f4z9azru04akuvk7lxcjsn63fyny0mrq9patqs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1smdsda8zfvtq7f90vfu4k2up6ey7d0n9jp7gg5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q5y0jrl6qrw2k7aww0h3cjmg9dwrdzjsxrav6l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vvtuke46kgq0hcttwgmyeysf6ndtwaux4q84xe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1px3xz3n8epfreytleg4yx33hsyws3gk2082vy4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one163m7eq4jj4rlccxwwhs02tzmhxn8sj6lstxexr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n2v2v3xjmasruz0sawg2meqydpcn5mynng3kxn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15c0ndptcryr6e2320gag9vw8xjq37dzqzj4l2p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12c5l5hdmqrtvdwq9tzh7xg9v9w02h0el4jvtax\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9gly32erqe2xfwexcgk93c9ames9qxpqsd5fm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p386r7tkf5392unsxt28e84zj2ymrfqshnjdm5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one100s0pha2yxqcduqyy6knc8gxcxylu85s4f0utd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y03azfdvqp7s7jgjpg0dwscqaj23e5syzj20tg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a3g703umu3ep09fgqydc7us6s9ykw9yve4j4yw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1klruw374s5fde6sm6q2kw97p8jgazue4qsjsfe\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f2rmemvgw50czywmfkvwmzmgwfgg5wa9mqdq6z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kxw2fmr8uzs7sjkkxkl34aamgtudqad9yqpqzj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rrsk9rww2vl070edt6qq2a553u6jga4a6nrnp8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vn8g0376lfej9gt98ycff2n7gcr0kvdtff289m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kqu8zquw8k3qu7rdv403chvv2rwezwgstn3jpt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ah2gq5uq76p9f0ucem6agjwuvweynmm8vsugze\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one198zynld9mu90l27eczrs3yaeqe66pc3gnkw8xy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yjtjxuxer9ecxdtkh2rn65dvhxu6m6a0yqh5zd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10uhkv8zvaq8phucd87p53mgxmwlyl76nfkep99\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one168lzxm4pqcqc0pqzdn4ll7f40npcplfpapr3nm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k80357p36n8plpnhe53y6nsd6xruunqm6wjd5w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zfyn2wxjuhnwst9rahduudumws44lmlrmx2tan\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1830ag5u0k035k7vnscta75xdfp240khsf2u7za\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z632uj3wtunensdcrk3agq9u2pqxp39kds64hc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17f8uk27xzzrx85grdmuf6458vh68dxjl3z9dy3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one104k5gx8qc94yulzjyz6lumu3qfcdq3qj00s0fp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l2supv9tnletuc87d2py3tku8cwz6qmsfpjjvm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153z9ae2tmsw7nyf8jaual5k999d6caksr3y49j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dnga9jp9g5s8uj7mksuger8dn5g47smd4t4res\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yelge94vf8mmk852n7wvmj6yh3rawevx3mte5x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tgxk28avxkyc26h8psyn8kv447uam98sl2wa53\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13jaslyjhmmfeqnhkl74ryfp3eglevenj30jnwj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14j3qmvy20hn2g83kgneswpcq5gfz204qg0e4xm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19h0huvju7553v3lnp2fy7dzntvevgjpy0msue3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pqzwcwjlcaphk2v6gctmpv8lucvw54w3a5zwuh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1he0lgkeqh0u4kx09x5pgkfksg6szf6evadxlmp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one195udn7zexrlyuvl42zzstfx7e8y5aygm8dh8sd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one184zcll6jceg4aeu7trp8cl7vrwmz4c9wmk7stq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fey7py0n8qh8lxkt4d5wsw3kza7qy4wtsflu2m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16remy200vhp4wrlm9a236lc8stdq6r97v89y94\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1svpppf3zn5tpddg92k56s45pfj9yxdx77sqe3y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xtkwz4dk0cd6qv30ujtek9k67nn87k0ahst85w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zdvr6qyt5s4mwjweg6yst0u33vpy8206m7fwas\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e966ynskvn37q326qkavrf4ynpd6jq8wmw6d4c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f058ka6h28jrgm4dmhymut5mfdqnlmrueu238u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f32ps5dn99h2enaynsu2vv3uuzdnkxchv7us9u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17zhase8xnsefnt289krt27ferapdvhsla84rp8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hput6cxkm4d6ys7d4ny3ll94m3eslfn634yk93\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18f5dvsqqeful8nhp56t4s6ts84r62j9q4ltrf5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xafsz987rglqkz2cnal237ktza758njz2j24m0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t5fvu63tcnvkk7xd2amrc20pypq968mxj3rzva\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one153ljn25sx7tu5xsgvy2uth564qs37g7yc3j9sh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7uv5uuw48gqmelc9gnsascxp0uf4d9tffv4cn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lhpxtfyrnw4pssrzfqtezpn9xzmnc48y43p3v5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1twt8avty3p45400ey6nreeterdwru7q5n7lv5x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hmawgxvtxf2p9d9pz459mc4k06g5z53kkwlvye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12mtwzw380dr9m0tey4wn7km96zu4pd4cs4gmef\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u4nh2gjas0a2wrephe8ms49nma36e3etkc032h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15x5xj7fnhwzuskfhpewu8sszqku7p6a3q9fl7m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pytmsgu27zmcysz3xn3azvpp696njd30t7d0p8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19glc9wj4f38q93trvnc0a7rmhuvmmx08n9jlks\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hvnv0gp5d5czc6l7h9cesh4dks2u0y5f7vavln\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1z2m9cnkrty3q7kph46a8rp7sxl0x40qex5vfdh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wtjj0hfcfxzprtxt27glpr6h7nrujt33anfq7y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gtccmevgvfj9m4md55lkade60wlf8x8h8z7hn5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mdy87w9jkcrrkumehslpfh9uwwqsttpkmzhhm0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xqfkgy8tjgwy5a0092z8l682z795wvlmwjgvek\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kwyldxaua20c893tzrkynh97k5x6xtm5z32hmk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10y0nrs9txc2l2za3cxvxjcztx4ptqp776qrpnc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q877vaal0d8ahpk6pmfd0jrfc4rghgwwl67uf6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kukwvm4evc5x4wz87tphfrs8ry908ssx8p6tra\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dzf32qcyvj76n367f8ve23vux8242a5w4e4g8a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mtkdqmp4sx39d0pwjtue3yy02tyjahchylcuds\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ffnslp9ay2ndtyrfqdwlgslw5fm7aqxcqhl3x5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q04khle87fe85em6lmjxx5s0xpppjy337mv0zz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1prsnhc970gqqarwv7yw2x7epzfcf3lsej3rrw8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mxxq05nurc84k9zt9nh32hu60z67j87fdphjcv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15jghpfpefrr252mks843lhe6kkmx0h3gxlpfue\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zhv6c8m4rtjvteg28ljkcd9jklfw7dm6f4880u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l4ege8tx2p5ueaef3w7njamec3w85qat4fwee7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u2883ujl8sz90v8sxdgar0vddvkkqcapgg5drz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vcgz2pd624hyjr3r4ysf8pd0zv2d6wjpnccxl3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ztkpp335qzpuqnxfypzjqfdg2dc56p653egj5t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r6vlz5qlgf7ltsqz09ek5gzx37d3la7rne8yn8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v6d2kep0fw7qdh3kemn3m055xlm87nz2jz8zdt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gs0w2agmvgm2x74wuxgdshft07ly84shgv8eny\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kcx7cfhvdcxxt7ehcangeang6jwknz7x4dl9u2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wyllmcg9v893f8k50p7lstpcg9vmda8hdxjvzs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1svvsxgdu3g026qxwdnq6nz6xrcl7n9984mm64p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k0z5k3d2sqmtyusky6lkm5sfxzdkyaqzl7ydw7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y55wx29eahfenr939xgq32hl8er3ml5s27psyh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wsks7p4h9kfmluk99fgq4h5n89wqvnr4wncgj6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rtge8rjwxyy9xr5qraxq6hw4h8qlcce3eglhnx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n6e8a2tq584c6l5n0juunmlfv0j29crlczunam\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rjf4nxzhjs5ut42ptza55gdyzalt3hh8p73e5r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yw9y9vj7putw9qmhvwmuwtfj0dlfexncheeflj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k4pxxxzzk557zs0v470ha43gtwqnp3dxkwr03t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s7vqu3her9y25pyelyna5f3utkw6a02udkyyzn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1axknpk02tkxh573xcayzernuskgyp4pym2nulx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ck6u6ffyultgs8xfqsze57ncm4mtevfmdlz2sa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10lwsmdpt4n3md74utec5yw7dxhjwhfs6vyv9qa\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sfpesjju3grumvxjcr5werxxhp5atmgvpfxv4x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lrn45yw5hdnhp0za3a37rtdzmqfrqnavd95mxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1teeynuf5gfqqcd26q6shpzxz2tyjhkp34cfwvr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fpqpufcdppxdkr8aq3r3hlwj6y5fpk5ecsyptg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kz5qru6ptk2takxp5dtq3aupndre624hrkh7zd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dsrl5w26cr7nddcnf76w5y4jr00pyu8w0xelhx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gcsfqa20c6gp3mkwalmlaankgwa5f2k4ax4l8r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one145tnyfrg9s8r94qvdxa0c95646v3je7jvjwfcs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vet2m2xfsunfmpxulvagzmtaq6arucvyngrr8h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1esdp3dy00n0m83490zy6k8g3zanxaynahacjje\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l5e5q04tus8cs806dnxmra7ghvd39wzpkg6swx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t3yaxmu99ra0t8awtc9vcczcpflwc0a8fw6r5l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mjh7v8yjalyzz4n0ynqthcyq3ej74nqxk8r6ul\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aguvzwn7suyc5a2wgmwxnwl3t7a7lrl3uhchdg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13kxg2vapmxj0a9sn2f564e0k9xxh2yasmsmg8e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fpnqtnku4kchdfh9g7u7u074aw2x6tsg7fyjnf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1du3qscthtukca6gnswyex2d9hhn6w4855n8rlm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dsc9g980dk6laxvpx3upqsw8pgf33luc29kyh6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1l0t29vl29m7zhqp7fhpetmduzcenm7tr5u4txf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1va0045xpdjgcuhjawyu86ccwqyeh6rdnrh45vd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rt73m296k6suu8ld596kdqsmasu76nuc5mq6mw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10p9h6nhtsy9q8a4upjpshmns9lp7k2s8yrxlp7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u66fe5hxkqvwnmurhe8yv3k7ahwa79rl0dw5p5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xet2p3hdp9p83a8zy665c4gcjtacn97a57urkt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e5s6dpnrvqfcr5cw6nletzsldf3g5jwhrs64fu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19hqz5rr8zayrmh57g6j7lrdswuynal08u8kfsf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one145gxgunfp8yc8ukrfj2f7h6s5lak6trdsd6axw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mhfcgrmxvynpj44mfsqgdx8d6n79u48frrku7u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jr54yf7s5xmwl0cp8fm4xz6w8n8frntm3xmu8c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vrx5nn22ljyqgxd574m9tjdeamy0q8afse2qkn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wt3pl4vmh5qnew5fade9mx87r09r0e527rlsy2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cvqcr9gencsa57gp5fpzux0rf334eg5xwg6e67\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pnfkrae73sjulgugd3mm8vcj3sutufxqckr6gp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aashv5jqeatudkgyeu3xwmm8wrkv9nuzwpn9tz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ks5ec5z3jjm7gd738p2ewg3t4w6qussps6tdmt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qhsjl7v7f0jm6s68a677f4x8mh2en0zwdsnz4n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13fqp5dg87gydhkluawkgye0pn4y83zxu7gkegk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16vmhesva3c0nfr5ym5vcmrr5nz3hkv6yhhl2jx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e9jtjvvs0vpu3dv5jt8ucp8wve38dhz0ufnzt9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tht6c3quls5ll8agvzaea2ry66fy8f8c7ek30s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wtp77whrq2kkptj0enzg7dh4z4hk482fek73sx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lrwy2n7k3meeredctx8z66rkd2k4xutn9lqegs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eq8afjdgpc3np9e66hxftdq5vfpjjs0huhncc8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s9xuzr9ylf3f4wnugt0z25wuq6x7m5kz622g6h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rcw2ydcudhlwzukuud4kmz54hyuluv0tws9m28\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16kyalskwpx357pv2mhyx6rljgqkx8u663h9k5c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wccheux0ts5udvg3skfj7uynpx8hc2eqgn3797\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1emwmwag4kft46q3ntakzlr6zekvcxd2xqpq2d6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gru75vpuwd97ckw7pynzs4nkmyyua59zrjs8gm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a4uxppk97q9yc7k032m8s5ykknkc99vwsy40yx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1unts7ua6eyxpzvsqc3me240lwmr49n0vtzdqkk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one138qx5t6sxsac8u6cfzk4662a7jn6grrxms70lt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdw9mr0kn08va6pfzavl5rle6aupzpjlnw66k6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jluzgglmwvpxzct6t6w7la88r0cv9t2sv5prjw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sth547aq453psywm7fpueeyx6l6a0dadleq7hh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14v2q3gu0g3ns2q74mtzzxftcaqe07zjvvje4lx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tgqf4g94dl0vav77wnxrd4z5hnlvuvmvqu2202\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w2ygkxmzm3rsnju6l7fztdcy8fjueyqhky6tqg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nlg7v583nvgpxphc7ns5fxhn5x6xakvh3mmdu6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xqyf5fffv0w3fxh7tnhskptvx2xqwydhxyyt3f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13h4eyahpdpvh6dwy3f3vtlc05cx8qa5skqf25n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d38lxd4edkww2deue6dd2ns5djccs8tas572ql\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lxk8ynpe7ytwynnv7anenlu7y7l4undszf6mel\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16ex63afhdxalukzxkww2z8htgulcmh6z0tex70\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1agej9x4n25jsvaadx8zm44yt4v9v0wg8rql9r2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1smqrlqe5u5adx9ka94edmzrws9584tt06hm53r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qzqgu5qqjtluy9cfv6rg8hfgpgud2czg4u0ddh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ktqcnsu54sp4euxan6rme7z9gmtk4hfyku6huh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1924g6ktruphk0zduxn24emy7auh8zjtlfynx8e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vuhp9gc3d0uya3v6ulk6fztx6aglh6hyjhdx50\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16qr6y8cttr6uvx3xkjgdj85gjmsz78ef7aquyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jh2tv54utlhkfk5wp6k3h8zd0jqerucs0frhpd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1n27wgmhj7yh2dze8ld9wdcc0pvz5mltv378893\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uquz6k85pc2m6hkclct4ncex9hw6hxrz7f30sd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1senqq2gwr6lytdpuwstjp3nfwx464y496njevg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gwrf7vfypvexsx6a254czyct20tkmhaeqs03ct\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pn7j0vx3pmfw2ugtd3y5ymw6vlnsv5d4m4mkd2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v4k0ctt8hgzf6l9ctuxd8c29g74ufd094ukcp9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ynknhegju0cn9enhmcc2ypu0t3ah4yty0jm9s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r4k5dxepw5hzrh5jnsuj5nqtyh6cx9mcrtw8uf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dmyvfwl8hpsy76gc9tlcv4z5595d5phmlsn5yx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f8zc56ekds0mh8wqxf7q6hhvsfyle08mthjnhc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one179d2698v5w5l2yvcmvg6r6858g44xeuuyrwhs7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1udqzrj8x3xfpv8pfw0q0e8kuvfyfd7j772slsp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12wapj98kwtxa5ne0x9qnwdgcfja02lzly72g2l\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zr0x6xgzjcegjhgz9ynlp2rhcn967dx3g22n3r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v7gk69u4p63za8dlguv2cfmc29wrv50a55lwlp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cq5gq3rnrfqx8yh6xs7dhzw2vz6skkj5nvr23y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10lu8zq0z2tkc92zndrvnyyxwfy05npqu4z0d0h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r0q6a3h7gefkrg75xe7z4dh2sz30aseh3380u2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lgh0ql59qqkp2qnrn65yqaewd65ud0fcq46cvx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hf8522ukrp6vuqejne8qs03y65t00xw2gful8p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nwpcsfhj4k4kxha5v6whfk6h4rmrwp00ttgnq5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q8jacsm7lftmy73lsqvt9ztug7hjchzydtutxk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14fpa8t6q0j50znvahwd78nqkpfkpau2n080js0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nfej2743mwkn7hn0ugdl0qrfz25gyu64t9p8jl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xvfy0aespclk00wgw3a9wcedpdk9y8460xmw60\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ua7t6ulmlqzea85tqlykckwgq7g090uryluyc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1c90pqvnrnv6m0ym6r45fq246kn44j9yrg2hcgh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ht9uzc8qrl2cn72svrygeh85hvrrk6vgxjjgv6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s08j8vfw9a0zs2x9kmv8z65dsnu3w0chpfpxqx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ee9gd2zkz79vxl7wwyhp473gn5pu3m4x5wjzq9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1urpza98n8cn88rvh7y6hf8nvuch33jhfge0j2j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d9th76lke6fqaxye94w4a3mesy9mdeypu32m9z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u4rf45qqmknajmn23rc0nyvef9gjzz0cm93nhm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ak42vpwdkzqlhfh0gqg4mzjv6qhfk2pgh9368q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hkcg3ap69rtr0gp3ylu503y9lyxkq5pagkz8a4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1waqjytylstzzc9g6gsg03nxr5s0vphvj0la7nv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13amj7yvltp5y4h3uwzqn6h3qt2na3vxf70rxaq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18tyfqtcwm3en7tt0nyzykrtuuqwk462nvn0qvj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rdd0893nfvnk88tjsaszf9a88ludszltjjguh3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10nc9lq3fnpr8httzh3ukgugy8ds5epam6l9zfp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vc98ljh7w3h4lcftltp60g3vs9n9kkjpjzgewt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14jg83ekatnh3ne4zvunxmyqj7nuras05etudek\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one135eqzs04wqcgkhunsedfma8s6q938vm9rrtxl9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18njz7z0wc3zd0xvve69f4eq708t95axwdza5fy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hgnx730lwezuczc9320n5fsrwa3ar57qprd40p\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16x3mwhkzr3785p9nru6vyvq22xj0xt7r4jnuc7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sdyv6sk50fj8tvyec9evfu59qgtwmtvepk5yhk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qv2z3kj3fsmezx0mtthx6ctm9xsaln57z8v8k5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gwp6zx8p6dku0qy59gaet0vj2yjjs0mmqfuh72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one187jwramcvufz0sqpd0ev3jvz30zcc4pzjrcyxj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lphc2ses230hkl0jtctrd4yn0a0ucs55a93e0y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h07m5vctjuk57tdpv00cq32yhk6z45zyyp0fcn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vfg5gy60f7l4h52tjt56hjhm48j5y7rapth2hl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1980hxtuyl6dfgdmxwq788ch47wj5avazpwulwu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one192xu6hcy6ncky9sxwexmazy8fd7e20e0gc6nwy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1q0gr96enzpgznnlaczt4n6trdld6c3vch5kcnj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fc6mms2temmahmzk5dj9mg3slg2jn3etc0gstt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mffe4rwf97h465n7uxumj09a85cy9v7ae8zu3a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d773g2x6cnptsahgujz2knw43xl0ja8vs5udse\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18nlxf0npwk7ac6jhl4qlahyce657al5snsanl6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one142w0w2jnudfcm8stqqdmyzpw6x4cyz00mq4azs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yazdk69urakt70ex3v5dsz9hz7q0cyt00cwwhw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7zzvan6u8cc2cynjjhsrjd92puq32fcxgysuh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aw8wcxl4yq03uf2nd55krr4y2nsmlaf2nf22ez\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xjmjga0sgv6yamana6g7zlegddmjlmdu6tk7kr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kh3225rf9vfg2aun5jfq4mn7cy3k9r57yswaac\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14y4mhljwx2yt5k6y4xv3d498dztcvuxfsvq82f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one128qmmfqxsfhq8sntw9f8ahvsqe02udafhqdn3j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1352f4qu3kn7zefr8ntje8pfzpzh4azn3l8rtrp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jegt4ffssazlvy6473dlfxu7r06mhtfayqy5ea\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rhracfhhgyxm0805zeuv3457v5e3zmvps6xalu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17j3kw0ueug4x0q54th5789gzxzj2jv5hctfzsz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aje5u0m8ppuvun6rpd8ngtuu63c7uc3rdu56ep\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fd7cdlr0qt8zh2jegulfs4uf87e4ffvd6gtacg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pz4k6ahq8n4lf7n2a8pyrr359g3m2x65yyusrq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one184fxah9sdnxy34uf9dgd3v0ujx7jdt8rdjqxk8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one139v5qw8kkehxa2kzphupml2z6xrfvgnmy6lkd5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wqsksddgcuz9v7tua6sdq974hq2vd98cjj2x6q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1h0xn4uszannlumkkztsr7kyq65lfe9z5l48dsu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1000emd92uxmfs29my7q2j7hs049mzmlnurphhd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t4wzjevvqd2mgs6ax8yjlg8nch5j79cjgv5rlw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ups5dds7anjafgjvdhpxdrs2ufk3wargfk87n0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10r70hsszgf2z28068uym392md2nccmhrx6xh5f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qg50tv68qzusgn8trsc80waxaswed9lgdu6kxf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xl9efvfrp4sgkaqjzzy4gnjqfnhzfr74vwk3kv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12445hkp5j9xkzrhz6fxz0pw2splmxatwawa76r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xaulnemrm4cq6a4enpzsu8u3dux4wjlwkl2quc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1llv0mwdtl43psv7aq77663gn8yf8a7vnxurhs7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dwyv5enaspslvqqz5k58d8337lfcl0hzmzyh0g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lcfk75ghzfj3k3ttpn7kwmjatmcjeh8gr82n4u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1llme65wvamrs7h7xlsx7egq82vnyscj7ug566z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rmspfj0f4p3pwqqp3sqt6knzk8ty6q0e5w3tr5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16hp464gktpwa8az8t5uwsjry8j2u7qk0cl65e7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qj0q86a6erhqeck3hzxl8mkxae4kdjnxle34ul\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wd7a4wzg0r9ncmcegmyy7wc84k533zqruxqlml\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19wya359whsnxlkcfnqlegnsdgv3gy5xzvtrpj9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qqujwhx0ehra3uw256k4nact7350dncryd3uyg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p3xxega2zjhnh49plfe5fcvj9zl2quzt3rf00f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qsle9ywp5wuxv8gyf59xa4vu6m4nsmxt8w4k7g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18du9tyc648u26mm35n4gx9qnzcl8rxl99eztaq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qsnkpuck7f3g2shgczvq9cv2cc3frtj8uykrrn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r8dw53e4t8qttwxnmghsx07e87rhwls4csckk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jyqq85rhlefln0mxt9wate37qa5ulmmggmls9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k0fldsuecl62a5s8ah5h2njkyxf70xm2709ew3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xd5cup72c7wa4255sq9qante2l5x2zc43e5rag\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k073zz4wzq8m785j75xzwr06e8wutkfl2jgcqx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k6yhgul95zlnd2l3v0sjs6qshxtwcldzv62yne\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hkumq3tn58dzc4vjdt3306na3ma00zxjlgq248\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mh2w7dpkd5an7pcamm92n24gugqrk8d4cy4jnw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s7ueaw9vwuuxat0u7ss0gdavq0ahf2ft6znz8d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j5slj9jgj22jgrd958fvvslssjguypa4zhwzjd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hyk8jucrkyksya9hcwncjz4prcddnrekpzr6g9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13arfqlkr8fkmhug3a74d39g2r7z5ufsn3vxly5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xku9axcgdf55k60qrrfp2tj5nngaglgktg0hw6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wuftr73qqzpnjqwchdvkyhezdlqxr75ez06ca7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15ng809awy4fvc90xkhly2qyddjh548k6mewuv9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v3ghzx3yz2z7xy6xxlzjn2n4wljaat255hgmwh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16x77hxc5a9t9tnz6628h0gkrth83p5gy05cgrs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wtg2cq2k9j5wc706hjzlehsk0v63n0wzn5djux\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15uvqe2qst725agu2ummdyxpw76n8xdykufwrjd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15sd2s0ek2q40xcaktfcxjekywpz8m0v7t4xytr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pga7tgejdz5cdzzkcurqcwf4zn2qmh3vt6qdmq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mvg3a6vcdudgxuq8dh63pf79fmwlcnxx6ctpk7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pugkkaprx907585l5yfz5lju03pshk7yh5456w\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13gdz97v4t6tyevafwlyr3dv6752s0r7gs2lslm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y7phk9uyywjx8sw66lkzkelymxyvmhx093vl9q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lk9pre8da6nmzpl2yzc0cj932ul0vw6ym4hgvq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13znjrfp4g8yw3clm74cln29350w4428ps4x8p2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u70xrr6r0p2vcq43k2a53f3v2egnu3mjn7flkl\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14h9y9zlreg2wk6zje67d5lhzvpgx6tlac5s05g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wuak8e8wynap9plx4jy5k4xs0qt64wf7gapc0t\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t0kkrae25960dem7ek43fmtqllq7ygfl8sd7qt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ux3htve2z4qwweyh85a9xg8chzkxk8mxeza24n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10jjk50qxkfz7cktmjjl8eygdahelvr8xvn4ukz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f9x4wnaxqc8ceusuned5d4kqtljhhqjj90zlph\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18p3nyvffhs34ywpdwz8exher0d44jdgvp6xryz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tt029gp09kyrm77kp9xjrwslhv40naawkxj9sc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d54wg8euly6gf4verr54fht6slmaj6ja85eyfk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pg4s3tqph5hx4wn4x3x48wnk3z8ew9vmv3hht3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1r2exz0wn6a6elwkjevyzp3zyn9n2k6qvc0xvj3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18wu9t3l0j2mmxdwhv729etq3cyyj0fh6u5hqze\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aeq486dpeewcu0jfd98t03xu274lgexg4ruknc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g8nnlhjhpascgunr8gf8tqusev7jdej3wx52ly\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19xcphyenxnly3pp0f6v8nrqr8jf08gg6eaayng\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12tlna0tc0ullkq728x7tdd68x024uwxl7mtm2z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one13wucwymycsskgepwyg0nrcllk3c9q4fcwgjlms\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ltfjf4uhgf46glyzmsfqu8qvd88p6hwmnudazh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mkjgh8j2dczxhn5lrwz4sn2esan7kt2wzcnq66\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15r5hv0cmkqej2fcf2d0lfdpq0gx7re9qdepdy4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1af87rjjq0a7rs6sexwu2ez4cgc45ag9seql522\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mczzcyc8zcs9ctsupnnrrf23xyfunnx3ahff6c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xs5yc0zn8gp63hxwqdldcdrr867xklpup55xgj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jhj22n92z3kuqkspm9qyhpwrvdq9k4vvwzdp4q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16myf8nfqvw8n8w5r5vm02lpae5dll3lej7csnp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t5djlrgg4pa2u00e58eh5rx8lrpa4yypen000r\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18pqhyenmcxuyas7z8z4r68vpevfa32pdcqd25f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16d8za4aypj6tt8faewexqmnuwrknsqqajkppl7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10n9qqexfc8esq9eelmhdn6p8c6pklmvnudgc2j\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fdnzncaa2kzpngv2an2mznactlndnnh3yncqrx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14fwgf5wd39tc7q6f2rktveqsxlenpl4ldxt34u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wrn09my0y50yz5f7jmf8rujucta4duz5yxl80e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1e3c4rnvyv0sms63046va2568p55hq05hd29jex\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dqwverrlsmdgeynzr5xqyz8lyj64kvpnexjcz7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qpaxa2ecwq90vsf37y9t9hav3rfu6rexzsw8w7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1589xywnrrjls8v3yqvfd7agukwvj775n7mpm7f\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ru696usk00pv23kncmzc6rwj4m03zrdr83vhkg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1x95nmn002zaekdaw6u3f5egk05rrdqp4qgcshs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12c0xup2f6mdmfd8fzml5wyrehv64u5f92kq8fj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k00u3gtssyz9gatgv7d3eh86lamvadlm47sjat\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y87pdtkl3u8vt56ppsrnzqhdkrcen45slv05my\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16nu0394e8g3zcqz0xkguf7tsmfz0jgqnsd0fu2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1523ucwa2ks9ce05v4fc02w6j587js4per2t8ck\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fkdgnqychkldxe0rk9nuqxjx9afjkrtuq3rp39\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jt50r6g4hrv39uq3lshzp3fwd09klq0gr829uh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rnhfrgc5dvff9eyfscqktclx47wzqr46rkknh6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xkf6ne989pekf2rk6vf70v4hgakhkuaut9z57c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mdpetcwzthz202tkx242lp9wp8xj6k8t0xat5q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wefv78l3xqlwpy946rp4ztyejx2gk8f0ggl42k\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq8j59yy7f5vx2m2gpv83y40gk05cvny25nc89\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gt7gcpdz6sk2xdpjy5uy0r55wflhseqkjk4qup\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dm4v223k8qt28gnt3v0k2qmrzejjyqmq5u4qlm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1rr7kvwej4e34welx5zp4d59j7vns4yqvjc5avq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12w4w0rynmhqqssez0gfytdny59uggefz8feq8x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tgtas7p9sj3yrgesuvtxsu546rssg9pchvqhhn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19hvj5uwlr3rjeefau4ygawf7hpjex8wm464c8q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lktdwf79mvelv67s8tu36sphk73qepqstndlq2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sgugqz04r2k83gsqzj0jak849cfz4vkt6wwe69\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zff9u6mx8u0fc4smfqc2tmjxe7luefcms6uc42\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15223nxy2ugeavqylvl6wz4jfvpj4d0uuk8azc8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f4vwk70cxnvusje9h6lpneawxaxr9vrpu3txu9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vyegwyv0kh48xs77mmxym2zsj96fjhmjmh24ph\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1uc83nskyxmgjwmnwnanu8w9yhctucmhqwnlx6u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15dq26quyp4wax3j2lv858te84tqxgc0uwtj652\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1dy70stxdks8m8xurmwrh3cw92yrm7a6w6yr8jv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gz98pg92m2cnettcmgt4l42sjmtwf0xv7pe7vf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ksv9yq7t4qp6uur7t66perl0w7ha4c3ax9gztw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lg6j9q4pgsgmhxuxzken8mqdhrqgtegnxt28nh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15995sc0jzmmr54jlacamuqmcjs76gweyqhtwgc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1jqpxcyhm5vtn5sp5xzhew7yejdafdmqzrzcqqr\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1muddp5f0uh3h3r3wgwp6f97heaw8x5wvnkpq08\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wztxlwx2z5u3k8mfvcmn54exyernvqksyztj2n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ycvmeca5pq9yfzhew7yf2vskjgmynn0j9la96c\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w0y8jm6vhn0gs6zx9ukdws0g83csg49m09rduu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ja8ff5q9z3g93q2qw2dxyg0phyxpu3y4zsu92q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14vhctwlxq0hgxmx30j2pesjttnhgu6fj045rld\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17c53p4hq094drvhp556ehc2x929at9x5qlwu7n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t4em0d3fj50pxku86rv3tt30606d6f64gt5w2e\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12c568zz8ne2kdw9l0ne8w2fg6cwq8kzzlk97ps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10qnqfktkux69a37gsugwa5ex6w7y4a27anpxat\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w50afvxf5rwu774rpctg8qwc6taq7zdyx3um4z\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1t8m49d3f2dd0njkw5vempy3cvvf5aypgcqy7ej\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wufmgv60vcf6zk0zwt3jn2x5lh9lj4vz023nm4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ya5gj4hpw2063adw20t57kwakcvuucx4ly9ay8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.000001e+24,\n                        \"delegator-address\": \"one1u6fmwccwgh2e0h0qvj59gvute6j58j2g3eqz2n\",\n                        \"reward\": 7.08210391139894717143e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17cueae0zvur5r5jzt2u4n7ldr8wlf890x69nyp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16295hjtqyr0z22swaqthv7mvmvn2gltnj5gera\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.21006e+24,\n                        \"delegator-address\": \"one1t4w7pzvxmygy23ygm3d6a7u4cs3zht2zcmnqau\",\n                        \"reward\": 8.352497047791700856818e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 7082096829302060712,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.01207e+23,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 187976053721166563648,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kung63grzslftjsumaa0kayt5ae43p4x2puvhj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.8208946e+25,\n                        \"delegator-address\": \"one1a2ym9d8nrayel0dhq62mfahkaawavprts4fdec\",\n                        \"reward\": 1.04260725754053445935692e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.48402e+22,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 97861441499079420284,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                        \"reward\": 1722735250342984566,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.88272059e+22,\n                        \"delegator-address\": \"one1uuh6gsq539gg0lyvpje4zcn9p2x4h09kd3r3uk\",\n                        \"reward\": 93327474023099384894,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+23,\n                        \"delegator-address\": \"one1vkncynzf0kegy80nfa0ppfnktg4ltr7dvlzag9\",\n                        \"reward\": 1.183087302665035088754e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1225765e+25,\n                        \"delegator-address\": \"one1wdcdrta022vn4qsvdtczat8tc75lquwrzce3wa\",\n                        \"reward\": 5.14625096704774821061e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.131e+21,\n                        \"delegator-address\": \"one162nx454ej6rp0wjag2f8czcayruwrf33xuvhj0\",\n                        \"reward\": 16140248118002795403,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14fjheql4xzuhd5yd2pk4vnvdevj4lmt6f8qr8y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.998e+21,\n                        \"delegator-address\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                        \"reward\": 773834392090209836,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.5495e+22,\n                        \"delegator-address\": \"one1uj6sq3hswz69jq6twxggtru7n872urxs5903y8\",\n                        \"reward\": 9279123886946927756,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+23,\n                        \"delegator-address\": \"one16fr0y08sa4xgygtjfx82cuf8079nejlvr655z4\",\n                        \"reward\": 140982230112376606930,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1p7sx6j5pclehfmqvnsczfj6372lr6yx3v7zqae\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.000029092e+22,\n                        \"delegator-address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                        \"reward\": 25719656633794654672,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8.924e+21,\n                        \"delegator-address\": \"one1fdxdek2qmns4st394hnjzf8tn65zup8hkrfar9\",\n                        \"reward\": 4768873738449657046,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.21954590206e+24,\n                        \"delegator-address\": \"one1r9v4w9h6l8m7caqw38355myrxadezqusepg9z0\",\n                        \"reward\": 2.427487995708422626018e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 5370858845553294592,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+22,\n                        \"delegator-address\": \"one1uzv8ar0tvm36580x922hhv9cxdsa7zpxgwku6e\",\n                        \"reward\": 15435335788809606724,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.400955e+22,\n                        \"delegator-address\": \"one17mmvt9x83dk8r2vlrrgcpp0kj28hnmwun2sd69\",\n                        \"reward\": 6458410901646641284,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1u755ec9g8s9q8tgz7andy0txznf27pxyrw0574\",\n                        \"reward\": 27541500061793428329,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+24,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 5.427182164584175832271e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1e+22,\n                        \"delegator-address\": \"one1vyd0rgpspyjme3ufrvlmk8mza8ez929ngtamlj\",\n                        \"reward\": 17385552576631550872,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one12cwc8q4r2c6wl6a797ksxgc0njs8j4yshavkky\",\n                        \"reward\": 506794846684326623384,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1qv8eu8v6usjw7evuwsrctmj7zsz6f6y0lhnwgp\",\n                        \"reward\": 10135896933686507498,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"i coded 15k+ LOC of this blockchain & personally run this validator, 2 cloud backups, 4x redundancy locally, >99% signing each epoch; support small validators & delegate token, ☞ see my github.com/fxfactorial, tweet at @edgararout for job offers/blockchain opportunities\",\n                \"identity\": \"twitter.com/@edgararout\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.900000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 3e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"💯 Edgar ☞ twitter.com/@edgararout ☞ blockchain protocol programmer ☞ support honest coders ⌨️\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"no-one\",\n                \"update-height\": 3600809,\n                \"website\": \"https://t.me/joinchat/H2S3eRoEWlmdyCultlG8IA\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1hqu9yzdzvz6s5lr8pgxpgr3eqp6jejfuqau5g0\",\n                \"bls-public-keys\": [\n                    \"36e1825c87dde11f7090f83f8ac70d5f93e97f6408bac63309aaf81d89000cde0cb4ddae74bf2df4d5bf79094ac6e409\"\n                ],\n                \"creation-height\": 3405031,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1hqu9yzdzvz6s5lr8pgxpgr3eqp6jejfuqau5g0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Animoca Brands\",\n                \"identity\": \"AB1Validator\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"AB1Validator\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"Emerson\",\n                \"update-height\": 3405031,\n                \"website\": \"www.animocabrands.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 14471,\n                    \"current-epoch-signing-percentage\": \"0.979955305749305885\",\n                    \"current-epoch-to-sign\": 14767\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"24671289544330325000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.119651701720953739\",\n                \"blocks\": {\n                    \"signed\": 227298,\n                    \"to-sign\": 229374\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122725257998242784\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.112822630174623025\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.124379700750448715\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125512360109897251\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.118969348686859333\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.125303342138741799\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.123438857218198728\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.118241730997597555\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.117114638542174730\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116019780454640513\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.115262422337773772\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.117981817507726025\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119939896446777917\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119511061119002481\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.117927792846712015\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.119092084375129425\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.115460493899731331\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.122559660503330902\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.121738291126024104\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121087178795159707\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.120554252148749673\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121776539497804951\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118734881707313608\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.119503691475171024\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.120302963038206362\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.120094588127847663\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.119297845289589168\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.117329668582710740\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.119472340888586649\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119101083496736704\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119651701720953739\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 17251,\n                            \"to-sign\": 17479\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18249,\n                            \"to-sign\": 18283\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17580,\n                            \"to-sign\": 17663\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17144,\n                            \"to-sign\": 17299\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17683,\n                            \"to-sign\": 17761\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16743,\n                            \"to-sign\": 16924\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16119,\n                            \"to-sign\": 16249\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16451,\n                            \"to-sign\": 16805\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16396,\n                            \"to-sign\": 16789\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 202,\n                            \"to-sign\": 203\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20513,\n                            \"to-sign\": 20542\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 20152,\n                            \"to-sign\": 20178\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18344,\n                            \"to-sign\": 18432\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 8.4722106564377506107464e+22\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.687059264755118202251e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2f78bac8fc8e2dbe67d711ecff25eedb160607dc92db2b079c07a98fcd84a99c2fac0e06fa53705844f2f5af9de1e08f\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"group-percent\": \"0.006653376470503894\",\n                            \"overall-percent\": \"0.002129080470561246\",\n                            \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.68903193175633286772e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0d983a3e3a490412635fa110b577e63909a8b8d6c7b9714d4855373c19f1c96aa8291b911b0ccbee102ce329c92a0d0f\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"group-percent\": \"0.006653376470503894\",\n                            \"overall-percent\": \"0.002129080470561246\",\n                            \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.686644547582642968652e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"379749bc0edc1b539d490be19d2640e049f074d32fd5b8281eaa891998e14155f9dffa7f3de730630f1449f5a61a8893\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"group-percent\": \"0.006653376470503894\",\n                            \"overall-percent\": \"0.002129080470561246\",\n                            \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.686165203936998460007e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"323bd3f38afce4f27e35e5e1c7a6cd4f3f024817fc180fd73e3880e26fdd8824092f9707d216a1c7d278c6bef71b1493\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"group-percent\": \"0.006653376470503894\",\n                            \"overall-percent\": \"0.002129080470561246\",\n                            \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.4218834852727e+25,\n            \"validator\": {\n                \"address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                \"bls-public-keys\": [\n                    \"323bd3f38afce4f27e35e5e1c7a6cd4f3f024817fc180fd73e3880e26fdd8824092f9707d216a1c7d278c6bef71b1493\"\n                ],\n                \"creation-height\": 3405985,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.62354e+23,\n                        \"delegator-address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                        \"reward\": 3.636557513123837331117e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.012304e+24,\n                        \"delegator-address\": \"one1m68ye842jh4l27uhfae4thakz0klzjwumrf2ls\",\n                        \"reward\": 5.234860803848585471606e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+23,\n                        \"delegator-address\": \"one1kuu877arheztzhy9xvyeafasayujsdtm5h8hm6\",\n                        \"reward\": 1.539661100140860986039e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vy49dqugujq9ghjh79pkwmn67g7dd4agn3dtzg\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yy96kgumhfw6tjwdkxtspju4qf0sc9ay4tf50s\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3.87535e+23,\n                        \"delegator-address\": \"one1hy2mkkn4av7mfnwc7gn5ak3trcnq2mrg80297t\",\n                        \"reward\": 73991408310284473247,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 7e+23,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 1e+25,\n                        \"delegator-address\": \"one14hr9evj6dk7q39ukgquawqvcjcz92zq6ehlwpd\",\n                        \"reward\": 1.551938717871973112125e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.364972552e+23,\n                        \"delegator-address\": \"one1ermphd2fa5gjxnmyd2wmks5kfdmr6m4la7qz7w\",\n                        \"reward\": 2.56656320872838170129e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.0144597527e+22,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 25056278149473866709,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"fireStack validator for all stakers\",\n                \"identity\": \"FireStack Validator\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.200000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"FireStack Validator\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"yuxiaolang2008@163.com\",\n                \"update-height\": 3405985,\n                \"website\": \"https://firestack.one/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 58049,\n                    \"current-epoch-signing-percentage\": \"0.990901642142637670\",\n                    \"current-epoch-to-sign\": 58582\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"6376324000000000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.120175983865722358\",\n                \"blocks\": {\n                    \"signed\": 4097312,\n                    \"to-sign\": 4127086\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122722818360458435\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.116596994760929455\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123316266641667698\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.125121095340142619\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.123987732299251335\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.135883046956835679\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.120457248819211501\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117150175018364069\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121559622743566734\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118580610670967559\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125741337893330639\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114369721276590522\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120926537811816895\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.122168775868989460\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.118624744467577022\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.114072509920664889\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118488579301573077\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119466837103221668\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122694124525935053\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121551229585629758\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.122745018711392161\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121026931739224330\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122900138233870007\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122610598163908737\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116965614719746110\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121694249819299541\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.121084218906130237\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.121005447093651811\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122441693559354405\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120954711403530911\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120175983865722358\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 66267,\n                            \"to-sign\": 68617\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 67459,\n                            \"to-sign\": 70957\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 68686,\n                            \"to-sign\": 69257\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66707,\n                            \"to-sign\": 67561\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 909,\n                            \"to-sign\": 921\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 196279,\n                            \"to-sign\": 199881\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 396,\n                            \"to-sign\": 404\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35951,\n                            \"to-sign\": 36358\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 266774,\n                            \"to-sign\": 269596\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 270172,\n                            \"to-sign\": 273172\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 276834,\n                            \"to-sign\": 279680\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 320417,\n                            \"to-sign\": 322244\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 622765,\n                            \"to-sign\": 624820\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 926827,\n                            \"to-sign\": 929412\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 852820,\n                            \"to-sign\": 855624\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.46883124293182133176978e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.742386508659355772279e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"af0bc63711223af48d1627943ab803da15b36cbab111ed538745024071305a698c837f4df735c8027e3f4c2775dc8704\",\n                            \"earning-account\": \"one17nfgz8rtgpl3nlws5q9tdk9y3puyqf847az6ne\",\n                            \"effective-stake\": \"6376324000000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.007019797242477693\",\n                            \"overall-percent\": \"0.002246335117592862\",\n                            \"raw-stake\": \"6376324000000000000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 6.9303824e+25,\n            \"validator\": {\n                \"address\": \"one17nfgz8rtgpl3nlws5q9tdk9y3puyqf847az6ne\",\n                \"bls-public-keys\": [\n                    \"7a980f5b6ee37ef555edcd8b2fc353cf6cf5a5958abff041e680add231b90435faa4db3479c1ffd238a28cd2c29f5581\",\n                    \"af0bc63711223af48d1627943ab803da15b36cbab111ed538745024071305a698c837f4df735c8027e3f4c2775dc8704\",\n                    \"67f09b3e82681d07b92c47dfb9f781a3243c010466f8ebcf579bcc0516e0c90510b74f0770b9f36ea6a9277e6db2090a\",\n                    \"b373bab28bea1cc51758ab573d33c25ba4da6ac81b95bd0a63ec32e05768446a9230fefedbab87ff0a166f3501a4f50b\"\n                ],\n                \"creation-height\": 3406573,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.7e+23,\n                        \"delegator-address\": \"one17nfgz8rtgpl3nlws5q9tdk9y3puyqf847az6ne\",\n                        \"reward\": 3.9880031065840868800577e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8933824e+25,\n                        \"delegator-address\": \"one1009zvhs56qvyjfl606f8flj26dqwvaxa7n6z43\",\n                        \"reward\": 1.36481615688072700016246e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Investing in the future.\",\n                \"identity\": \"HashKey Capital\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 4e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HashKey Capital\",\n                \"rate\": \"0.300000000000000000\",\n                \"security-contact\": \"contact@hashkey.capital\",\n                \"update-height\": 3472956,\n                \"website\": \"https://www.hashkey.capital/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 58066,\n                    \"current-epoch-signing-percentage\": \"0.991191833669045099\",\n                    \"current-epoch-to-sign\": 58582\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"6382123000000000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.120152920121428451\",\n                \"blocks\": {\n                    \"signed\": 4398617,\n                    \"to-sign\": 4433100\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122715802654488510\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.116543758105004758\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123317499443902828\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.124852624824338524\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.123934554952845618\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.135786514214132388\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.120283038395159480\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117098451683607127\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121447585888889181\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118519940873280934\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125676485459667825\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114241061335411607\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120844806991577269\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.122097359061826488\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.118536785229369402\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.113970791256610082\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118488446575542124\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119373258285165378\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122667081620206435\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121418847118429757\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.122726523668366710\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121028232638543287\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122946516119388676\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122649832050459435\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116915122129255648\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121679854705701972\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.121089855985664131\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.121021451420982728\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122451677700201242\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120946007913502121\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120152920121428451\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 66304,\n                            \"to-sign\": 68617\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 67493,\n                            \"to-sign\": 70957\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 68735,\n                            \"to-sign\": 69257\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 66780,\n                            \"to-sign\": 67561\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 912,\n                            \"to-sign\": 921\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 197776,\n                            \"to-sign\": 201907\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 235316,\n                            \"to-sign\": 237524\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 216539,\n                            \"to-sign\": 218875\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 267459,\n                            \"to-sign\": 270096\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 267233,\n                            \"to-sign\": 269596\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 271167,\n                            \"to-sign\": 273172\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 277121,\n                            \"to-sign\": 279680\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 320252,\n                            \"to-sign\": 322244\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 619225,\n                            \"to-sign\": 621775\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 545213,\n                            \"to-sign\": 546712\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 853026,\n                            \"to-sign\": 855624\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 186\n                    }\n                ],\n                \"reward-accumulated\": 1.56110774772190265411412e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.743971136316876648741e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c9cb0f47b232c26422435f32132b665d8d7489d7fef92d4d37c4072ca5dd3106a0f688afc8443de30c0bca87477fe00c\",\n                            \"earning-account\": \"one16f3f9y4sqtrk3eq7gnagr4ac8p25rf08u0pxxp\",\n                            \"effective-stake\": \"6382123000000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.007026181454479644\",\n                            \"overall-percent\": \"0.002248378065433486\",\n                            \"raw-stake\": \"6382123000000000000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 6.9313260999e+25,\n            \"validator\": {\n                \"address\": \"one16f3f9y4sqtrk3eq7gnagr4ac8p25rf08u0pxxp\",\n                \"bls-public-keys\": [\n                    \"c9cb0f47b232c26422435f32132b665d8d7489d7fef92d4d37c4072ca5dd3106a0f688afc8443de30c0bca87477fe00c\",\n                    \"276d8dc30df64767d3c34decc2361e32049b922d03fd60f47346e4a2a28dd9488473d439dd1848fbd763076507f25611\",\n                    \"f0559d05a7542debada7f96c4805eb291dfff82e33cb0b34c8b929af09ba720f862a0faca519d6441900cec8096e1596\",\n                    \"d146a5b2072d58209f6578ef7ee16156a23122e02c9cde97ca337ffd7714d6e05e453a487ac30f853b3dd1c79febcd93\"\n                ],\n                \"creation-height\": 3406643,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.7e+23,\n                        \"delegator-address\": \"one16f3f9y4sqtrk3eq7gnagr4ac8p25rf08u0pxxp\",\n                        \"reward\": 3.9906120140479786804598e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 6.8933823e+25,\n                        \"delegator-address\": \"one1009zvhs56qvyjfl606f8flj26dqwvaxa7n6z43\",\n                        \"reward\": 1.3628528740942122098354e+23,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1vhm4n3ah4zksfwhv9y9dxvh6z9lkjkkj6pxqx0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfuvmhz4zgvpeyap5k7qngj25xv84t65vnecye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fnrlvje767q02th6xgln763xvplw5pswwkj77m\",\n                        \"reward\": 297192211000216762131,\n                        \"undelegations\": [\n                            {\n                                \"amount\": 9e+22,\n                                \"epoch\": 205\n                            }\n                        ]\n                    },\n                    {\n                        \"amount\": 8.3e+21,\n                        \"delegator-address\": \"one1jml38lds7e9n4q4x5pgrlw8nw32nz2pdu8w09v\",\n                        \"reward\": 23654912181546250191,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.137999e+21,\n                        \"delegator-address\": \"one1ac82n44sq543exrwc2vrmvhq93wqcdan8ehnnc\",\n                        \"reward\": 2751138908775469492,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14er7x4anjgez69h3zfyv0nmmyr6gc0fznck0km\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"HashQuark is a new generation Proof-of-Stake pool focused on POS, DPOS and other public chains providing secure, transparent and efficient staking services.\",\n                \"identity\": \"HashQuark\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 4e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HashQuark01\",\n                \"rate\": \"0.300000000000000000\",\n                \"security-contact\": \"contact@hashquark.io\",\n                \"update-height\": 3472997,\n                \"website\": \"https://www.hashquark.io/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one165stpdzl6c6pwdkt9f5xrad063e00symwyznd6\",\n                \"bls-public-keys\": [\n                    \"24fffe1325f4cb453614da45f6471665ed798727eb33fc9eb219667fba300f3154177ce80a5f226ee1693c02f311ff88\"\n                ],\n                \"creation-height\": 3406709,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one165stpdzl6c6pwdkt9f5xrad063e00symwyznd6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"EFValidator\",\n                \"identity\": \"EFValidator\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"EFValidator\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"EFabian\",\n                \"update-height\": 3406709,\n                \"website\": \"none\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one14ew2n5677rufu6e8n32j8pmvkgxt7gug3zajgy\",\n                \"bls-public-keys\": [\n                    \"489d9761796f623875584893a0220dd3a36381b9feab27f6c1a875a7a5c81f02724d2f2aeb0a62954f7fb355e29d5b84\",\n                    \"a2e7a89bd24a5ba0e77cc344ebdb360fdecc72170dab06764c1188809fdd877ad601da849bd9545c11adcf80a006b217\"\n                ],\n                \"creation-height\": 3409229,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14ew2n5677rufu6e8n32j8pmvkgxt7gug3zajgy\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Nodes in the cloud. Glad to validate your funds. Give a shance even to the little ones ❤️\",\n                \"identity\": \"“-“\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"ONE-Validr\",\n                \"rate\": \"0.040000000000000000\",\n                \"security-contact\": \"“-“\",\n                \"update-height\": 3422160,\n                \"website\": \"https://www.validr.xyz\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 128198,\n                    \"current-epoch-signing-percentage\": \"0.999189412479930165\",\n                    \"current-epoch-to-sign\": 128302\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"125532635150618109889846153.846153846153846152\",\n            \"lifetime\": {\n                \"apr\": \"0.110541973073409544\",\n                \"blocks\": {\n                    \"signed\": 1256384,\n                    \"to-sign\": 1273922\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.106982662806086110\",\n                        \"epoch\": 287\n                    },\n                    {\n                        \"apr\": \"0.094212565594513854\",\n                        \"epoch\": 288\n                    },\n                    {\n                        \"apr\": \"0.104517342098824424\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.085601737653365526\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.073250645343104928\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.070155353264113463\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.061478655648311495\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.116366446062911195\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121002702683139682\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118153128637652631\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.072255954100246816\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.045402512983456791\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.098800269762308264\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121746861339723092\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.092557361750489610\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.068762818788677318\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.079195126896310920\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119059159016731933\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122279082113231622\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121088872978845190\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.116427413789963139\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120760295000864808\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122915263683870529\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122467651041468735\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118509104691270592\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121528676193430587\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.106940107891422586\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.092881244561083289\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.079962472723469716\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.097517576093945741\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.110541973073409544\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 113094,\n                            \"to-sign\": 117790\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 120083,\n                            \"to-sign\": 120238\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 118603,\n                            \"to-sign\": 118681\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 117256,\n                            \"to-sign\": 117391\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 118894,\n                            \"to-sign\": 118999\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 115327,\n                            \"to-sign\": 116525\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 135448,\n                            \"to-sign\": 135888\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 133659,\n                            \"to-sign\": 133960\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 132651,\n                            \"to-sign\": 133382\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16344,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 2,\n                            \"to-sign\": 2\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 6825,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    }\n                ],\n                \"reward-accumulated\": 4.33826300877619526145192e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.426409803135255522322e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6bfe56ba0a591b8f1001b201571561e0cf9e682bec8f8a6d8ee2c68ac7daf56bfa40810f1f00855c38d10a0127f46104\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427165137374922179602e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ed8aec2b23c22fbefd20a8dc53f2ce38d24c6cca03834ac55d0ee39b75cad5a323b8aab9be7b2a3615b820d64fa3be04\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427391987591628064385e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"de0cb19717d7652a91d8678eed96ccdde9f97a10b134df6e21dc849c20da22b1d300ff5d0b10bd2c2b2be92f39612884\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.426538918842746155927e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"030d960525fa382549ec9ce33f31018f902368bc60ad74d9c62ee0e870f6cc78514ed61c46d107db4f3324b6a5d6680c\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427562172053479848991e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c90d5c4253e7ca83fa837c5b065227fe06629d6c1fdb6ab1b68c2afd7454f1bccd24ba4779431ab1fa8a77ddd739d288\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427390742570228214552e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a52bbb39d1fcac96f538ce3bbd75537134720ebb98b8076b2b9eb3b0a47de2e81d666fd930fabeac6c015b39d427de80\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.426308448013278551327e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"70a9da95478349f15537174471a202454f62e038b42e2cfe668a2c09c0a947dc157fc5637704e4bd4ced329f9b257c08\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.426422636308171896428e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"7f6caea9935bea624504e0b56e530f609752d476bcaeef5bf755a52b95f1193baeeadfad8db27f41546155902e967304\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427668995340742788459e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"ea0ad7e0c1548ecf714619900de11947e46018b965dbb23a4d8b6232b9e8bfa6c460e2e383a937e1cee7a8ee47873498\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.426535339717955000796e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f4d3a519e90e01812ae51eb25d2cf6acbcfc1a7b0fd2c85816876b49d89649549f20a3c93b5e5f0d34cd0d4b7039dc14\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427391987591628064385e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b7e3288b3b06d3cf7a42cadd23f81e57c23e40ccb0dd31e3fe02685a49070dbe37634b1cfc1567c427cdaf5cd2f42590\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.426087423138918710885e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"6446b0305715cea4f6615e2a685a7489f36e886acd56e9a889e17e3a0f963d163208ee3c8e8f348b2ea12210b0803090\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427390915558646820946e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"5f0645fe0992c70793693d261b3bb9ba32cd3d64cbb70273e2395f85f0d953c40e1529dc40358f8cc1c25ccf8b1b8090\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427286353980065185806e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"29d31f3f888359f1a01011db65a0685b3e9d74a33a346fc7cd178cdb5384372f33a541c3c6526ff3e58ea5c11db9be14\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427505693252745767864e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"82585333306c11090db50c2dc3a81d990ed7965d951e34574c6d4f8bf6ec8eb90cc0ea9ed283606544fb9bef9da66984\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427391987591628064385e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e8b723de3c01f2b62942321c32293ba3498e6c4dbc4e16ef7ea503df107a8c0301375a0d601c5306b062ddba3628ca88\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.426299999110246621372e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"330d5bdd896ed7c08f39475881d96fd21baf4a4b81abb2d2c8009e33ffec56398166a2b5e2c814d8cb0c18c792b06e84\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427674031643436861949e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8e70e202d35dc53372d24a69571852f8aeab67d7f0cf614272e6d94e42da02313fb9505a12d70f60a8b9b9b6a098cf84\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.426539816922331381091e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d0df50839455dfb62abf044123c4db6fb697ed44e68d843deafb8e549a554489807d8cc379f9ddd77134e45e48c28814\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.426537350444878318951e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d88bed02d72629ace3ca2c7faf7f53be1fc0bb8948df7eabd1f79ec2124b82023fe46569a8f19f476f2c095b46aeea18\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.426531368019299451136e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a2a26aec4321e583695ad776e4362f751bbacc73596aa95a1e0d1fe728f9a4c4287fc53e32b103d6000be6d4f62aaf0c\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427778423988415775013e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"630a2b02aa7f83481f1c83c28b6a9b177401b457796fd63b1d1c53c81310b8f20174e17683aef21dd8a65d34ec026914\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503913\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427502775148603833904e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"496f3bf9c80a4e1ce0525e2854435139486e77cbb0abd280af4389c0535a0cc5f3a6c9be0e6e498348c8224d3f918988\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.427063517177700310473e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f963fd2b67f315843c01d8f91c9c34132fcba3476169a5766d6583c93cb1262673ba3cb6acd3d089e31736fdc1537104\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"group-percent\": \"0.005758370379699882\",\n                            \"overall-percent\": \"0.001842678521503962\",\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 9.5136e+25,\n            \"validator\": {\n                \"address\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                \"bls-public-keys\": [\n                    \"bbe1d37c33de81fb36db048e585aafec3d8536a6d7fb121bd61ecbfb50f5d42dfd9311658f92873f88253753439c9e0c\",\n                    \"7b13f37ad2b7f505bfd2309ddf0decb693c72ef8ef356e773f0a92a9015bf3585729ec621552917d5d2dab770d14f780\",\n                    \"d7eaec7a3d4c6bfa581efce4eda6253973130af604bf6026ec89d68bdc2fac4933953e4ba51df2d58cd2109037d5b010\",\n                    \"40dc10007c225869f88618f5145d3afad1433c5edcd19f27447e73131544166c89b9c3588b0003bf1736bec268851218\",\n                    \"fb76dec137ae15a6b06038654f1c8b1fd6c907b12b6bb9a3837cda08cc7abc9a5ccc80ac90b390e773e5171e617ca219\",\n                    \"fd221af023a1fec37482ed2d23de58a96c6f92837d84a4ec4815f0c9469710e9ff89ed0f2a1b9919c8443f475256cd0d\",\n                    \"4e9087d1cada00ba22cbd59429cbd1394afbe9e5b9240f6e58196719fc5064bf49414d49c99081f2147baa1b556c2a99\",\n                    \"e05aa5bb7905369461c72095b6950379d19057bbe2e1a1da8a002f2f16cc8ed5917c8ad92874619c035b3754c7e30b8d\",\n                    \"687aa81ba914f6257ea36ed53339e33e6e8ed8997321340191538fcb136450e2dc5f10cf854cbb2beac5c194385b6a88\"\n                ],\n                \"creation-height\": 3411752,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                        \"reward\": 7.673213376141687581294e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16735e80xtsd4y42q9u2372av9wdpcl2ae777h5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.5101e+25,\n                        \"delegator-address\": \"one12a4xewjp07gfh6qx8ln7ucycpxf8arx5mp38yr\",\n                        \"reward\": 1.2932856211407588678409e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+22,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 114503314289561700282,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Fueling Blockchain Beyond Infinity\",\n                \"identity\": \"39A41C2FDE0AD040\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"InfStones\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"contact@infinitystones.io\",\n                \"update-height\": 3411752,\n                \"website\": \"https://infstones.io\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1k8pj3zc72hvhtnsks0fuf39zy6w2xqte6sazmc\",\n                \"bls-public-keys\": [\n                    \"7a2e85e95007fc8b804b9c871be71578b95b352109d55e760f964b6af8c8b7c4c9446a61cfe4b34650474fed50fa0b12\"\n                ],\n                \"creation-height\": 3415703,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1k8pj3zc72hvhtnsks0fuf39zy6w2xqte6sazmc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"DETAILS\",\n                \"identity\": \"/\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"/\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"chenak.alaa1@gmail.com\",\n                \"update-height\": 3416754,\n                \"website\": \"*\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1yjf47da7ymljt09x8w44d8as3csvqp8czk3suj\",\n                \"bls-public-keys\": [\n                    \"4fda1e6f2c5657fe4162cd7f3fafeb9c0ca98917aa389b74998646a681bceae3d373f246c90b39f55b3febc52424c08e\"\n                ],\n                \"creation-height\": 3416086,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yjf47da7ymljt09x8w44d8as3csvqp8czk3suj\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Harmony 0% Fee Node\",\n                \"identity\": \"Stanis\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 2e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Stanis\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"exstas99@gmail.com\",\n                \"update-height\": 3416086,\n                \"website\": \"harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 14648,\n                    \"current-epoch-signing-percentage\": \"0.991941491162727704\",\n                    \"current-epoch-to-sign\": 14767\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"62570129858209517461999999.999999999999999994\",\n            \"lifetime\": {\n                \"apr\": \"0.118491785185584755\",\n                \"blocks\": {\n                    \"signed\": 297994,\n                    \"to-sign\": 304696\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.123091179504785696\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122974270720789686\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125976620462644803\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.126329251848591023\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121438832819106437\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.125449343423262623\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.124571306762185428\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.120320863752894026\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118106206325969554\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118062670186116435\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.116378612794046565\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.119193037084716753\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.122243172221225725\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121449745192238418\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119026874478378757\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.120056346560293789\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.122565891595869102\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.123712916978733764\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.123505749458262192\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.122074323059103399\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.119258064822694808\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120259842996638200\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.118413796638093362\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.118512422942420818\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.119144705644216034\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.119138155993419874\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.118913969667389585\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.116622367397172186\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.118292725296963949\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.117974287056201965\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.118491785185584755\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 17465,\n                            \"to-sign\": 17479\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18257,\n                            \"to-sign\": 18283\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17610,\n                            \"to-sign\": 17663\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17218,\n                            \"to-sign\": 17299\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17742,\n                            \"to-sign\": 17761\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16779,\n                            \"to-sign\": 16924\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16147,\n                            \"to-sign\": 16249\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16101,\n                            \"to-sign\": 16805\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16407,\n                            \"to-sign\": 16991\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16387,\n                            \"to-sign\": 16976\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16700,\n                            \"to-sign\": 17234\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17503,\n                            \"to-sign\": 17858\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 21463,\n                            \"to-sign\": 21600\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 57567,\n                            \"to-sign\": 60807\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    }\n                ],\n                \"reward-accumulated\": 1.08040749404019342477056e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.522520583779284758765e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"cb053feeacdb08786c04fd4b31e621a929f16fdebd6e2e8ea5687deb6cc756a07e511d8c46ce6cf9d86bee03f4d0aa91\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"group-percent\": \"0.005940890720631167\",\n                            \"overall-percent\": \"0.001901085030601973\",\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.522520583779284758765e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"dc5a72979a6872697feedfb06185db787525db54ec52da51a4ee9be6f3be5d47befa4f4515ef0b5b1bee85f864bbf695\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"group-percent\": \"0.005940890720631167\",\n                            \"overall-percent\": \"0.001901085030601973\",\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.522520583779284758765e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d587813837471e974a68fd764127da54e9828e387fdef6ea41e0e8118bbd3083b5cbed568007b99a1c583d470eb58001\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"group-percent\": \"0.005940890720631167\",\n                            \"overall-percent\": \"0.001901085030601973\",\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.522520583779284758765e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e9af74da3a50f586467aac3282102450d7e10e7aa73e5f1fbeec7d89d9512a8047aacb68ab54e47da59b99bfef3ce491\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"group-percent\": \"0.005940890720631167\",\n                            \"overall-percent\": \"0.001901085030601973\",\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.522403683487990741468e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"c4f38df0892305a1f5d17d22050ab2897e5063725ad2a7076b032861f1b666559a06af6c0737ebbadbc2f3b65fa5a385\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"group-percent\": \"0.005940890720631167\",\n                            \"overall-percent\": \"0.001901085030601973\",\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.566757825045051795219e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"94253962d70e43ca53ecdd66d71a438dc10a0aa3b97e67ad608c214026b082713d757b6777bbefc32715172f55cb8c0f\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"group-percent\": \"0.006135989534894296\",\n                            \"overall-percent\": \"0.001963516651166175\",\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.566757825045051795219e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8fd42f4c128a790f11c89f44c8bab27cc47ac16f7186cb8d70ce1f692403502677da9f70e5a1f0dede60fcdaff477c83\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"group-percent\": \"0.006135989534894296\",\n                            \"overall-percent\": \"0.001963516651166175\",\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.566757825045051795219e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a1f03291f3c358caa913e4c14f8b1eb7ff73176da03c9d57b76b9d84be48900a9e50e0626e72b2661571df67513a130f\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"group-percent\": \"0.006135989534894296\",\n                            \"overall-percent\": \"0.001963516651166175\",\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.566757825045051795219e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4cbbf20d0c3bb8f4e2de88040f321bd94cb88c5ec427401993be0be5016fe22cd6543810b4737eb9dcf2739e922a8387\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"group-percent\": \"0.006135989534894296\",\n                            \"overall-percent\": \"0.001963516651166175\",\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.566757825045051795219e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4a034d3423a8f70ec406315fa777f081201b28ef94d4b385b4aa4059a657eae806ee228c0d676c855d5fe17f51b71487\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"group-percent\": \"0.006135989534894296\",\n                            \"overall-percent\": \"0.001963516651166175\",\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.566757825045051795219e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9483de51dd025c42877e979eff401d1c7cbcfe7865d414b144af3335d73a7839b4bcc74ac8ea5f82b0e286342318200f\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"group-percent\": \"0.006135989534894296\",\n                            \"overall-percent\": \"0.001963516651166175\",\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.1125676e+25,\n            \"validator\": {\n                \"address\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                \"bls-public-keys\": [\n                    \"1b1cbd49ecbcce2720c0bd4e47b234a4ef35679a8883605431c6cba1c6d9bc0634ad7c92b19503b3137d4b89b2e29d17\"\n                ],\n                \"creation-height\": 3416719,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                        \"reward\": 100220216588843354928,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1002176e+25,\n                        \"delegator-address\": \"one12t4hfhh0am0jzt834yjsrg6s7m6x40whmh7rf4\",\n                        \"reward\": 5.000993750401395541097e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one18xfcqu7jf0cq5apweyu5jxr30x9cvetegwqfss\",\n                        \"reward\": 8242103532449766487,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1sq7gvnl3pskp5dcg6scvet2cycgnj2fqe8nlxx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nr0effd20epfuyjrlt6mvxe2xtx2cylaxvxr5d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.25e+22,\n                        \"delegator-address\": \"one16xd65fzqx0j8zrsnfaylaaxa6vm3w2035r0m20\",\n                        \"reward\": 28117804033791719074,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+23,\n                        \"delegator-address\": \"one1678sjh6wxuqjxxvrtllswgh3dy4a0e3z3tavhc\",\n                        \"reward\": 743546336694689424972,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f5ksp2hd8mg4c370hu06zvrywvu4cv59g5qnc9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"MatrixStaking\",\n                \"identity\": \"MatrixStaking\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"MatrixStaking\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"admin\",\n                \"update-height\": 3446160,\n                \"website\": \"matrixstaking.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.000000000000000000\",\n                        \"epoch\": 212\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.019e+24,\n            \"validator\": {\n                \"address\": \"one14tdlgysvnqcdgwnduttd0y5pp2y7m8cpss30j4\",\n                \"bls-public-keys\": [\n                    \"4ce4d4c2f2a4e115d5c2253a4d5d17c8fb4a585280eda890983309595b2bbb596ec71284105c67618f1fb2e7f7cb6f84\"\n                ],\n                \"creation-height\": 3416842,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.019e+24,\n                        \"delegator-address\": \"one14tdlgysvnqcdgwnduttd0y5pp2y7m8cpss30j4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"NODE\",\n                \"identity\": \"FN\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"kaparnos\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3416842,\n                \"website\": \"kaparnos@gmail.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.148805882008680243\",\n                \"blocks\": {\n                    \"signed\": 152240,\n                    \"to-sign\": 193080\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.398739267175892724\",\n                        \"epoch\": 189\n                    },\n                    {\n                        \"apr\": \"0.426881542079142029\",\n                        \"epoch\": 190\n                    },\n                    {\n                        \"apr\": \"0.180345234728351427\",\n                        \"epoch\": 191\n                    },\n                    {\n                        \"apr\": \"0.148805882008680243\",\n                        \"epoch\": 194\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 403,\n                            \"to-sign\": 406\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33786,\n                            \"to-sign\": 34050\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 406,\n                            \"to-sign\": 816\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 40062,\n                            \"to-sign\": 79940\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 40834,\n                            \"to-sign\": 40934\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 36749,\n                            \"to-sign\": 36934\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    }\n                ],\n                \"reward-accumulated\": 4.9351302757380718426584e+22\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+21,\n            \"validator\": {\n                \"address\": \"one1g0pyvll0u2pmk2c0xqn0cfwh5s4ydfvf5xvfft\",\n                \"bls-public-keys\": [\n                    \"17741dc01a49d8db999e39f67e097dc173517171875938f238751315f7a48de87a66cfc7b67f4cd7156a4dd84faea98a\",\n                    \"758c6108743b6effa60b50c17d3f9aa2ca751894a235d57a32724343187deff8e4b5f973fa17478f17da22479b9a688e\"\n                ],\n                \"creation-height\": 3416851,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g0pyvll0u2pmk2c0xqn0cfwh5s4ydfvf5xvfft\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a2ym9d8nrayel0dhq62mfahkaawavprts4fdec\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fnyhmt5998e78nx57leg4an5req5htaux0fq26\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1eqpmuhlr2tv70cc5z5qtwf6xxl86z8s5079chv\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10ncvpeph6wg0s6cjnhu6ac4t4yjnl42hryqtpm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1j0u4asf4getdaeajq0jdlft45qffr9tkr4dhph\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tfdnlxnjvfuwhrmyhvvmjwq96an7a96dp3duf9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1qdh9wh0kujj3nhcmz58uqxtrw0t62p5att0px3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1xw7zw0nfacurs4prmm0equs95fnjllwz32tzk2\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1u6fmwccwgh2e0h0qvj59gvute6j58j2g3eqz2n\",\n                        \"reward\": 443906709344281514656,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 887810045010390804,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"--website\",\n                \"identity\": \"TrucDang\",\n                \"last-epoch-in-committee\": 194,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"TrucDang\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"TrucDang\",\n                \"update-height\": 3416851,\n                \"website\": \"https://twitter.com/minhdoan82\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.115968231615128615\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121538836487670286\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.124015807163534724\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125205008175711242\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.121288652971537182\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121915454348708689\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.120049196653463085\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.119449691452488616\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122729874324120551\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119383714922960554\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116924194661557042\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117486155560224820\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116696434577005845\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119273779209785756\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119796028486064477\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.119869804783281461\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117473340666790857\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.116591285096261029\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.118023462545637530\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.116127038875086137\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.116515671140360895\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.114430970573616284\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.115423756831159576\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116468392235811092\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.116040455523560338\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116581379406810836\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116755063683674112\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.115722090409246011\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114647205955168027\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115192336787983715\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115453045147472531\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115968231615128615\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.2e+22,\n            \"validator\": {\n                \"address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                \"bls-public-keys\": [\n                    \"9cdac12c6507e3405edd521d5cc892840b5f79b140ff3c71b6e7c9a4010b886608fc3f83709e1a60232fee0bb2b00209\"\n                ],\n                \"creation-height\": 3418048,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.2e+22,\n                        \"delegator-address\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Hi All, lets delegate to my validator. Validator since Pangaea 2. Harmony IndONEsia.  Stake with us for best experience!\",\n                \"identity\": \"Harmony IndONEsia\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 2e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"ENTER Group\",\n                \"rate\": \"0.025000000000000000\",\n                \"security-contact\": \"winahyos@gmail.com\",\n                \"update-height\": 3418048,\n                \"website\": \"tinyurl.com/yc3u4c9q\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.2499e+22,\n            \"validator\": {\n                \"address\": \"one14l4lst4qnm9fecv38450upfjym00s4ejz9mgdc\",\n                \"bls-public-keys\": [\n                    \"79c3bc95d27cbf05c1e1327726100701d1a9a4cb6002e3104e96578e7dbc2109b102ab0615a7b1b90725d4f40f92c715\"\n                ],\n                \"creation-height\": 3419529,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.2499e+22,\n                        \"delegator-address\": \"one14l4lst4qnm9fecv38450upfjym00s4ejz9mgdc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one12xfkkmqm7cnv52tml8vpdawvax0kr8f4wrlp96\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ej5qxvat3hr6che3y0ur4l67yz8vmwqkpp6c3u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1s4604lg40q9tvzaaf3wp9rtr3txzl2796p6dgf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Cloudmesh is one of the original foundation nodes having run Harmony Mainnet nodes since August 2019.\",\n                \"identity\": \"Cloudmesh\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Cloudmesh\",\n                \"rate\": \"0.030000000000000000\",\n                \"security-contact\": \"Cloudmesh\",\n                \"update-height\": 3627110,\n                \"website\": \"cloudmesh.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                \"bls-public-keys\": [\n                    \"af160dbbb6bd0898f4d1008821fc191031d699999007f5dce1883278550ca3288bec962ee8567d8928375862a5802718\"\n                ],\n                \"creation-height\": 3420125,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"lon1-n1.ankr.one.smartnet.works by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.900000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"lon1-n1.ankr.one.smartnet.works\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3420125,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one133vpazf7aafwfh3dcsg7zmfs2ua04c6y0slstm\",\n                \"bls-public-keys\": [\n                    \"e7cd3fc95d3b1fc9c17021d67073b02bd61c5f4d5d726dd3dbfc7bfaaee4c5f19474371075ebbe15f2bfc2d4b132f20d\"\n                ],\n                \"creation-height\": 3420592,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one133vpazf7aafwfh3dcsg7zmfs2ua04c6y0slstm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"enosis by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"enosis\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3420592,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one17qpwyvyf9lscsy7e7yvcrqzsgrc8f0y03jkv6v\",\n                \"bls-public-keys\": [\n                    \"21b7864ecdf474b89736757ef8db460511dc00f528e5daeb8c44f49d32d0eae0958ada5530c0cae77df34d5edf358491\"\n                ],\n                \"creation-height\": 3421040,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one17qpwyvyf9lscsy7e7yvcrqzsgrc8f0y03jkv6v\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nhzpvfd53n0qqg68q2dv6xhrv24arj37wsp3n8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Just started and it's good for your profit\",\n                \"identity\": \"Stake with us for maximum income\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"GetMiner Staking\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"Evgeny\",\n                \"update-height\": 3421351,\n                \"website\": \"www.getminer.ru\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 203150,\n                    \"current-epoch-signing-percentage\": \"0.990994946242853519\",\n                    \"current-epoch-to-sign\": 204996\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"106473818371004807602488000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.102621504313148164\",\n                \"blocks\": {\n                    \"signed\": 2654710,\n                    \"to-sign\": 2715172\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.104686147160137966\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.104024125675666247\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.102795010285395506\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.102039586677739853\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.104260459582991250\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.104493400433669707\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.100796662998772895\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.102797758649129576\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.102861885904828772\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.101961053716554289\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.102408691180786305\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.101408703117160843\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.103146103355487171\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.102673960275481881\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.102167491924086639\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.100366429661080719\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.099966872784151121\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.100345530391669264\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.099858913267842940\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.100440961307315987\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.099837578614471659\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.101009906451535545\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.101542893512421161\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.099889814447751931\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.100899791343677982\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.101425117710307760\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.098904906825390175\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.098981638381524003\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.100133222092066167\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.100955641095519079\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.102621504313148164\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 252971,\n                            \"to-sign\": 257192\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 277531,\n                            \"to-sign\": 283828\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 269196,\n                            \"to-sign\": 277028\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 265784,\n                            \"to-sign\": 272684\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 272204,\n                            \"to-sign\": 278400\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 262121,\n                            \"to-sign\": 268936\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 263967,\n                            \"to-sign\": 270224\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 261845,\n                            \"to-sign\": 268684\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 261828,\n                            \"to-sign\": 267666\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16102,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16175,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16093,\n                            \"to-sign\": 16384\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15743,\n                            \"to-sign\": 16382\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 189\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 188\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 187\n                    }\n                ],\n                \"reward-accumulated\": 1.02660043571977608293892e+24\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.818456639919530326321e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f770f6870b1bf4da303e792009741d6c930ddb70ca2783f1bef640cffeb54fce1b359937943c076ae09b3fda5c35d198\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007326170774462393\",\n                            \"overall-percent\": \"0.002344374647827966\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.818324926054812970579e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"9683cf11fea4c31ca1f1d295d8526a60405b555785ba152f740ee9d8213fe55faf9a2d75f68b7972cce87a6180896e98\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007326170774462393\",\n                            \"overall-percent\": \"0.002344374647827966\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.818587493752334393421e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d26eb416ab1003578cb8fc6cc73dd0fe6362aba6b255658f3b9e9fd5c7b3bdfd02692bb0aed6c2b7d932176145717888\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007326170774462393\",\n                            \"overall-percent\": \"0.002344374647827966\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.818455801682700622813e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"60de05a9fc29a07778323ad5f5bc3036499d579801795b02f019109840dc7f6ec68b8f52b5e4b8ab0dd3a3c6d6296018\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007326170774462393\",\n                            \"overall-percent\": \"0.002344374647827966\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.780291813036053946746e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"091fdd3b868e9a9966a73236f884c2be8766197800fe3bc5d99946415c1ee27d1db88a6d9d5d345d1a03ff27a4a6be81\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.778099309726411198727e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b8ee5acf7daf413625230da44a86a8a111d6e8adec486afe684bced0967134bb8f920bb2efd8481c5e8c1f2413a79d85\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.507246704688333643769e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"a4c2e977e695c5ce8b3b9ef25bc450b6d2a8d1a6f2aecee2465a56693fd8e9c783e661d3a2e779902d16cb4ae1e1ec05\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.780531829979559000986e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"67efa66594a81a2f82f7197204d3f83fd8f07f21be57293628e134d84d9810f2ff7ec45cb06692a3213865f364016b0d\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006950243801258317\",\n                            \"overall-percent\": \"0.002224078016402661\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.767669024302417157393e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f9ff0de79f286d8d745bad5e763e517ee4f5dbcaeeacecdf8270245f4c036bba6cbb4499b68be0cea7d01fda1ab0008e\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.758883245083218229854e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"73db00059344d9039cfe25d69d904ba89ab8d468ef9e84d5e046375445ee2b04b48f87588e0d39df69eacc9ea5653016\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.767071683001844012716e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"55e536cf0cd5c3744e4f728bc84e5d96ddd94db50ce7d245a9b10e2ebc842779cad48a583cbe0f7ecea0053415d1ce82\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.767475749289253356788e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"18110d1f458866fdc4b79870f95e6fb9c502bb3779dae5aaaf5b554a5246b33bea7f14296f145e6f74543229a45d9c06\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.006928689439590808\",\n                            \"overall-percent\": \"0.002217180620669059\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.824257535592343745135e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"89db7c6abb1329773ac852f226d1bbaba0bb4ff675819f0017e8bd6b1075153ffa0621895e349c636d5c662e26050097\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007178489764402561\",\n                            \"overall-percent\": \"0.002297116724608820\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.823867474859713021539e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"56992d9f0f295da3451e9444bdc080b5022fffc9063e5b34bcbb3483ddb643e36b3fae91ca59e46725c9eacc89253717\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007178489764402561\",\n                            \"overall-percent\": \"0.002297116724608820\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.819248064614639247192e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"f01fc84c396ed30e2f9cb85ee7d233718b3651539c91067593acc78ac01dc085b5c452f9cfd6a532ddf4178da4711297\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007178489764402561\",\n                            \"overall-percent\": \"0.002297116724608820\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.819398267743111396637e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"d4987f2d4013fb3cc422b1812e37804cd01e7ce82fd9eb4e74653b325f3d97afc33c0bccdf3233a5b9d4ab4e856c590b\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"group-percent\": \"0.007178489764402561\",\n                            \"overall-percent\": \"0.002297116724608820\",\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.5003499e+26,\n            \"validator\": {\n                \"address\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                \"bls-public-keys\": [\n                    \"f770f6870b1bf4da303e792009741d6c930ddb70ca2783f1bef640cffeb54fce1b359937943c076ae09b3fda5c35d198\",\n                    \"d26eb416ab1003578cb8fc6cc73dd0fe6362aba6b255658f3b9e9fd5c7b3bdfd02692bb0aed6c2b7d932176145717888\",\n                    \"9683cf11fea4c31ca1f1d295d8526a60405b555785ba152f740ee9d8213fe55faf9a2d75f68b7972cce87a6180896e98\",\n                    \"60de05a9fc29a07778323ad5f5bc3036499d579801795b02f019109840dc7f6ec68b8f52b5e4b8ab0dd3a3c6d6296018\",\n                    \"b8ee5acf7daf413625230da44a86a8a111d6e8adec486afe684bced0967134bb8f920bb2efd8481c5e8c1f2413a79d85\",\n                    \"67efa66594a81a2f82f7197204d3f83fd8f07f21be57293628e134d84d9810f2ff7ec45cb06692a3213865f364016b0d\",\n                    \"a4c2e977e695c5ce8b3b9ef25bc450b6d2a8d1a6f2aecee2465a56693fd8e9c783e661d3a2e779902d16cb4ae1e1ec05\",\n                    \"091fdd3b868e9a9966a73236f884c2be8766197800fe3bc5d99946415c1ee27d1db88a6d9d5d345d1a03ff27a4a6be81\",\n                    \"73db00059344d9039cfe25d69d904ba89ab8d468ef9e84d5e046375445ee2b04b48f87588e0d39df69eacc9ea5653016\",\n                    \"18110d1f458866fdc4b79870f95e6fb9c502bb3779dae5aaaf5b554a5246b33bea7f14296f145e6f74543229a45d9c06\",\n                    \"55e536cf0cd5c3744e4f728bc84e5d96ddd94db50ce7d245a9b10e2ebc842779cad48a583cbe0f7ecea0053415d1ce82\",\n                    \"f9ff0de79f286d8d745bad5e763e517ee4f5dbcaeeacecdf8270245f4c036bba6cbb4499b68be0cea7d01fda1ab0008e\",\n                    \"89db7c6abb1329773ac852f226d1bbaba0bb4ff675819f0017e8bd6b1075153ffa0621895e349c636d5c662e26050097\",\n                    \"d4987f2d4013fb3cc422b1812e37804cd01e7ce82fd9eb4e74653b325f3d97afc33c0bccdf3233a5b9d4ab4e856c590b\",\n                    \"56992d9f0f295da3451e9444bdc080b5022fffc9063e5b34bcbb3483ddb643e36b3fae91ca59e46725c9eacc89253717\",\n                    \"f01fc84c396ed30e2f9cb85ee7d233718b3651539c91067593acc78ac01dc085b5c452f9cfd6a532ddf4178da4711297\"\n                ],\n                \"creation-height\": 3421354,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                        \"reward\": 5.1362993249462811917773e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1mdapsxyja33033q4zgdd4zxl9cq7mhmds8dhha\",\n                        \"reward\": 1804114477228979427,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.50001e+26,\n                        \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                        \"reward\": 5.2267297217581994760918e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lfuvmhz4zgvpeyap5k7qngj25xv84t65vnecye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19hjspe6czvrpjwagf48yg6f85jdyym9vaeftg3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1870rta9syx7m8lpqqnxlu9aherka7utlx5hqvt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1a8te8595vytupp8nn36pgdg0mh8lunal0js7lc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1g4u3hy78vux7mtqerfqechx7q7seyg6avtnq4h\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1v2r3n6tx0hzegr9fkkmer5tmue4wyfzmr7e42y\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1x62hw24dlfcqcme7vs04g486l257dmuw66h2v7\",\n                        \"reward\": 2369893520567760827,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.999e+22,\n                        \"delegator-address\": \"one1v0f5up4kztfpxy63d75lywrwekw29ekxds9elv\",\n                        \"reward\": 47374171476150632495,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15yzkw494ukjgj5cwcw9vz03g2n3l7v2spqzfv0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1gkgefgxpj4kuy873upl7judq5kp6wwc9rqr2y0\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 3e+21,\n                        \"delegator-address\": \"one10zsqhjwjwq0wuda38f4y3d7wdymfkcrfkmezqz\",\n                        \"reward\": 3596959295922081040,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Stake on Binance.com\",\n                \"identity\": \"Binance Staking\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+28,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Binance Staking\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3421354,\n                \"website\": \"https://binance.com/en/staking\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1jzsacjqa20q5vdu397ltgnfwvsq4me87g6k8kp\",\n                \"bls-public-keys\": [\n                    \"663cb993fc5793f4ecf234695a6700ecadccd39fb447d6e41ea2706c8b023526653dc369ca4ac6aa04c916bbcf42a40d\"\n                ],\n                \"creation-height\": 3422920,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1jzsacjqa20q5vdu397ltgnfwvsq4me87g6k8kp\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Later\",\n                \"identity\": \"make network better\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Ripich 01\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"Ripich\",\n                \"update-height\": 3422920,\n                \"website\": \"https://telegram.org/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1y9lmedxmwstmjk0qw7hxh2z37p0c54puzmyurn\",\n                \"bls-public-keys\": [\n                    \"c801af2cb11b7e7b3950896d29f6f20158aed9497e444ac13745160190a4c97f2dfe894a82f8545a2dc440fab178f20a\",\n                    \"fbfcf0a1cedabb85afa1ebdbc2a6c4131a30a90a4285598e0459343bedd5e9f3994f0ec82fba580f8265db351dd11182\"\n                ],\n                \"creation-height\": 3426082,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1y9lmedxmwstmjk0qw7hxh2z37p0c54puzmyurn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Running this node from my super powerful VPS. Happy to have anyone join!\",\n                \"identity\": \"StuggleIdentity\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 3.3999e+22,\n                \"name\": \"Struggle\",\n                \"rate\": \"0.030000000000000000\",\n                \"security-contact\": \"Eric\",\n                \"update-height\": 3432405,\n                \"website\": \"http://www.thecodersstruggle.com/validator\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1q9s5l28nlfg2amg6g64g0q08u9pnse3vl0sex6\",\n                \"bls-public-keys\": [\n                    \"6725049531ec4444b814db056681a0bece9f6317069f252927506fe9f2a99c6ff49279c81add8097f979e9b1f8efaf97\"\n                ],\n                \"creation-height\": 3426410,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1q9s5l28nlfg2amg6g64g0q08u9pnse3vl0sex6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Dedicated instance on redundant power supply, experienced developer, low fees. Happy staking !! To the moon!!\",\n                \"identity\": \"Moone\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"MoonValidator - ! MAX UPTIME ! - Dedicated instance - 0.99%  FEES - DELEGATE HERE - To the Moon!!\",\n                \"rate\": \"0.009900000000000000\",\n                \"security-contact\": \"Moone\",\n                \"update-height\": 3452580,\n                \"website\": \"www.harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1f8cpdfeyfwqjzexevevqwc8hztsv90ynfwtwh5\",\n                \"bls-public-keys\": [\n                    \"58e9c81d7334a7dddebc3b450cf7a898b271a6e563b797d5fa8358cc4371abf9c6723de210c5070de717a7f76d75318c\"\n                ],\n                \"creation-height\": 3428019,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1f8cpdfeyfwqjzexevevqwc8hztsv90ynfwtwh5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Long-term support harmony.\",\n                \"identity\": \"HarmonyFans\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 3e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HarmonyFans - 1% FEE 🚀\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"contact@harmony.one\",\n                \"update-height\": 3428019,\n                \"website\": \"https://www.harmony.one/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 5000000000000000000,\n            \"validator\": {\n                \"address\": \"one1yggrdg3y4x3qjxh3uf222zeah7u4t6hz5za3vq\",\n                \"bls-public-keys\": [\n                    \"000c610d7bccb30222b8322b5a558cad85fe1f0178f9d8d41f374fb7f015c3d2910d9d711b6019b9d18568ebecad1b18\"\n                ],\n                \"creation-height\": 3428935,\n                \"delegations\": [\n                    {\n                        \"amount\": 5000000000000000000,\n                        \"delegator-address\": \"one1yggrdg3y4x3qjxh3uf222zeah7u4t6hz5za3vq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Gryphos Validator\",\n                \"identity\": \"Gryphos\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.150000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Gryphos\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"griffin.joyce1337@gmail.com\",\n                \"update-height\": 3428935,\n                \"website\": \"https://www.gryphos.io/\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1wzqs5a48ky6zr5h3x5rkgn6u73ysu80n8uuha6\",\n                \"bls-public-keys\": [\n                    \"a33f341bcbd0b134e87d50a1db22562147a9aef731b9520ca547c4215f876871c0bc32d35ddc69801948527425b53f01\"\n                ],\n                \"creation-height\": 3434525,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1wzqs5a48ky6zr5h3x5rkgn6u73ysu80n8uuha6\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Jukka.pro\",\n                \"identity\": \"Jukka\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Jukka E.\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"Jukka\",\n                \"update-height\": 3434525,\n                \"website\": \"jukka@jukka.pro\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1fy35lapmguy5nw7yagx5fvk0cnp9lkq9mwpyas\",\n                \"bls-public-keys\": [\n                    \"6a0461b7342f278da8ae95590cdb77952e9bfca872cf3959a25a94b7a0eb7790831dd5b457d8341a45efd6625b417815\",\n                    \"b4bcb999d6537b9becee51368970fceb94abf3c9d54b91bbad05df345695a09830f285ac636b928dafc67db2a5e6c98d\"\n                ],\n                \"creation-height\": 3434530,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fy35lapmguy5nw7yagx5fvk0cnp9lkq9mwpyas\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"---\",\n                \"identity\": \"briefcasegenome\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.150000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"briefcasegenome\",\n                \"rate\": \"0.040000000000000000\",\n                \"security-contact\": \"briefcasegenome\",\n                \"update-height\": 3434530,\n                \"website\": \"briefcasegenome.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1pjw8c993rcy84gws6j5pfe7nxmr3dkgg3yu36q\",\n                \"bls-public-keys\": [\n                    \"28b07ae5c1bd8fae7d6d23a44c8765225e6dd8cf68aab7fabe32ff6954c763b0a77fa27746f69a90f1818319034a9a80\"\n                ],\n                \"creation-height\": 3435195,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1pjw8c993rcy84gws6j5pfe7nxmr3dkgg3yu36q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"German based HarmonyONE Validator\",\n                \"identity\": \"TA\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Mr. Doge\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"harmonyone@akcer.de\",\n                \"update-height\": 3451525,\n                \"website\": \"harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1cjj5kx2u5fs2daqqtvtdy784r6c4lll9f4zr2n\",\n                \"bls-public-keys\": [\n                    \"ca5348573b7785692d67a97261ce3fbdd9b610c469aa79fb44eafe2d3d5f08d072a4400235d8eedb899ca763a93b818f\"\n                ],\n                \"creation-height\": 3444168,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1cjj5kx2u5fs2daqqtvtdy784r6c4lll9f4zr2n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"AutomatedCrypto.com by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"AutomatedCrypto.com\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3444168,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.0001e+22,\n            \"validator\": {\n                \"address\": \"one1axuwm84a9x8kuz42k4w4cr2m4cj7n5d3tawu0q\",\n                \"bls-public-keys\": [\n                    \"2990aac2f5b46956c977c173b1fb7b2e1ec0b4d43059bfcea86e973e8a5dbd15ad8a030e582fc2e4d61e3cafee299309\"\n                ],\n                \"creation-height\": 3448312,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0001e+22,\n                        \"delegator-address\": \"one1axuwm84a9x8kuz42k4w4cr2m4cj7n5d3tawu0q\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"tdmm\",\n                \"identity\": \"tdmm\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+28,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"tdmm\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"tdmm\",\n                \"update-height\": 3448312,\n                \"website\": \"tdmm.io\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.106540644588407802\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.118035306435272498\",\n                        \"epoch\": 288\n                    },\n                    {\n                        \"apr\": \"0.113289626942265570\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.114128348510606002\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.122736905280895138\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.099889477722290359\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123011839307422663\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121377577055295578\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.118001706294461494\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.106818399969264292\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.121977839313680816\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.118554376452758053\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.111278447746630449\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.107264628478893193\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.115655379100171511\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118356111431779831\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.107152082937563645\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.106236375293932952\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.107746146455514152\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.106159993970407331\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.100997136543414400\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.096385907015012867\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.099793979023692021\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.103263795403978343\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.104631144590243731\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.089922289235473631\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.098398659203463468\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.103957983812742304\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.103535230485899566\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.089544302902413448\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.095419493821950670\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.106540644588407802\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 9.8552037729394e+24,\n            \"validator\": {\n                \"address\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n                \"bls-public-keys\": [\n                    \"c89aee66427ed07321dab07065710212f64a1707700daf2b5a9b7139e8965960785bb1ad9ea3395530ca0f016f300881\"\n                ],\n                \"creation-height\": 3457487,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.56e+24,\n                        \"delegator-address\": \"one16jlzyhmxrk5qjzldj44rxfvklc9enhnn46j4ht\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.173313550109e+24,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.1118902228304e+24,\n                        \"delegator-address\": \"one1jnm0mmlw2rur0hjvq3nl4uw3v7r9fd3gjvzcna\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+24,\n                        \"delegator-address\": \"one1xmqu5jft3d2rdaxzgcgal4tt2ycn8fc5pjejgs\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Wetez is the most professional team in the POS ( Proof of Stake) field.Wetez是POS领域最专业的团队，为POS带来的权益做更多赋能。\",\n                \"identity\": \"26FA2B24F46A98EF\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.300000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Wetez\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"Wetez\",\n                \"update-height\": 3618962,\n                \"website\": \"http://www.wetez.io\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.100006582535204554\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.103418727668924596\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.105537948179142972\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.106275262678066145\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.099482904650555282\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.103500636538831292\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.098525900468496873\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.098024897880687686\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.104256893327517637\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.102241097815480648\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.100152512692819198\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.100560292422315480\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.100493901654142090\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.101298079987286604\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.101721137948206138\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.101774003495162679\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.100161043389567506\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.098859427166233389\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.100098673889679172\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.098480643667568793\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.098818092877834231\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.097160637345481551\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.097871851307097319\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.099360111763969456\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.099053754601848694\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.099767763877906257\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.099511458035522720\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.097239540802722952\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.096640798049626048\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.096805005480240448\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.098069195480210670\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.100006582535204554\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2e+22,\n            \"validator\": {\n                \"address\": \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\",\n                \"bls-public-keys\": [\n                    \"20381d70b061276700777f7cad867da10bc9f107b51392bf05790ecf4d17ca82ad334a68ed4e82335e1381a9f79b9881\"\n                ],\n                \"creation-height\": 3461133,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Lowering the barriers for anyone to stake.\",\n                \"identity\": \"Stakehere\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.490000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Stakehere.com\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"Stakehere\",\n                \"update-height\": 3461133,\n                \"website\": \"https://www.stakehere.com/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.115851570523674148\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121325283764354778\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123826520178609085\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125121144469797688\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123381699773022112\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121778668452446444\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121678793370333197\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121061609047828519\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122564185375597324\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119240725437153574\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116842370108278550\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117259875162657931\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116350276222356822\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118876554481297345\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119533699905687298\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120341849553634943\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116905110381807742\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117659700949793148\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.112894753533324733\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118210744245532836\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118433080822675182\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.116382594161020813\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.117507764116743480\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116342400988835980\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.115770480328884127\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116152000092092141\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116348641269714118\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116343854345746538\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114459840952651594\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115760438922523875\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115114707336237870\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115851570523674148\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 5.45e+23,\n            \"validator\": {\n                \"address\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\",\n                \"bls-public-keys\": [\n                    \"ab5fa18cfe0e59bcafaf2cbcdecd009b62d77c2b67535fc143714b11ff544f793b0b700e45856e7b1633e380f7dcfa99\"\n                ],\n                \"creation-height\": 3468985,\n                \"delegations\": [\n                    {\n                        \"amount\": 5.45e+23,\n                        \"delegator-address\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"BBIT\",\n                \"identity\": \"BBIT\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1.5e+22,\n                \"name\": \"BBIT\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3469603,\n                \"website\": \"YOUR-WEBSITE.COM\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.000000000000000000\",\n                        \"epoch\": 213\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.0003810516e+22,\n            \"validator\": {\n                \"address\": \"one1lsjmmrfte3cnteuh5377n964mrgl5tcfjgha63\",\n                \"bls-public-keys\": [\n                    \"d81af38ddfd5509d0be488d953ae47abdcb8984fcc9c31e69592c3cfcd8f74f77bd934f3922036738e7c6b5063025b93\"\n                ],\n                \"creation-height\": 3470545,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0003810516e+22,\n                        \"delegator-address\": \"one1lsjmmrfte3cnteuh5377n964mrgl5tcfjgha63\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1ga0r42vuw995ct96anzemx896an4dvwtu4snql\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1aunwvcg7k3gflgpjdspfxcd753pedzlxmgg320\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yg5cuu5m8l92gsrkxm753vxe74qax3u2m620s5\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Here at Validation Station we will strive to always offer you the best performance for the most minimal fee out there. If you’re looking for a high uptime and a low fee, we’re the validator for you!\",\n                \"identity\": \"Validation Station\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.300000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Validation Station\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"clay@validationstation.info\",\n                \"update-height\": 3471058,\n                \"website\": \"ValidationStation.info\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 15032,\n                    \"current-epoch-signing-percentage\": \"0.996222413678838889\",\n                    \"current-epoch-to-sign\": 15089\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"6248683459731000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.131788916902576957\",\n                \"blocks\": {\n                    \"signed\": 201248,\n                    \"to-sign\": 205424\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.134922202232661309\",\n                        \"epoch\": 193\n                    },\n                    {\n                        \"apr\": \"0.132596932551264123\",\n                        \"epoch\": 195\n                    },\n                    {\n                        \"apr\": \"0.139744066788566423\",\n                        \"epoch\": 196\n                    },\n                    {\n                        \"apr\": \"0.137818653110885050\",\n                        \"epoch\": 197\n                    },\n                    {\n                        \"apr\": \"0.134817119551826498\",\n                        \"epoch\": 198\n                    },\n                    {\n                        \"apr\": \"0.125907180978656277\",\n                        \"epoch\": 199\n                    },\n                    {\n                        \"apr\": \"0.136305345582045135\",\n                        \"epoch\": 200\n                    },\n                    {\n                        \"apr\": \"0.135844815773201446\",\n                        \"epoch\": 201\n                    },\n                    {\n                        \"apr\": \"0.132349073817837533\",\n                        \"epoch\": 202\n                    },\n                    {\n                        \"apr\": \"0.123302233996852803\",\n                        \"epoch\": 203\n                    },\n                    {\n                        \"apr\": \"0.127331877784614977\",\n                        \"epoch\": 204\n                    },\n                    {\n                        \"apr\": \"0.126671449634715363\",\n                        \"epoch\": 205\n                    },\n                    {\n                        \"apr\": \"0.127126310358265098\",\n                        \"epoch\": 206\n                    },\n                    {\n                        \"apr\": \"0.129003857820972179\",\n                        \"epoch\": 207\n                    },\n                    {\n                        \"apr\": \"0.097303823101587682\",\n                        \"epoch\": 208\n                    },\n                    {\n                        \"apr\": \"0.112492288801170370\",\n                        \"epoch\": 209\n                    },\n                    {\n                        \"apr\": \"0.128544331447718720\",\n                        \"epoch\": 210\n                    },\n                    {\n                        \"apr\": \"0.132877733522441774\",\n                        \"epoch\": 211\n                    },\n                    {\n                        \"apr\": \"0.131788916902576957\",\n                        \"epoch\": 212\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 17133,\n                            \"to-sign\": 17336\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17931,\n                            \"to-sign\": 18056\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17354,\n                            \"to-sign\": 17495\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17104,\n                            \"to-sign\": 17203\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17594,\n                            \"to-sign\": 17634\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16634,\n                            \"to-sign\": 16997\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17229,\n                            \"to-sign\": 17335\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16843,\n                            \"to-sign\": 16876\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16933,\n                            \"to-sign\": 16984\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16653,\n                            \"to-sign\": 16686\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 202,\n                            \"to-sign\": 202\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 14606,\n                            \"to-sign\": 17531\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 190\n                    }\n                ],\n                \"reward-accumulated\": 7.4811381686548452986012e+22\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 3.981397511399946312276e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"90d1d63ad075071e4866e566468643ac0e223becfbdebcb0bed986000c847c5a849d8046756133ace7a41f8f1bfb0002\",\n                            \"earning-account\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                            \"effective-stake\": \"6248683459731000000000000.000000000000000000\",\n                            \"group-percent\": \"0.007535201123635994\",\n                            \"overall-percent\": \"0.002411264359563518\",\n                            \"raw-stake\": \"6248683459731000000000000.000000000000000000\",\n                            \"shard-id\": 2\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.1198452459731e+25,\n            \"validator\": {\n                \"address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                \"bls-public-keys\": [\n                    \"90d1d63ad075071e4866e566468643ac0e223becfbdebcb0bed986000c847c5a849d8046756133ace7a41f8f1bfb0002\"\n                ],\n                \"creation-height\": 3470680,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 16160996328961468,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0585518e+25,\n                        \"delegator-address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n                        \"reward\": 15397274743761856107,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.868e+21,\n                        \"delegator-address\": \"one1vum7puzcd56ds3dvpyap4mm8e5ctzagzn7fmn3\",\n                        \"reward\": 8025988894482140754,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.88915e+23,\n                        \"delegator-address\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                        \"reward\": 89789161932289022242,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.09137e+23,\n                        \"delegator-address\": \"one1k074luf6ea2geuers5k8nsc0fwss0fkx8gl624\",\n                        \"reward\": 177957835332390067865,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.014459731e+21,\n                        \"delegator-address\": \"one1rcv3chw86tprvhpw4fjnpy2gnvqy4gp4fmhdd9\",\n                        \"reward\": 2128979871977995709,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Blockchain lover and a decent engineer with good knowledge of PoS/DPoS\",\n                \"identity\": \"daddypig\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"daddypig\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"daddypig\",\n                \"update-height\": 3585534,\n                \"website\": \"daddypig.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.1009e+22,\n            \"validator\": {\n                \"address\": \"one1968yuwqqy7ah5nt2peacsp9s7erdl6m6cfyqzt\",\n                \"bls-public-keys\": [\n                    \"13645de13e02f6de909314c40be65cc3ec38b71be34c04b29028cb27af3b0c8e6f80f3f5d17c455a866de346b23b3197\"\n                ],\n                \"creation-height\": 3473538,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.1009e+22,\n                        \"delegator-address\": \"one1968yuwqqy7ah5nt2peacsp9s7erdl6m6cfyqzt\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19jk7v9kmhr3y79th4muhtfaqcyh8l05vwda0me\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"cook8523 by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"cook8523\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3473538,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 5.11499e+23,\n            \"validator\": {\n                \"address\": \"one1krrnxlwjd6mxj7pw8rsfsr97y8x2524u20d9ej\",\n                \"bls-public-keys\": [\n                    \"cb434e9d4b42f2c73b683cebe766c471017f8b5adde48f6ba8a66300bffb18fb72566869fcc476f2299d1265452bc111\"\n                ],\n                \"creation-height\": 3474348,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0999e+22,\n                        \"delegator-address\": \"one1krrnxlwjd6mxj7pw8rsfsr97y8x2524u20d9ej\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.005e+23,\n                        \"delegator-address\": \"one1xrkdnt9rxd8t0ng5q5j3p9zut6q52gc3ulvjh4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"PoS validators\",\n                \"identity\": \"PoS validators\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Staky\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"hello@staky.io\",\n                \"update-height\": 3474348,\n                \"website\": \"staky.io\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 12630,\n                    \"current-epoch-signing-percentage\": \"0.855285433737387418\",\n                    \"current-epoch-to-sign\": 14767\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"20437016898325222222299999.999999999999999999\",\n            \"lifetime\": {\n                \"apr\": \"0.128930325840239661\",\n                \"blocks\": {\n                    \"signed\": 200595,\n                    \"to-sign\": 204853\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.156017924972850240\",\n                        \"epoch\": 193\n                    },\n                    {\n                        \"apr\": \"0.135082288462545001\",\n                        \"epoch\": 195\n                    },\n                    {\n                        \"apr\": \"0.115773266361254526\",\n                        \"epoch\": 196\n                    },\n                    {\n                        \"apr\": \"0.115484360687637852\",\n                        \"epoch\": 197\n                    },\n                    {\n                        \"apr\": \"0.108267407640718491\",\n                        \"epoch\": 198\n                    },\n                    {\n                        \"apr\": \"0.130944683602214824\",\n                        \"epoch\": 199\n                    },\n                    {\n                        \"apr\": \"0.133024148945949432\",\n                        \"epoch\": 200\n                    },\n                    {\n                        \"apr\": \"0.129225967485451535\",\n                        \"epoch\": 201\n                    },\n                    {\n                        \"apr\": \"0.121957892887907521\",\n                        \"epoch\": 202\n                    },\n                    {\n                        \"apr\": \"0.125145154045483474\",\n                        \"epoch\": 203\n                    },\n                    {\n                        \"apr\": \"0.126485138326107595\",\n                        \"epoch\": 204\n                    },\n                    {\n                        \"apr\": \"0.110116904657131208\",\n                        \"epoch\": 205\n                    },\n                    {\n                        \"apr\": \"0.126633808253767579\",\n                        \"epoch\": 206\n                    },\n                    {\n                        \"apr\": \"0.127820455901474209\",\n                        \"epoch\": 207\n                    },\n                    {\n                        \"apr\": \"0.098823299547956841\",\n                        \"epoch\": 208\n                    },\n                    {\n                        \"apr\": \"0.119860264682109273\",\n                        \"epoch\": 209\n                    },\n                    {\n                        \"apr\": \"0.110683879186833423\",\n                        \"epoch\": 210\n                    },\n                    {\n                        \"apr\": \"0.117871480839427171\",\n                        \"epoch\": 211\n                    },\n                    {\n                        \"apr\": \"0.132621787398164028\",\n                        \"epoch\": 212\n                    },\n                    {\n                        \"apr\": \"0.128930325840239661\",\n                        \"epoch\": 213\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 17368,\n                            \"to-sign\": 17479\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 18182,\n                            \"to-sign\": 18283\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16318,\n                            \"to-sign\": 17663\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17121,\n                            \"to-sign\": 17299\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17718,\n                            \"to-sign\": 17761\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16796,\n                            \"to-sign\": 16924\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16128,\n                            \"to-sign\": 16249\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16794,\n                            \"to-sign\": 16805\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16982,\n                            \"to-sign\": 16991\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16751,\n                            \"to-sign\": 16773\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 203,\n                            \"to-sign\": 203\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 17604,\n                            \"to-sign\": 17656\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 191\n                    }\n                ],\n                \"reward-accumulated\": 7.449901369666405075216e+22\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 4.272762886129905102432e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"4e809cf88a416cf32e31cc2cd7f1c91d3d93db75b28bb27b8797267b0c8c73825785c5a08d0a43ed8880997b5288f909\",\n                            \"earning-account\": \"one16c6wqr99gth9nwm5ka49alqk3gtqdv4f9nhtk9\",\n                            \"effective-stake\": \"6812338966108407407433333.333333333333333333\",\n                            \"group-percent\": \"0.008112669132455105\",\n                            \"overall-percent\": \"0.002596054122385634\",\n                            \"raw-stake\": \"6812338966108407407433333.333333333333333333\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 4.272534168103028101736e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"15fbbc7b186ffa20b6099b4809741426766050754da7efd61e7ea655637203b7b3d51da6274b73dce873ddcf16022195\",\n                            \"earning-account\": \"one16c6wqr99gth9nwm5ka49alqk3gtqdv4f9nhtk9\",\n                            \"effective-stake\": \"6812338966108407407433333.333333333333333333\",\n                            \"group-percent\": \"0.008112669132455105\",\n                            \"overall-percent\": \"0.002596054122385634\",\n                            \"raw-stake\": \"6812338966108407407433333.333333333333333333\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 4.27254437144365231898e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b3b420a2b6be733474d98be79056cde657ca750210eff0e092a529dfeadc488ecc440930076846ad9bd1e6a6054e3b09\",\n                            \"earning-account\": \"one16c6wqr99gth9nwm5ka49alqk3gtqdv4f9nhtk9\",\n                            \"effective-stake\": \"6812338966108407407433333.333333333333333333\",\n                            \"group-percent\": \"0.008112669132455105\",\n                            \"overall-percent\": \"0.002596054122385634\",\n                            \"raw-stake\": \"6812338966108407407433333.333333333333333333\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.0029073546708e+25,\n            \"validator\": {\n                \"address\": \"one16c6wqr99gth9nwm5ka49alqk3gtqdv4f9nhtk9\",\n                \"bls-public-keys\": [\n                    \"2183c227cdfce240306dd750504b343e3f8ad6c2ace314eedc20368dd64136d652ab782ab1216107cc35fae442c3f597\"\n                ],\n                \"creation-height\": 3475589,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one16c6wqr99gth9nwm5ka49alqk3gtqdv4f9nhtk9\",\n                        \"reward\": 66929753676928507968,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.90000056607e+24,\n                        \"delegator-address\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                        \"reward\": 5.578401987739148552139e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.988275110056e+24,\n                        \"delegator-address\": \"one1n9ewg25xzelcpndchqsym2ury705p27cw9nzlk\",\n                        \"reward\": 2.228462769064591758184e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18der9f2pqs5v9jnactuq3wk9fv7a36v4tk4dp7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1vuq9hchyleatj4e5ezu46dgeeenftz3ttr8848\",\n                        \"reward\": 5975925535503843619,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.671e+24,\n                        \"delegator-address\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                        \"reward\": 7.670648083361185714196e+21,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 1777305780492739915,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one14zf9gchjhtjnk95h6z7cf0duu76wllfmn44mr8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.514e+22,\n                        \"delegator-address\": \"one14f6yh5kpsemyd72q5dveaj45dng6jgm7dfjse9\",\n                        \"reward\": 10676574622203424485,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 8e+21,\n                        \"delegator-address\": \"one165stpdzl6c6pwdkt9f5xrad063e00symwyznd6\",\n                        \"reward\": 38894363523416325798,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2e+23,\n                        \"delegator-address\": \"one18cj3m04q7zwk27v2erw3ss5dakyh6xzc0kl8pn\",\n                        \"reward\": 22586206047934173343,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1lrequvd0kzut0mwgfpgv9yqs8973rmhnshx5kp\",\n                        \"reward\": 1242540018004001985,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.8936e+22,\n                        \"delegator-address\": \"one1km7cvmy6da8l7cj22htqtm9phs85auajepe8kv\",\n                        \"reward\": 382476626815421917921,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5.906279542e+21,\n                        \"delegator-address\": \"one1rztveplnzzx5q2za6aucxlckqsek65juvlq73w\",\n                        \"reward\": 20964242095099813786,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                        \"reward\": 9314403293341711652,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+21,\n                        \"delegator-address\": \"one1qj0f0dwg4jr8lmguxafsuu4pejzcmvz0e277ld\",\n                        \"reward\": 16452674927234975502,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one16cje0z4pswgck88eprtrd6v04jdy7n6vpcue3x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.999e+21,\n                        \"delegator-address\": \"one1sjwyr2npjhq52fhsg4a9xll426ullz55t4r04p\",\n                        \"reward\": 5307207811050027774,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 5e+22,\n                        \"delegator-address\": \"one14dezhm07e5aa97hfxrqzug72v0p95pq306y2pv\",\n                        \"reward\": 13588777500055699682,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.25e+21,\n                        \"delegator-address\": \"one1ekqjas85d6d9axn9mapgr3dr9c5kc503qcsdkd\",\n                        \"reward\": 11404017013833898479,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1av40wlvq5ctufuu7pqz7c08tmmlstq7he0ec22\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1xmqu5jft3d2rdaxzgcgal4tt2ycn8fc5pjejgs\",\n                        \"reward\": 14763992821476951745,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4e+21,\n                        \"delegator-address\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n                        \"reward\": 6245357900365129671,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1hjjmdhgnh6m364f3ycp9kutrle54dxuzmrvlh0\",\n                        \"reward\": 1288334463509541088,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one108hy28npu52xkyw8e7rmulm2gv6pm92xaljkvh\",\n                        \"reward\": 1561339475091276555,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.259999977e+21,\n                        \"delegator-address\": \"one15whh9d8nl74d46fc9jfmfszxw8e00s4ctcrvr2\",\n                        \"reward\": 1967287702704197279,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.9338826086e+22,\n                        \"delegator-address\": \"one1tk90nrhjww9dw46vvm6gh3rljrweckcxf76jre\",\n                        \"reward\": 12114937573563917417,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.0967764977e+22,\n                        \"delegator-address\": \"one1lfuvmhz4zgvpeyap5k7qngj25xv84t65vnecye\",\n                        \"reward\": 4528940170557162601,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"No fees until July!\",\n                \"identity\": \"https://keybase.io/nbolam\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Alpha Virtual NO FEES UNTIL JULY!\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"nbolam@alphavirtual.com\",\n                \"update-height\": 3483452,\n                \"website\": \"http://harmony.alphavirtual.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1zs6z7cdys7cgtzs6puprrpwe0ucq8h6684qefq\",\n                \"bls-public-keys\": [\n                    \"23d88c6d282b19d30fd0f8ad37dd9ac596c54f224f60444cb13201aeb6866e584290b80ca116646a9c362e7ad3a09f92\"\n                ],\n                \"creation-height\": 3481513,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1zs6z7cdys7cgtzs6puprrpwe0ucq8h6684qefq\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Your staking validator, always 2gether\",\n                \"identity\": \"2getherStaking\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.220000000000000000\",\n                \"max-total-delegation\": 2.22e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"2getherStaking\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"2getherstaking@gmail.com\",\n                \"update-height\": 3481513,\n                \"website\": \"https://twitter.com/2Staking\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.7076473e+22,\n            \"validator\": {\n                \"address\": \"one1gstwrqy8rjtjac39qhnek8eeeq3fmw2xa5ecc3\",\n                \"bls-public-keys\": [\n                    \"a018550c0024f6900a6780ce0d67c4ff943a583ccc5daa1061da9a9d1a267bada80594445725c50fe8adf257666f8d94\"\n                ],\n                \"creation-height\": 3487675,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.7076473e+22,\n                        \"delegator-address\": \"one1gstwrqy8rjtjac39qhnek8eeeq3fmw2xa5ecc3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"Ankr-Edson-Luis de Mellos-1 by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.150000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Ankr-Edson-Luis de Mellos-1\",\n                \"rate\": \"0.150000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3487675,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 5.6121598364e+22,\n            \"validator\": {\n                \"address\": \"one1dzqeetfpyp02evw00mag4nnhlqvu92wr9esnq3\",\n                \"bls-public-keys\": [\n                    \"929e53d4ed2efcf5c10e815631ed4da3a66e03c19f8c5b857ef583740e3d062692c426cd35f88a161c12334f5c952581\"\n                ],\n                \"creation-height\": 3488992,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.17e+22,\n                        \"delegator-address\": \"one1dzqeetfpyp02evw00mag4nnhlqvu92wr9esnq3\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 9.107199955e+21,\n                        \"delegator-address\": \"one1ak9uq2ahhr2jlkldvgu2n29w0zes0kc7nka2vc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2599035061e+22,\n                        \"delegator-address\": \"one1eexqspq9vlu73pp4gse0q599xzhz7eln8lu6mk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.715363348e+21,\n                        \"delegator-address\": \"one1vywd62menh2c2ec5ygl3sklaa00u4edqy9e55x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"CryptoBanditz - Make your money, make money.\",\n                \"identity\": \"CryptoBanditz\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"CryptoBanditz\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"staking@cryptobanditz.com\",\n                \"update-height\": 3488992,\n                \"website\": \"https://cryptobanditz.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one18prt8uam55vsy23j403zykx3uvxs6f7xrs4g56\",\n                \"bls-public-keys\": [\n                    \"0819cf2a7e8a26b04bf033ecbc5c17bdb062d98aabb80b5c8a39324a4edb37bbeff1c360737a4efa3c33783528d7c008\",\n                    \"1f1edaa52874447c79937c28ca9d6f6411b234a66f99b9d05a64570c8760a133e1b96d66306a70bd96490785ec32b394\",\n                    \"aaf787ad5429c2de5716071a389a67f6a180a29c72611408b498c9e5138d4a88eaebd1dc2eef37e94f361c1fae582c00\",\n                    \"b6b0eccc25fb665ba5004e42a8adfea22e8eefd332465df67dc8479043cd98547881f6e4261e42d6454bfa7e03346c8c\"\n                ],\n                \"creation-height\": 3498028,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one18prt8uam55vsy23j403zykx3uvxs6f7xrs4g56\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Private validatiion node Lodgy3000\",\n                \"identity\": \"Lodgy3000\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.330000000000000000\",\n                \"max-rate\": \"0.330000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Lodgy3000\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"lodgy3000@gmail.com\",\n                \"update-height\": 3508066,\n                \"website\": \"https://www.harmony.one/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 58444,\n                    \"current-epoch-signing-percentage\": \"0.989435904381390939\",\n                    \"current-epoch-to-sign\": 59068\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"69787724437503722222300000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.096866221648644128\",\n                \"blocks\": {\n                    \"signed\": 511158,\n                    \"to-sign\": 513269\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.118935263317954575\",\n                        \"epoch\": 261\n                    },\n                    {\n                        \"apr\": \"0.117807727992528226\",\n                        \"epoch\": 262\n                    },\n                    {\n                        \"apr\": \"0.119172890178076709\",\n                        \"epoch\": 263\n                    },\n                    {\n                        \"apr\": \"0.116371756311394770\",\n                        \"epoch\": 264\n                    },\n                    {\n                        \"apr\": \"0.116684262655235596\",\n                        \"epoch\": 265\n                    },\n                    {\n                        \"apr\": \"0.122441847392106190\",\n                        \"epoch\": 266\n                    },\n                    {\n                        \"apr\": \"0.117023675069243332\",\n                        \"epoch\": 267\n                    },\n                    {\n                        \"apr\": \"0.115037203202737179\",\n                        \"epoch\": 268\n                    },\n                    {\n                        \"apr\": \"0.123911537256307516\",\n                        \"epoch\": 269\n                    },\n                    {\n                        \"apr\": \"0.077304820742792026\",\n                        \"epoch\": 270\n                    },\n                    {\n                        \"apr\": \"0.110450299478515014\",\n                        \"epoch\": 272\n                    },\n                    {\n                        \"apr\": \"0.114146897962829180\",\n                        \"epoch\": 273\n                    },\n                    {\n                        \"apr\": \"0.111089363022896819\",\n                        \"epoch\": 274\n                    },\n                    {\n                        \"apr\": \"0.111300162907859901\",\n                        \"epoch\": 275\n                    },\n                    {\n                        \"apr\": \"0.104607735806073745\",\n                        \"epoch\": 276\n                    },\n                    {\n                        \"apr\": \"0.112073754195005714\",\n                        \"epoch\": 277\n                    },\n                    {\n                        \"apr\": \"0.114056865249437566\",\n                        \"epoch\": 278\n                    },\n                    {\n                        \"apr\": \"0.120028637798332849\",\n                        \"epoch\": 279\n                    },\n                    {\n                        \"apr\": \"0.118564521752748330\",\n                        \"epoch\": 280\n                    },\n                    {\n                        \"apr\": \"0.099563338019636028\",\n                        \"epoch\": 281\n                    },\n                    {\n                        \"apr\": \"0.098263050795239209\",\n                        \"epoch\": 282\n                    },\n                    {\n                        \"apr\": \"0.093966329786416745\",\n                        \"epoch\": 283\n                    },\n                    {\n                        \"apr\": \"0.094617914585171916\",\n                        \"epoch\": 284\n                    },\n                    {\n                        \"apr\": \"0.094175723083106870\",\n                        \"epoch\": 285\n                    },\n                    {\n                        \"apr\": \"0.093818523972646101\",\n                        \"epoch\": 286\n                    },\n                    {\n                        \"apr\": \"0.096633883984045184\",\n                        \"epoch\": 287\n                    },\n                    {\n                        \"apr\": \"0.099492702571089030\",\n                        \"epoch\": 288\n                    },\n                    {\n                        \"apr\": \"0.098909001770894212\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.094900600458626813\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.093700744657073364\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.096866221648644128\",\n                        \"epoch\": 292\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 69881,\n                            \"to-sign\": 69916\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 73081,\n                            \"to-sign\": 73132\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 70581,\n                            \"to-sign\": 70652\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 69193,\n                            \"to-sign\": 69196\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 70794,\n                            \"to-sign\": 70840\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 33356,\n                            \"to-sign\": 33647\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16123,\n                            \"to-sign\": 16249\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16775,\n                            \"to-sign\": 16805\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16979,\n                            \"to-sign\": 16991\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 15951,\n                            \"to-sign\": 16773\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 193\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 192\n                    }\n                ],\n                \"reward-accumulated\": 1.78037883271080039530904e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.917963857096170562096e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"b531f0cde8f71326350f7f59bb4be22b7cb547f43ce15629225d72d5cc7125cc623b33d7a9b39f3a829e9c06461f3903\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 0,\n                        \"key\": {\n                            \"bls-public-key\": \"cfc47aea2e1d213cb29a8cde208fdb321407ab8d277ae71dfa5ef722c585b771725dbe718f8412ab6ae392c0d6e8ee93\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.917272702213794460825e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"0a7295b9fbcfb48c10df085940fd5d21e4eb56763243fe715548af0ea3c64422a433bb8e07d8604838a3a164059ab883\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.918190863739646238758e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"88cfcd8d3881dc0b11e42726c23d865b704271bae66259039b3f3aa7852436bb2ef72692142be6645f0f794d4f337b83\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.918537002938861055684e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"e7cf77808dd1027a2bba525416fea07d73170c3bfe0adf789ce060d98b01b1aeee9f34424c9da387c667d3888efd5113\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 0,\n                        \"key\": {\n                            \"bls-public-key\": \"cff2ca41eb4532e32fd215aa0a87e844501d4c4f48bbd45b11cc1c45c18e4024d501de68408c4f97328fd07e35943f13\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.917968496249731955304e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"1d5ff2f7d38ee7d3ae4cd1cd7ed887ab20b37c2adfe6a5c367d94463b5c21532dcd317878207ec820991ffb9ac3c5f03\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.918038431625478463621e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"85a6cf0dfeeeb25a7034c5f6697c966d554faa1876268ad391d6a407f82fea6a5a3808e361cc68b4e61b1817e8504713\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.917931170952111804676e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"70de915e7886e401541e43bb43eb7ae4b45f0455710eec6c0c3602a20a6c4eb8e4c1194d88a4d94bb366f82804352203\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.918074542757865924713e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"bae1805f3b6302e5ad1ebf3c55a2a320d037fecda3e0703a3e32bc80401025d8b4e477262cd602a7dcb68f250f91d413\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.918203047010039855545e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"2484034fbceaddf5f1f92d5357f45bde0e13c6f175725862e7e77ca48c2643049981c6012209be6664cc7c7a8e127513\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.918084337370101678548e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"69c00c007cdca61e8c6fba1ecb328440bf28ff2649fb30a528bc4743aa3bb2732d09b0ad5d832123bc7d4b8160e56b03\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    },\n                    {\n                        \"earned-reward\": 0,\n                        \"key\": {\n                            \"bls-public-key\": \"e5ffd7f22cf0ed1fe8c574263d157e10c5b81b9ff80cef61ae54e11b45ad6b0f2ed13acd7afcd76ea8a0ccdf8f495313\",\n                            \"earning-account\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                            \"effective-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"group-percent\": \"0.005986198440186417\",\n                            \"overall-percent\": \"0.001915583500859653\",\n                            \"raw-stake\": \"5368286495192594017100000.000000000000000000\",\n                            \"shard-id\": 3\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 4.11714615293e+25,\n            \"validator\": {\n                \"address\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                \"bls-public-keys\": [\n                    \"69c00c007cdca61e8c6fba1ecb328440bf28ff2649fb30a528bc4743aa3bb2732d09b0ad5d832123bc7d4b8160e56b03\",\n                    \"70de915e7886e401541e43bb43eb7ae4b45f0455710eec6c0c3602a20a6c4eb8e4c1194d88a4d94bb366f82804352203\",\n                    \"85a6cf0dfeeeb25a7034c5f6697c966d554faa1876268ad391d6a407f82fea6a5a3808e361cc68b4e61b1817e8504713\",\n                    \"88cfcd8d3881dc0b11e42726c23d865b704271bae66259039b3f3aa7852436bb2ef72692142be6645f0f794d4f337b83\"\n                ],\n                \"creation-height\": 3499667,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.74026e+23,\n                        \"delegator-address\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\",\n                        \"reward\": 2033402422306556443,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1tm2g0vj64jg4gguuvutefygg70dcvnpwskkvyx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 4.08852867513e+25,\n                        \"delegator-address\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n                        \"reward\": 53606354809397630173,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.00929778e+23,\n                        \"delegator-address\": \"one18pqt2455nl3n0qs8v5l2zfl7ez5dygwy3q8tm8\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.1219e+22,\n                        \"delegator-address\": \"one1gnsker2z6sdepd0a9xm644tlvc4m2x9kgdd2ns\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"A young kid with deeply pension for blockchain\",\n                \"identity\": \"bugfree\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"bugfree\",\n                \"rate\": \"0.030000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3585515,\n                \"website\": \"cnn.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1nxsugfasz47ftsp5kcywx0wx46eeztxw4dqv7g\",\n                \"bls-public-keys\": [\n                    \"2d77e858e249bbbff5863afad1e961cfe46d268b15906e19093d8424adc903b0471decf646d2194d6d827b24c4a6180b\"\n                ],\n                \"creation-height\": 3516025,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1nxsugfasz47ftsp5kcywx0wx46eeztxw4dqv7g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1fn9ealffn8psp6hfxyzpjtwpyl8egq3v942cmx\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Aperture Science, we do what we must because we can. Forever low staking fees. The Enrichment Center is committed to the well being of all participants. Cake and grief counseling will be available at the conclusion of the test. Thank you for helping us help you help us all.\",\n                \"identity\": \"DEFINITELY NOT Black Mesa.\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"0.030000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 5e+22,\n                \"name\": \"Aperture Data Science 🍰\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"GLaDDOS\",\n                \"update-height\": 3516025,\n                \"website\": \"thinkwithportals.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 30200,\n                    \"current-epoch-signing-percentage\": \"0.998413118222692409\",\n                    \"current-epoch-to-sign\": 30248\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"24957620000000000000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.115706097412731095\",\n                \"blocks\": {\n                    \"signed\": 253083,\n                    \"to-sign\": 257813\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121390211191609301\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123796556444826935\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123354235674098079\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123184171489339675\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.115710722667357866\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121506327333321418\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.120936599250499668\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122452458672348757\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119220225373648543\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116718914386187227\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117106881538244152\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116147797334451015\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.118731724726903395\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119370979347089284\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120072655501072646\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.116905023472172605\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118273220710809648\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120023929016072853\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118050716273092368\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118414772910700156\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.107476809214942444\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.117175291598190583\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116040381697787049\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.115542638300287415\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116102249332590023\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116265436289692098\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116387363139023995\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114281595871557993\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115708506552981909\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115249246812626373\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115706097412731095\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 32306,\n                            \"to-sign\": 34836\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 36342,\n                            \"to-sign\": 36468\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35352,\n                            \"to-sign\": 35430\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 34494,\n                            \"to-sign\": 34570\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 35574,\n                            \"to-sign\": 35642\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 31841,\n                            \"to-sign\": 33454\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 199,\n                            \"to-sign\": 202\n                        },\n                        \"epoch\": 197\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 16775,\n                            \"to-sign\": 16963\n                        },\n                        \"epoch\": 196\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 195\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 194\n                    }\n                ],\n                \"reward-accumulated\": 8.4691441043541569753572e+22\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.665274166821062370223e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"278993988a8c07ffac9d0244c59f8b8c7a3f003dcf2d91d11856df6d6aef44f5289aad2cadb863bf6493322de4e9c019\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006516589574903347\",\n                            \"overall-percent\": \"0.002085308663969071\",\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.665066486901038985166e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"8518ed7c513fc710fdffe9d2929d9a4c7d242c1ee6edcd07402659a01bdb8f1133b42d01b4661dc46d2f633ad2063281\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006516589574903347\",\n                            \"overall-percent\": \"0.002085308663969071\",\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.664926642644777634966e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"044676e308214dd178c20ef48b332f70ab7cb4c0f6c489665dcdfcb73717b22ab8ef5806f0f81e01c8b3e63e10ab020d\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006516589574903347\",\n                            \"overall-percent\": \"0.002085308663969071\",\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    },\n                    {\n                        \"earned-reward\": 1.664581232827178453685e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"29ed233600cfa276295a61f5161b6a3e9671c3ae711f8454ad2fa32fa4cc11aedd57a5c8ddf61e3070c154d38bea9e95\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"group-percent\": \"0.006516589574903347\",\n                            \"overall-percent\": \"0.002085308663969071\",\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"shard-id\": 1\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 2.4e+25,\n            \"validator\": {\n                \"address\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                \"bls-public-keys\": [\n                    \"8518ed7c513fc710fdffe9d2929d9a4c7d242c1ee6edcd07402659a01bdb8f1133b42d01b4661dc46d2f633ad2063281\",\n                    \"044676e308214dd178c20ef48b332f70ab7cb4c0f6c489665dcdfcb73717b22ab8ef5806f0f81e01c8b3e63e10ab020d\"\n                ],\n                \"creation-height\": 3529298,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.399e+25,\n                        \"delegator-address\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                        \"reward\": 7.8650287995264210713307e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 21091810384001949941,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Animoca Brands leverages gamification and blockchain technologies to develop and publish a broad portfolio of original IP and global brands such as Formula 1®, MotoGP, The Sandbox.\",\n                \"identity\": \"Animoca Brands\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 2e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Animoca Brands\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"sysadmin@animocabrands.com\",\n                \"update-height\": 3529298,\n                \"website\": \"https://www.animocabrands.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2.3e+22,\n            \"validator\": {\n                \"address\": \"one1e0fzq4shcj6t9mgp9whjd2wwjs5cum9qlq8x3d\",\n                \"bls-public-keys\": [\n                    \"4495a58d293ffa85c37bfb456b22e2ec5f19eeaaa86d3b4a85dfc316a9bfd4010d433385fca240d6faac654311080e12\",\n                    \"b70ab757cc0209fee990ed77764c09dd54abb872ce8a927ef60ab2be9004ccbfc616511f1275ccd772d2807d343ccd02\",\n                    \"f2aea701a0d4b234b82ae78f19744404214006a129e856d5e45fd8b7a5d17d8fc0c8e0fb2b1a00fd4ccadec449b9150e\"\n                ],\n                \"creation-height\": 3531790,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.3e+22,\n                        \"delegator-address\": \"one1e0fzq4shcj6t9mgp9whjd2wwjs5cum9qlq8x3d\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one12wdr2mm7essyl5yl4hc3kndzcztycuwnm523c7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"24/7 High Bandwidth Server based in Europe, with 0% fee untill 18.12.2020\",\n                \"identity\": \"BG_VALIDATOR\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+29,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Europe\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"ice\",\n                \"update-height\": 3542829,\n                \"website\": \"harmony.one\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.3328620809e+22,\n            \"validator\": {\n                \"address\": \"one1ryjmd93fadj280e6p6mjs8sl2gx49mvd8wzjxd\",\n                \"bls-public-keys\": [\n                    \"c4c90fd9a2d52d62569cab936ed3e7a758263fbc78c47983a96f8c9ff90bcdb32fdebaf1d06319b01334d44cf5246712\"\n                ],\n                \"creation-height\": 3559417,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.2328620809e+22,\n                        \"delegator-address\": \"one1ryjmd93fadj280e6p6mjs8sl2gx49mvd8wzjxd\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1mem80nc8ecrmved08a97h25p2c2mmguv3knwgf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"piyopiyo-ank-node by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"piyopiyo-ank-node\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3559417,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one17ze3psttx25xcw9u6jh8sru5yztne6zprtx00g\",\n                \"bls-public-keys\": [\n                    \"092b62257b86e4b70b338bba82c1e382347dd08ecee1c16edd308b07debbde9ff365f913babd608574ce7ed6ba21e783\"\n                ],\n                \"creation-height\": 3570294,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one17ze3psttx25xcw9u6jh8sru5yztne6zprtx00g\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one19h6dx8xfq0xx2ck5nlfpt04m8auhgd8zj4hz54\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Temet Nosce\",\n                \"identity\": \"Nosce\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.700000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Nosce\",\n                \"rate\": \"0.007000000000000000\",\n                \"security-contact\": \"CONTACT\",\n                \"update-height\": 3570294,\n                \"website\": \"https://temet-nosce.github.io\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.1111e+22,\n            \"validator\": {\n                \"address\": \"one1nhfnjxfwrkk8653jfz97wtdxvw295nws2vft48\",\n                \"bls-public-keys\": [\n                    \"4b0a5db3ac43720e094f89f0cb934ad03b848bc480494393a5513deb7085ba6328f159bbf804ce680269f6ef7a4fa68d\"\n                ],\n                \"creation-height\": 3573180,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.1111e+22,\n                        \"delegator-address\": \"one1nhfnjxfwrkk8653jfz97wtdxvw295nws2vft48\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"BLACKONE by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.110000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"BLACKONE\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3573180,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.095729363293028764\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.100506732766820333\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.096657646614487965\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.042662528658708195\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.095571440841266925\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.097871228931834331\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.103621849440581265\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.091908751823858970\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.092073655754636051\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.096253103388026052\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.094190707203704577\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.099840854425039296\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.091169001808153469\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.095054473414466356\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.096242394190295832\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.096774518653166841\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.089869106743436243\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.090212737320322553\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.092201550567448782\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.093586929628314591\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.093679044299653016\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.095499610141289928\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.091449297467418796\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.097361111501456546\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.096464754899783714\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.093321784949015890\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.095490095358771321\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.092941848526040910\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.093491075871685472\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.093974922328521171\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.094402302741104564\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.095729363293028764\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2.936263594876e+24,\n            \"validator\": {\n                \"address\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n                \"bls-public-keys\": [\n                    \"6d320742fbff3aa1877aadb9316a865edbdecb0fb74fc973272d73ec1deaff131b653c3ab7a2b26753c717347f450a00\"\n                ],\n                \"creation-height\": 3601067,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.925263594876e+24,\n                        \"delegator-address\": \"one16nzsvx46jz9xyz7a3uayj4zfy627thru7za074\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1x4gteeym7jetxsma7al2yylvnw4qffr09mxuct\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Cobo is the first leading company in the world to offer Proof-of-Stake (PoS) and masternode rewards on user holdings, making it easy for users to grow their digital assets effortlessly.\",\n                \"identity\": \"cobo-one\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"cobo\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"devops@cobo.com\",\n                \"update-height\": 3601067,\n                \"website\": \"cobo.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.115870685300176039\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121489848968566900\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.123965306773038406\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125199841117555206\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123569522703366252\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121854997931517072\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121784836729454752\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121098582216907043\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122644439341025653\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119321896234951825\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.116813841244250551\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.117368330104363764\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.116627050724230477\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119235564508027488\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119730343590341509\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120448829712991238\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117260180794064438\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118567305699304705\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120284685614348108\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118268616018673144\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118604876271190220\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.116559874087331344\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.117597517988272740\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.116472591150386926\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.116005850450171051\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116542091167040526\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.116537723090398008\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.116443612222620577\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.114542805368385007\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.115711570984907854\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.115259731354919020\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.115870685300176039\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 198\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2e+22,\n            \"validator\": {\n                \"address\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\",\n                \"bls-public-keys\": [\n                    \"3346dc4f8d994567f8635971552ca16645fbf98dcb5f0f021d4d41ce87428d7069440085dca0d9e24c7d3ed07b40bf05\"\n                ],\n                \"creation-height\": 3602564,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Original Foundational node runner with one of the best uptimes.\",\n                \"identity\": \"Foundational Node\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+33,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Foundational Node\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"fnnode\",\n                \"update-height\": 3602564,\n                \"website\": \"fn.node\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one10utt7kd7jnjmcyq50an7d32jr5exdfzdps39lm\",\n                \"bls-public-keys\": [\n                    \"8bd3b48b145dc94e66df3eaf04cf955d81c79b2272e46549227d0c93514e30742cd2e4fb2fd11fb113a23fce6df13480\",\n                    \"c431227e4a73bc9870e84b648cd747a0f72076263c92fcaa96bc0aacff5ad1407aad4e4936c157e8b129c2c65da49c95\",\n                    \"da6e956f8f8274b8562c7d8f0cd0622a19daaa49c13640bf0babbc60ccbcbdcdec6a511512af3d4730821711a4c29112\",\n                    \"279cde36db598080ef99b3dc8f9848fff2bf60d37fc00235a04760737576ab57c5e0173944740ce3b8a50317d4f1048b\"\n                ],\n                \"creation-height\": 3609574,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one10utt7kd7jnjmcyq50an7d32jr5exdfzdps39lm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"no details\",\n                \"identity\": \"create great\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1.6e+29,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"libertatu\",\n                \"rate\": \"0.025000000000000000\",\n                \"security-contact\": \"\",\n                \"update-height\": 3609574,\n                \"website\": \"libertatu.org\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": null,\n            \"current-epoch-performance\": {\n                \"current-epoch-signing-percent\": {\n                    \"current-epoch-signed\": 116130,\n                    \"current-epoch-signing-percentage\": \"0.991174763579256427\",\n                    \"current-epoch-to-sign\": 117164\n                }\n            },\n            \"currently-in-committee\": true,\n            \"epos-status\": \"currently elected\",\n            \"epos-winning-stake\": \"6025323805377500000000000.000000000000000000\",\n            \"lifetime\": {\n                \"apr\": \"0.120175983865722341\",\n                \"blocks\": {\n                    \"signed\": 382486,\n                    \"to-sign\": 395094\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122722818360458454\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.116590388393420785\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.123390218350208402\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.127967524576385472\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.124108395128676750\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.138315691142348513\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122553872184642165\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.117239121852599104\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121536717739674600\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118591579035242231\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125812245281024413\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.114423415378601391\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120974319485314126\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.122186195187217199\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.118716588339630668\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.114105716657346945\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118466429870334946\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119541428791690225\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122773157789023070\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121682718564564601\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.122833786510250737\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.121075708021661643\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122922641156522615\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122624294486296864\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116974559248251235\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121702990247343195\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.121155699201269389\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.121014028231899380\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122449178837378589\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.120923944730595407\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.120175983865722341\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 132627,\n                            \"to-sign\": 137234\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 133729,\n                            \"to-sign\": 140696\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 200\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 199\n                    }\n                ],\n                \"reward-accumulated\": 1.52737339007201768996204e+23\n            },\n            \"metrics\": {\n                \"by-bls-key\": [\n                    {\n                        \"earned-reward\": 1.646349019202539476984e+21,\n                        \"key\": {\n                            \"bls-public-key\": \"52dd617310398cb7cb57ca24afe7fcbe41720c9d3b1423688ae74618315ba53b6baea6b76308200b17a134fbea3e350c\",\n                            \"earning-account\": \"one1q83ag25yvxzl753jjunw8rhvz03w2p55dneenm\",\n                            \"effective-stake\": \"6025323805377500000000000.000000000000000000\",\n                            \"group-percent\": \"0.006633375505075365\",\n                            \"overall-percent\": \"0.002122680161624117\",\n                            \"raw-stake\": \"6025323805377500000000000.000000000000000000\",\n                            \"shard-id\": 0\n                        }\n                    }\n                ]\n            },\n            \"total-delegation\": 1.4541697e+26,\n            \"validator\": {\n                \"address\": \"one1q83ag25yvxzl753jjunw8rhvz03w2p55dneenm\",\n                \"bls-public-keys\": [\n                    \"52dd617310398cb7cb57ca24afe7fcbe41720c9d3b1423688ae74618315ba53b6baea6b76308200b17a134fbea3e350c\",\n                    \"f1d64c0542b358f8c2e1dbe59106e25d4796cc4f2d7b61f8789f34616676eea2477e248bac894a8bccc2f26d0e648594\",\n                    \"5a5be965da50a7f38feb21f56954e63ed7ad591c9d2b26a84ba75ee63f9480b6c42c05610b762b0b2ff87bcb865d9f91\",\n                    \"119f44ce4d2698fa1064fba378db8ac3974e7477a31fd687988f14066e739ee05ea77f9ae3d2c04dee4898ee96b69491\",\n                    \"77ef15cad634fb88beacd70f83052547734d9a662022e2d8f9522d22650b35d6f1b198e0a183bf7ffb433f93d6c3eb82\",\n                    \"d27f9da9e2c05ee2da3d7283cb11d93eda94ee19650a9ebe6245d6ca6d60f510e32d0c72f34e6e39a6d5683b60e9e10e\",\n                    \"18dfdf0e4cbf0b22632ee38ad2ed913b9a4a8801408035fd54a0f8e09ecde1af4997b1ca4b1c08b92c681ba75dbffb83\",\n                    \"039efded096de5e729bc531ce726640790a2bf29ec54d1bc3ba3b7fc1bda75eab79e5e801b40b130ee57038723421b03\"\n                ],\n                \"creation-height\": 3610027,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1q83ag25yvxzl753jjunw8rhvz03w2p55dneenm\",\n                        \"reward\": 7.6373921206308182070741e+22,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.4540697e+26,\n                        \"delegator-address\": \"one1009zvhs56qvyjfl606f8flj26dqwvaxa7n6z43\",\n                        \"reward\": 7.6363417800893586925463e+22,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"HashQuark is a new generation Proof-of-Stake pool focused on POS, DPOS and other public chains providing secure, transparent and efficient staking services.\",\n                \"identity\": \"HashQuark02\",\n                \"last-epoch-in-committee\": 205,\n                \"max-change-rate\": \"0.500000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 4e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HashQuark02\",\n                \"rate\": \"0.500000000000000000\",\n                \"security-contact\": \"contact@hashquark.io\",\n                \"update-height\": 3610027,\n                \"website\": \"https://www.hashquark.io/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 3.5885607875e+22,\n            \"validator\": {\n                \"address\": \"one1suuwp5vzlvu0nkc3xuakj42zl7249xt94ykgl4\",\n                \"bls-public-keys\": [\n                    \"335b1c654744da002a0b96539309570fb85ec5b1a3ce74126ddcc683969d57080a402a5d2e2d366d097e5e2b76a7e003\",\n                    \"41e24dedebd625baae844a8b88c3ef371cac489d459a908808487517466e9085ba263b4a2051339e0277d4a360146e13\"\n                ],\n                \"creation-height\": 3622052,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.33e+22,\n                        \"delegator-address\": \"one1suuwp5vzlvu0nkc3xuakj42zl7249xt94ykgl4\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.303e+21,\n                        \"delegator-address\": \"one1arje47h08vdu573kjrmlfs59nhqcfn9mfr9xdh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.9080607875e+22,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.051e+21,\n                        \"delegator-address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.151e+21,\n                        \"delegator-address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Running a validator with multi-BLS keys to secure the harmony network\",\n                \"identity\": \"StakingGroup.Tech\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+31,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"StakingGroup.Tech\",\n                \"rate\": \"0.150000000000000000\",\n                \"security-contact\": \"stakingGroup.tech\",\n                \"update-height\": 3622052,\n                \"website\": \"www.stakingGroup.tech\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2.049e+22,\n            \"validator\": {\n                \"address\": \"one169w9lv7sj89t8r6ehddkqy7tswdu93ynfc4rps\",\n                \"bls-public-keys\": [\n                    \"f14bd19044c8a55f518fd1cc1ad75b986727b34a36db0783d10c04d4b2846d65f305bf386a38980eb098fd4c3ff9ff0c\",\n                    \"196ce611654c9f7a4a1ca109e87311b8d8db863f2c484ba4317d75060a360bbedaf86e0d469fd102a348ffccd24f210c\",\n                    \"5157cc8c78835a5e055033f0825e79c4b87e1c26051ae3d9568d1f0419f87a0358bdc4041a0f01fb5b42cb4829780d0c\",\n                    \"17ff5506b611a8f055eecee880672022f6afd0f2f9fe917be5cd7ab9ffed5649b70d4375fa5ea505dec7ba7919fd6f90\"\n                ],\n                \"creation-height\": 3634938,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one169w9lv7sj89t8r6ehddkqy7tswdu93ynfc4rps\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.049e+22,\n                        \"delegator-address\": \"one10utt7kd7jnjmcyq50an7d32jr5exdfzdps39lm\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"no details\",\n                \"identity\": \"crypto ecosystem\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1.6e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"AKEMATO\",\n                \"rate\": \"0.025000000000000000\",\n                \"security-contact\": \"no\",\n                \"update-height\": 3634938,\n                \"website\": \"akemato.org\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 3.775e+22,\n            \"validator\": {\n                \"address\": \"one1arje47h08vdu573kjrmlfs59nhqcfn9mfr9xdh\",\n                \"bls-public-keys\": [\n                    \"d0aa347fa95d3e34e942e83a761f04c8e60872b69df44f8378a689cdc54e5be4a0ebe597dfca1c1799f95e12fe698583\",\n                    \"a20a210ce0335923d42c851ab04b30daf30d0373b603f480e2c3de3433b4c264efa3dbda103a100c2369a57f8c622203\"\n                ],\n                \"creation-height\": 3635985,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.32e+22,\n                        \"delegator-address\": \"one1arje47h08vdu573kjrmlfs59nhqcfn9mfr9xdh\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.5e+21,\n                        \"delegator-address\": \"one1rdxq9agn4gn25q6kg5mexc2vp2z87kjfywz78x\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+21,\n                        \"delegator-address\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.05e+21,\n                        \"delegator-address\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"StakingCenter is your validator with low fees and high reward \",\n                \"identity\": \"StakingCenter.com\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.010000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+30,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"StakingCenter.com\",\n                \"rate\": \"0.020000000000000000\",\n                \"security-contact\": \"StakingCenter.com\",\n                \"update-height\": 3635985,\n                \"website\": \"www.StakingCenter.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2e+22,\n            \"validator\": {\n                \"address\": \"one1s0ehd74jd4rzdguv6x6f48x8edettj8d9q5fdf\",\n                \"bls-public-keys\": [\n                    \"b24529387f6e643ccc99e3b3aeef3be3927641f3b74984e6f73c5026fe90cb520aca2962ef0701544ec9e65a229bbb0c\"\n                ],\n                \"creation-height\": 3637915,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1s0ehd74jd4rzdguv6x6f48x8edettj8d9q5fdf\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1w8pun0y8v3meyqa4l7jxtew8pck2nl3hqnuhqn\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"SmartNET.works by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"SmartNET.works\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3637915,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.001384176907755266\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.115740841166256472\",\n                        \"epoch\": 206\n                    },\n                    {\n                        \"apr\": \"0.057386492151764588\",\n                        \"epoch\": 207\n                    },\n                    {\n                        \"apr\": \"0.001384176907755266\",\n                        \"epoch\": 209\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 201\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.384987e+24,\n            \"validator\": {\n                \"address\": \"one1wphasach2wkzdxndadxjactawt3s2tcyt6y29n\",\n                \"bls-public-keys\": [\n                    \"c01beac7ca5742b85e3f396b10c3551ebc62fc231821fd220bf6ec9070fe759f041a5e8aa74862136c0e1a9e83947518\"\n                ],\n                \"creation-height\": 3650229,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.0999e+22,\n                        \"delegator-address\": \"one1wphasach2wkzdxndadxjactawt3s2tcyt6y29n\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1.373988e+24,\n                        \"delegator-address\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"stake.sh by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"stake.sh\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3650229,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.07463982e+22,\n            \"validator\": {\n                \"address\": \"one1vd3hetkcpfcaad9v5n4gu694f26x63hqnwcurk\",\n                \"bls-public-keys\": [\n                    \"801d11e469b17dcfa8ed3ddabb8bb7c88ee187dfcacf12553101ac0a07ee56d4c3e7d5f987eb2cc155c07ee5c62f8003\"\n                ],\n                \"creation-height\": 3660615,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.07463982e+22,\n                        \"delegator-address\": \"one1vd3hetkcpfcaad9v5n4gu694f26x63hqnwcurk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"Sadsid node by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Sadsid node\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3660615,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"lost epos auction\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.099095166652779637\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.121504553339275167\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.124022759856928008\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.125205008175711245\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.123631146457220472\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.121917334996844604\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.121782365722935486\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.121125970386212533\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.122712003860485200\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.119373356315177335\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.099132652213176524\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.099529559265459184\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.099481621446370087\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.119250456624399827\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.119837191598768324\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.120669906332709462\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.117358982926596662\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.118721389287909413\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.120125224800800575\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.118294994528001423\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.118759024263551353\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.096347218728369795\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.097053138486131065\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.098519678379973691\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.116029841625994345\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.098906712592881337\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.098657262652436699\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.096410198483806686\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.095810942781287775\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.095919678806036177\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.097237273556246477\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.099095166652779637\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2.4999e+22,\n            \"validator\": {\n                \"address\": \"one1yq84hen4gunn6d5q7wmgptk45z5pum9x4lg3g7\",\n                \"bls-public-keys\": [\n                    \"d315b290146bc810a9d94f9f5837f7b84a80f3b4ee8d37bab931ff02297619ac9c62c26a039a5ee41db2f81b8a9c5b99\"\n                ],\n                \"creation-height\": 3665967,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.4999e+22,\n                        \"delegator-address\": \"one1yq84hen4gunn6d5q7wmgptk45z5pum9x4lg3g7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Foundational Node and early supporter of Harmony protocol\",\n                \"identity\": \"Cyberili\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Cyberili\",\n                \"rate\": \"0.000000000000000000\",\n                \"security-contact\": \"https://t.me/Cyberili\",\n                \"update-height\": 3666139,\n                \"website\": \"\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1tqr07mufxfrlszvt6tgmywdkz7l3584e924s74\",\n                \"bls-public-keys\": [\n                    \"c177e66b6beacf7c30edb429a5709ac9293d62925636025e4d5a8c87127bf015a42dc45ec365944f2f82d0a6d8f2478e\"\n                ],\n                \"creation-height\": 3666873,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1tqr07mufxfrlszvt6tgmywdkz7l3584e924s74\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"C7STAKE Community EPoS Validator\",\n                \"identity\": \"C7STAKE EPoS Validator\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.150000000000000000\",\n                \"max-rate\": \"0.150000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"C7STAKE\",\n                \"rate\": \"0.070000000000000000\",\n                \"security-contact\": \"Telegram: @C7Stake\",\n                \"update-height\": 3666873,\n                \"website\": \"Coming - soon\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.119855718114576737\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.122529666273839802\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.111875778551107955\",\n                        \"epoch\": 291\n                    },\n                    {\n                        \"apr\": \"0.122769427245451313\",\n                        \"epoch\": 292\n                    },\n                    {\n                        \"apr\": \"0.127064210996178540\",\n                        \"epoch\": 293\n                    },\n                    {\n                        \"apr\": \"0.124187821265901572\",\n                        \"epoch\": 294\n                    },\n                    {\n                        \"apr\": \"0.137859762067641758\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.122038230012994528\",\n                        \"epoch\": 296\n                    },\n                    {\n                        \"apr\": \"0.116522678966619672\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.121146405395444141\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118234754927440984\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125440766576125959\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.113739505333771490\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120241407865500705\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121754344202230419\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.123408735557558766\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.112345991195269269\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.117539998924328108\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.118890524058154552\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122345709084905650\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.120879193207805050\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.123757144413919844\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120886284007798301\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122902224560659624\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122194672761559852\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.118591596866425819\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121434468629303161\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120708292532751785\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.120749739790336881\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.122332924221691302\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.118240603469836098\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119855718114576737\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 3.9e+22,\n            \"validator\": {\n                \"address\": \"one1mx5mz8fh0v27kvjwyujh4s697z026yexqp9fyu\",\n                \"bls-public-keys\": [\n                    \"dfe6a6381ab0c2f0c37a9acf5952f22c1a74f34c75b21b1354a53d215de7c55abf365184cc51f0e63891f73aa53bdb10\"\n                ],\n                \"creation-height\": 3667270,\n                \"delegations\": [\n                    {\n                        \"amount\": 3.9e+22,\n                        \"delegator-address\": \"one1mx5mz8fh0v27kvjwyujh4s697z026yexqp9fyu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Navigator The Validator\",\n                \"identity\": \"Navigator\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.500000000000000000\",\n                \"max-rate\": \"0.500000000000000000\",\n                \"max-total-delegation\": 1e+25,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Navigator\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"John\",\n                \"update-height\": 3667371,\n                \"website\": \"t.me/nasty0023\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.040091552654674760\",\n                        \"epoch\": 213\n                    },\n                    {\n                        \"apr\": \"0.119350750973250582\",\n                        \"epoch\": 215\n                    },\n                    {\n                        \"apr\": \"0.109685676133771330\",\n                        \"epoch\": 216\n                    },\n                    {\n                        \"apr\": \"0.107574216754458209\",\n                        \"epoch\": 217\n                    },\n                    {\n                        \"apr\": \"0.108219046978975715\",\n                        \"epoch\": 218\n                    },\n                    {\n                        \"apr\": \"0.108582196354884984\",\n                        \"epoch\": 219\n                    },\n                    {\n                        \"apr\": \"0.108831046467550802\",\n                        \"epoch\": 220\n                    },\n                    {\n                        \"apr\": \"0.110463077327398531\",\n                        \"epoch\": 221\n                    },\n                    {\n                        \"apr\": \"0.110571420088740810\",\n                        \"epoch\": 222\n                    },\n                    {\n                        \"apr\": \"0.109958549544676376\",\n                        \"epoch\": 223\n                    },\n                    {\n                        \"apr\": \"0.109902544184450517\",\n                        \"epoch\": 224\n                    },\n                    {\n                        \"apr\": \"0.112263971504403897\",\n                        \"epoch\": 225\n                    },\n                    {\n                        \"apr\": \"0.113320479028490221\",\n                        \"epoch\": 226\n                    },\n                    {\n                        \"apr\": \"0.114068746087226671\",\n                        \"epoch\": 227\n                    },\n                    {\n                        \"apr\": \"0.116999089047758208\",\n                        \"epoch\": 228\n                    },\n                    {\n                        \"apr\": \"0.118093244619922595\",\n                        \"epoch\": 229\n                    },\n                    {\n                        \"apr\": \"0.104294315850726088\",\n                        \"epoch\": 230\n                    },\n                    {\n                        \"apr\": \"0.093005970688498496\",\n                        \"epoch\": 231\n                    },\n                    {\n                        \"apr\": \"0.000758151202279346\",\n                        \"epoch\": 232\n                    },\n                    {\n                        \"apr\": \"0.000000000000000000\",\n                        \"epoch\": 234\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 202\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2e+22,\n            \"validator\": {\n                \"address\": \"one1p20dmkr7g28psy9zp6dndahxl73xeh0avwn8zk\",\n                \"bls-public-keys\": [\n                    \"fbbdd265ac398b09344118e321fae28d955b4b40bb796ffd7815b6c5c68e634180ddd3c6c075406d1ffef5a34c445f8d\"\n                ],\n                \"creation-height\": 3667737,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1p20dmkr7g28psy9zp6dndahxl73xeh0avwn8zk\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"mica-validator\",\n                \"identity\": \"mica\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.050000000000000000\",\n                \"max-rate\": \"0.050000000000000000\",\n                \"max-total-delegation\": 1e+28,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Harmonyph-mica\",\n                \"rate\": \"0.050000000000000000\",\n                \"security-contact\": \"micabytes@gmail.com\",\n                \"update-height\": 3667737,\n                \"website\": \"micabytes.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1a9ac7fkks6e3980kj2ky0mw32zqq6lxqrh44v7\",\n                \"bls-public-keys\": [\n                    \"f00a806ac8d288b46eca4d7f35d9733f5bb9cfb1406807083b4fd609e28c56a0d163df65851cd693effe08a621f1c291\",\n                    \"53f5434f57eb13e8910213ff5b9d74beb17f50820e0c842eb824ed11760d8d3f9d350891a94ac87ec58440614802a601\"\n                ],\n                \"creation-height\": 3671283,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1a9ac7fkks6e3980kj2ky0mw32zqq6lxqrh44v7\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"a duck that talks\",\n                \"identity\": \"a node run by a duck\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.800000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Scrooge McDuck II\",\n                \"rate\": \"0.150000000000000000\",\n                \"security-contact\": \"@the_talking_duck\",\n                \"update-height\": 3671283,\n                \"website\": \"null\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 3.2e+22,\n            \"validator\": {\n                \"address\": \"one15sarytaagl73f00v5pusg0nqaqly7zpc9hdjds\",\n                \"bls-public-keys\": [\n                    \"32f4001745880c9caa54d654afd97d823fd40a8f7c4c071a4e74ed6ced7c962b7eddaad7a786b826fe4b5038b1b0e201\"\n                ],\n                \"creation-height\": 3672163,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one15sarytaagl73f00v5pusg0nqaqly7zpc9hdjds\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 2.2e+22,\n                        \"delegator-address\": \"one1euz2wrt40amgs8q8sryh55wcz7urmthm65dnyu\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"A node run by a passionate community member. Feel free to jump in and share rewards\",\n                \"identity\": \"Madoza EPoS Validator\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Madoza\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"https://www.harmonyone.tech\",\n                \"update-height\": 3672163,\n                \"website\": \"https://www.harmonyone.tech/\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"manually turned inactive or insufficient uptime\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.119363726652546156\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": [\n                    {\n                        \"apr\": \"0.111064474286755105\",\n                        \"epoch\": 285\n                    },\n                    {\n                        \"apr\": \"0.118788957935064837\",\n                        \"epoch\": 286\n                    },\n                    {\n                        \"apr\": \"0.128137553846483495\",\n                        \"epoch\": 287\n                    },\n                    {\n                        \"apr\": \"0.115648685572871761\",\n                        \"epoch\": 288\n                    },\n                    {\n                        \"apr\": \"0.116653973835926514\",\n                        \"epoch\": 289\n                    },\n                    {\n                        \"apr\": \"0.075297558386384616\",\n                        \"epoch\": 290\n                    },\n                    {\n                        \"apr\": \"0.060223260485052058\",\n                        \"epoch\": 295\n                    },\n                    {\n                        \"apr\": \"0.116278563408034800\",\n                        \"epoch\": 297\n                    },\n                    {\n                        \"apr\": \"0.120926589485660894\",\n                        \"epoch\": 298\n                    },\n                    {\n                        \"apr\": \"0.118081998485060051\",\n                        \"epoch\": 299\n                    },\n                    {\n                        \"apr\": \"0.125218877256069577\",\n                        \"epoch\": 300\n                    },\n                    {\n                        \"apr\": \"0.113491664558594244\",\n                        \"epoch\": 301\n                    },\n                    {\n                        \"apr\": \"0.120138070329057293\",\n                        \"epoch\": 302\n                    },\n                    {\n                        \"apr\": \"0.121666773564344964\",\n                        \"epoch\": 303\n                    },\n                    {\n                        \"apr\": \"0.123356948739449845\",\n                        \"epoch\": 304\n                    },\n                    {\n                        \"apr\": \"0.112738549967260528\",\n                        \"epoch\": 305\n                    },\n                    {\n                        \"apr\": \"0.116069388230092268\",\n                        \"epoch\": 306\n                    },\n                    {\n                        \"apr\": \"0.119177543826349859\",\n                        \"epoch\": 307\n                    },\n                    {\n                        \"apr\": \"0.122075922037276422\",\n                        \"epoch\": 308\n                    },\n                    {\n                        \"apr\": \"0.121040076450922621\",\n                        \"epoch\": 309\n                    },\n                    {\n                        \"apr\": \"0.114825347884976757\",\n                        \"epoch\": 310\n                    },\n                    {\n                        \"apr\": \"0.120487220036342827\",\n                        \"epoch\": 311\n                    },\n                    {\n                        \"apr\": \"0.122563940383343194\",\n                        \"epoch\": 312\n                    },\n                    {\n                        \"apr\": \"0.122249427284473188\",\n                        \"epoch\": 313\n                    },\n                    {\n                        \"apr\": \"0.116592817046933058\",\n                        \"epoch\": 314\n                    },\n                    {\n                        \"apr\": \"0.121591408461461039\",\n                        \"epoch\": 315\n                    },\n                    {\n                        \"apr\": \"0.120673719216919644\",\n                        \"epoch\": 316\n                    },\n                    {\n                        \"apr\": \"0.119526216965332501\",\n                        \"epoch\": 317\n                    },\n                    {\n                        \"apr\": \"0.121855973992245394\",\n                        \"epoch\": 318\n                    },\n                    {\n                        \"apr\": \"0.119788145653901920\",\n                        \"epoch\": 319\n                    },\n                    {\n                        \"apr\": \"0.119363726652546156\",\n                        \"epoch\": 320\n                    }\n                ],\n                \"epoch-blocks\": [\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 204\n                    },\n                    {\n                        \"blocks\": {\n                            \"signed\": 0,\n                            \"to-sign\": 0\n                        },\n                        \"epoch\": 203\n                    }\n                ],\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1e+22,\n            \"validator\": {\n                \"address\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\",\n                \"bls-public-keys\": [\n                    \"cfa59f5841580adabbaf9757d5997bac0109275ca85c2c9f24d6482834da6f5f2574d943db32ae1802aa78e700ab4292\",\n                    \"1ac60f3aa0e7d1d93a73bfd284c4030d80cfa6f1e4cb8bc02c8fd7acbace91ca28fe6c7810882533e6387cbce0ffad06\",\n                    \"219f61e018e665d6261b83ed63ef8bfc9c0dc296f8487de9ec82fb9ada8d41a76cc3523efad58426ecddcfc86cabc096\",\n                    \"131e3511cb71348ffdf53c3387b9260b4e1d743254e268a9734f2800104dbaf648cba738aeb7fd44c51bd98740cfe30e\",\n                    \"8fd08d19ab078335d184c5b0bef281dbf555522822e6ce7a0a82f568f9e6845dd332d06de4ddf09cb1a92174f4e58516\",\n                    \"d7238bdf4ae9e25670b2137ac51b3fd8a3bc2c26f7a227a9159dc4403614cf11babc94e87d46e6ca02e07775e768d416\",\n                    \"577c89e8a01e29aa454663aaa5e89866a3292fbce3fbc49345d877bce98a900189f3987f3025a7667a55ab5666e3970a\",\n                    \"6adc3db6d1ad6991aed137c9bd82f562550d704a7f05d7c75db498aaea238c732fe9bad06c4b8dbc3b2e58dfbab88392\"\n                ],\n                \"creation-height\": 3676071,\n                \"delegations\": [\n                    {\n                        \"amount\": 1e+22,\n                        \"delegator-address\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Fueling Blockchain Beyond Infinity\",\n                \"identity\": \"C97124177D779489\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"1.000000000000000000\",\n                \"max-total-delegation\": 1e+27,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"InfStones 2\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"contact@infinitystones.io\",\n                \"update-height\": 3676071,\n                \"website\": \"https://infstones.io\"\n            }\n        },\n        {\n            \"active-status\": \"inactive\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"not eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 0,\n            \"validator\": {\n                \"address\": \"one1d8nk7qzyfvtre659slzj7f7w8l7yw8setwlc7m\",\n                \"bls-public-keys\": [\n                    \"54c5d21e5d9a39004e707e3ba69200272fba3db62eaa3902a9ee871926445d2e4d6701e0b2232c7d56a20299740f5e14\",\n                    \"820797e7d42de96be7646e905d3571d9985ea2b9ef7b89ebdf09668c092b4f6e95a72ac7d9455e71eab6bd7b75976910\",\n                    \"9081e5a77e7c9d12fe1878fceb0f74c736263a10cf9106bd8c34ae76bc637afbe75f99082e3c4cc2e891b4f2f061ee08\",\n                    \"97ef9824ef3675f8bf1fa9fd86d94d739f477537231b81d5567aa51e4be47cd2dfea3ff877505515c05bd734d3935704\"\n                ],\n                \"creation-height\": 3682986,\n                \"delegations\": [\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1d8nk7qzyfvtre659slzj7f7w8l7yw8setwlc7m\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    },\n                    {\n                        \"amount\": 0,\n                        \"delegator-address\": \"one1yruzx8ksguu7svgrsupl0uzv207c6f9nm7yl9a\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"Europe-west hosted, managed from Dublin.\",\n                \"identity\": \"one-node\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.020000000000000000\",\n                \"max-rate\": \"0.020000000000000000\",\n                \"max-total-delegation\": 1e+25,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"one-node\",\n                \"rate\": \"0.010000000000000000\",\n                \"security-contact\": \"mvict.nodes@gmail.com\",\n                \"update-height\": 3682986,\n                \"website\": \"https://sites.google.com/view/one-node\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 1.197510649e+23,\n            \"validator\": {\n                \"address\": \"one1ekmtqd8w0a0jknz32ak0yagh6tazcd7gjy6v88\",\n                \"bls-public-keys\": [\n                    \"9c4240d3204890b9d4d486e6da190ca027b0955c2ca7093bb1cfe7197ce7089b8b76e5b4b8b9acd1578c852fecbd0609\"\n                ],\n                \"creation-height\": 3683171,\n                \"delegations\": [\n                    {\n                        \"amount\": 1.197510649e+23,\n                        \"delegator-address\": \"one1ekmtqd8w0a0jknz32ak0yagh6tazcd7gjy6v88\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"Ankr-Lakku-Naveen Kumar goud-1 by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"Ankr-Lakku-Naveen Kumar goud-1\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3683171,\n                \"website\": \"www.ankr.com\"\n            }\n        },\n        {\n            \"active-status\": \"active\",\n            \"booted-status\": \"not booted\",\n            \"current-epoch-performance\": null,\n            \"currently-in-committee\": false,\n            \"epos-status\": \"eligible to be elected next epoch\",\n            \"epos-winning-stake\": null,\n            \"lifetime\": {\n                \"apr\": \"0.000000000000000000\",\n                \"blocks\": {\n                    \"signed\": 0,\n                    \"to-sign\": 0\n                },\n                \"epoch-apr\": null,\n                \"epoch-blocks\": null,\n                \"reward-accumulated\": 0\n            },\n            \"metrics\": null,\n            \"total-delegation\": 2.43536559e+22,\n            \"validator\": {\n                \"address\": \"one10xkhggcc6qyldh4jxpc89pzl2pux7tmpvfe0ay\",\n                \"bls-public-keys\": [\n                    \"1948669a27b3500d2fd12b64ee2edf0f0e839d137cb58706c18bd90e9fb2f4dc0e9154f67696e5bf34fb8ef16fdbbd13\"\n                ],\n                \"creation-height\": 3683989,\n                \"delegations\": [\n                    {\n                        \"amount\": 2.43536559e+22,\n                        \"delegator-address\": \"one10xkhggcc6qyldh4jxpc89pzl2pux7tmpvfe0ay\",\n                        \"reward\": 0,\n                        \"undelegations\": []\n                    }\n                ],\n                \"details\": \"This validator is launched from app.ankr.com\",\n                \"identity\": \"HarmonyOne by ankr\",\n                \"last-epoch-in-committee\": 0,\n                \"max-change-rate\": \"0.100000000000000000\",\n                \"max-rate\": \"0.100000000000000000\",\n                \"max-total-delegation\": 1e+26,\n                \"min-self-delegation\": 1e+22,\n                \"name\": \"HarmonyOne\",\n                \"rate\": \"0.100000000000000000\",\n                \"security-contact\": \"info@ankr.com\",\n                \"update-height\": 3683989,\n                \"website\": \"www.ankr.com\"\n            }\n        }\n    ]\n}"}],"_postman_id":"a229253f-ca76-4b9d-88f5-9fd96e40d583"},{"name":"hmyv2_getElectedValidatorAddresses","event":[{"listen":"test","script":{"id":"b6819f99-a676-462a-99bb-957f1a97a11f","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"e90a6131-d67c-4110-96ef-b283d452632d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getElectedValidatorAddresses\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of <code>String</code> : List of wallet addresses that are currently elected</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"33c98e2b-0a40-455b-bdf4-6d336d637645","name":"hmyv2_getElectedValidatorAddresses","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getElectedValidatorAddresses\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:57:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n        \"one13n974xtdzxu4uu2ugz8e2ml5p8t94d8x3tep3q\",\n        \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n        \"one1xrksyam05h78f47l70rtjsk5njy8u9f0ty995h\",\n        \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n        \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n        \"one16f3f9y4sqtrk3eq7gnagr4ac8p25rf08u0pxxp\",\n        \"one17nfgz8rtgpl3nlws5q9tdk9y3puyqf847az6ne\",\n        \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n        \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n        \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\",\n        \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n        \"one1q83ag25yvxzl753jjunw8rhvz03w2p55dneenm\",\n        \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n        \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n        \"one1ttf4e0tvnuqymuyuzy7clu7gy6za37y326m299\",\n        \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n        \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\",\n        \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n        \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n        \"one1mx5mz8fh0v27kvjwyujh4s697z026yexqp9fyu\",\n        \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n        \"one15mf5amj7nc8c9zpp0e2wr48em0r2vm02k9m8h2\",\n        \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n        \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n        \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n        \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n        \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n        \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n        \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n        \"one1wt9cvaduxh03n8rhw7aqhhx3s2cpffws59xjya\",\n        \"one1427qn37jngpu78lrdaw5e0q923jjcjkcra3t84\",\n        \"one17qqnjy4llulpcs3g2uzryhehk5rcyedy4qhet6\",\n        \"one1wael8exj25pw63qrjmcuk0sv6qp8v2p8yuzjtr\",\n        \"one1yq84hen4gunn6d5q7wmgptk45z5pum9x4lg3g7\",\n        \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n        \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\",\n        \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\",\n        \"one138p2807r9ywy9ux82kk3pc0z9mff65ystv3hpg\",\n        \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n        \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n        \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n        \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n        \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n        \"one1f7hfpy33pzw27jzpnt77y6ze2srckrhm52j40v\",\n        \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n        \"one1t3tex27l80cs4eltq5t7wymcxwwct6xxuyf7w4\",\n        \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n        \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n        \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n        \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n        \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\",\n        \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\",\n        \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n        \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n        \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n        \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n        \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n        \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n        \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n        \"one1tqa46jj9ut8zu20jm3kqv3f5fwkeq964t496mx\",\n        \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\",\n        \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n        \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n        \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n        \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n        \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n        \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n        \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n        \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n        \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n        \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n        \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n        \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n        \"one1kfngqk6c2fnwjt9yyne6pqqeux0su3uzq0y5uw\",\n        \"one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x\",\n        \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n        \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n        \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n        \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n        \"one180767nt5qzycwl4rzhjaf23kmv30a9uvmlj8vs\",\n        \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n        \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n        \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\"\n    ]\n}"}],"_postman_id":"e90a6131-d67c-4110-96ef-b283d452632d"},{"name":"hmyv2_getValidatorInformation","event":[{"listen":"test","script":{"id":"60e6d6d9-fe9a-40f1-b8e2-0036a583535f","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"659ad999-14ca-4498-8f74-08ed347cab49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getValidatorInformation\",\n    \"params\": [\n        \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\"   \n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> : Validator wallet address</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Object</code></p>\n<ul>\n<li><code>validator</code> - <code>Object</code><ul>\n<li><code>bls-public-keys</code> - <code>Array</code> : List of public BLS keys associated with the validator wallet address</li>\n<li><code>last-epoch-in-committee</code> - <code>Number</code> : Last epoch any key of the validator was elected</li>\n<li><code>min-self-delegation</code> - <code>Number</code> : Amount that validator must delegate to self in Atto</li>\n<li><code>max-total-delegation</code> - <code>Number</code> : Total amount that validator will accept delegations until in Atto</li>\n<li><code>rate</code> - <code>String</code> : Current commission rate</li>\n<li><code>max-rate</code> - <code>String</code> : Max commission rate a validator can charge</li>\n<li><code>max-change-rate</code> - <code>String</code> : Maximum amount the commission rate can increase in one epoch</li>\n<li><code>update-height</code> - <code>Number</code> : Last block validator editted their validator information</li>\n<li><code>name</code> - <code>String</code> : Validator name, displayed on the Staking Dashboard</li>\n<li><code>identity</code> - <code>String</code> : Validator identity, must be unique</li>\n<li><code>website</code> - <code>String</code> : Validator website, displayed on the Staking Dashboard</li>\n<li><code>security-contact</code> - <code>String</code> : Method to contact the validator</li>\n<li><code>details</code> - <code>String</code> : Validator details, displayed on the Staking Dashboard</li>\n<li><code>creation-height</code> - <code>Number</code> : Block in which the validator was created</li>\n<li><code>address</code> - <code>String</code> : Validator wallet address</li>\n<li><code>delegations</code> - <code>Array</code> : List of delegations\n  See <code>hmyv2_getDelegationsByDelegator</code> for delegation object format</li>\n<li><code>metrics</code> -  <code>Object</code> : BLS key earning metrics for current epoch<ul>\n<li><code>by-bls-key</code> - <code>Array</code> of <code>Object</code><ul>\n<li><code>key</code> - <code>Object</code><ul>\n<li><code>bls-public-key</code> - <code>String</code> : BLS public key</li>\n<li><code>group-percent</code> - <code>String</code> : Key voting power in shard</li>\n<li><code>effective-stake</code> -  <code>String</code> : Effective stake of key</li>\n<li><code>raw-stake</code> - <code>String</code> : Actual stake of key</li>\n<li><code>earning-account</code> - <code>String</code> : Validator wallet address</li>\n<li><code>overall-percent</code> - <code>String</code> : Percent of effective stake</li>\n<li><code>shard-id</code> - <code>Number</code> : Shard ID that key is on</li>\n</ul>\n</li>\n<li><code>earned-reward</code> - <code>Number</code> : Lifetime reward key has earned</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><code>total-delegation</code> - <code>Number</code> : Total amount delegated to validator</li>\n<li><code>currently-in-committee</code> - <code>Bool</code> : If key is currently elected</li>\n<li><code>epos-status</code> - <code>String</code> : Currently elected, eligible to be elected next epoch, or not eligible to be elected next epoch</li>\n<li><code>epos-winning-stake</code> - <code>String</code> : Total effective stake of the validator</li>\n<li><code>booted-status</code> - <code>String</code> : Banned status</li>\n<li><code>active-status</code> - <code>String</code> : Active or Inactive</li>\n<li><code>lifetime</code> - <code>Object</code><ul>\n<li><code>reward-accumulated</code> - <code>Number</code> : Lifetime reward accumulated by the validator</li>\n<li><code>blocks</code> - <code>Object</code><ul>\n<li><code>to-sign</code> - <code>Number</code> : Number of blocks available to the validator to sign</li>\n<li><code>signed</code> - <code>Number</code> : Number of blocks the validator has signed</li>\n</ul>\n</li>\n<li><code>apr</code> - <code>String</code> : Approximate Return Rate</li>\n<li><code>epoch-apr</code> - <code>Array</code> : List of APR per epoch<ul>\n<li><code>Epoch</code> - <code>Number</code> : Epoch number</li>\n<li><code>Value</code> - <code>String</code> : Calculated APR for that epoch</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"ab36a62b-bc05-452d-895e-422b79740b4d","name":"hmyv2_getValidatorInformation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getValidatorInformation\",\n    \"params\": [\n        \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\"   \n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:58:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"active-status\": \"active\",\n        \"booted-status\": null,\n        \"current-epoch-performance\": {\n            \"current-epoch-signing-percent\": {\n                \"current-epoch-signed\": 28945,\n                \"current-epoch-signing-percentage\": \"0.995905587668593449\",\n                \"current-epoch-to-sign\": 29064\n            }\n        },\n        \"currently-in-committee\": true,\n        \"epos-status\": \"currently elected\",\n        \"epos-winning-stake\": \"13309227296375600950311000.000000000000000000\",\n        \"lifetime\": {\n            \"apr\": \"0.095729363293028764\",\n            \"blocks\": {\n                \"signed\": 3256261,\n                \"to-sign\": 3387780\n            },\n            \"epoch-apr\": [\n                {\n                    \"apr\": \"0.100506732766820333\",\n                    \"epoch\": 289\n                },\n                {\n                    \"apr\": \"0.096657646614487965\",\n                    \"epoch\": 290\n                },\n                {\n                    \"apr\": \"0.042662528658708195\",\n                    \"epoch\": 291\n                },\n                {\n                    \"apr\": \"0.095571440841266925\",\n                    \"epoch\": 293\n                },\n                {\n                    \"apr\": \"0.097871228931834331\",\n                    \"epoch\": 294\n                },\n                {\n                    \"apr\": \"0.103621849440581265\",\n                    \"epoch\": 295\n                },\n                {\n                    \"apr\": \"0.091908751823858970\",\n                    \"epoch\": 296\n                },\n                {\n                    \"apr\": \"0.092073655754636051\",\n                    \"epoch\": 297\n                },\n                {\n                    \"apr\": \"0.096253103388026052\",\n                    \"epoch\": 298\n                },\n                {\n                    \"apr\": \"0.094190707203704577\",\n                    \"epoch\": 299\n                },\n                {\n                    \"apr\": \"0.099840854425039296\",\n                    \"epoch\": 300\n                },\n                {\n                    \"apr\": \"0.091169001808153469\",\n                    \"epoch\": 301\n                },\n                {\n                    \"apr\": \"0.095054473414466356\",\n                    \"epoch\": 302\n                },\n                {\n                    \"apr\": \"0.096242394190295832\",\n                    \"epoch\": 303\n                },\n                {\n                    \"apr\": \"0.096774518653166841\",\n                    \"epoch\": 304\n                },\n                {\n                    \"apr\": \"0.089869106743436243\",\n                    \"epoch\": 305\n                },\n                {\n                    \"apr\": \"0.090212737320322553\",\n                    \"epoch\": 306\n                },\n                {\n                    \"apr\": \"0.092201550567448782\",\n                    \"epoch\": 307\n                },\n                {\n                    \"apr\": \"0.093586929628314591\",\n                    \"epoch\": 308\n                },\n                {\n                    \"apr\": \"0.093679044299653016\",\n                    \"epoch\": 309\n                },\n                {\n                    \"apr\": \"0.095499610141289928\",\n                    \"epoch\": 310\n                },\n                {\n                    \"apr\": \"0.091449297467418796\",\n                    \"epoch\": 311\n                },\n                {\n                    \"apr\": \"0.097361111501456546\",\n                    \"epoch\": 312\n                },\n                {\n                    \"apr\": \"0.096464754899783714\",\n                    \"epoch\": 313\n                },\n                {\n                    \"apr\": \"0.093321784949015890\",\n                    \"epoch\": 314\n                },\n                {\n                    \"apr\": \"0.095490095358771321\",\n                    \"epoch\": 315\n                },\n                {\n                    \"apr\": \"0.092941848526040910\",\n                    \"epoch\": 316\n                },\n                {\n                    \"apr\": \"0.093491075871685472\",\n                    \"epoch\": 317\n                },\n                {\n                    \"apr\": \"0.093974922328521171\",\n                    \"epoch\": 318\n                },\n                {\n                    \"apr\": \"0.094402302741104564\",\n                    \"epoch\": 319\n                },\n                {\n                    \"apr\": \"0.095729363293028764\",\n                    \"epoch\": 320\n                }\n            ],\n            \"epoch-blocks\": [\n                {\n                    \"blocks\": {\n                        \"signed\": 32658,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 320\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32658,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 319\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32658,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 318\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32608,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 317\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32655,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 316\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32647,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 315\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32513,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 314\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32709,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 313\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32737,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 312\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 31987,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 311\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32643,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 310\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32573,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 309\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32261,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 308\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32531,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 307\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32286,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 306\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32549,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 305\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32556,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 304\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32651,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 303\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32615,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 302\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32587,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 301\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32671,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 300\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32664,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 299\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32584,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 298\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32574,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 297\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32587,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 296\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32643,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 295\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32609,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 294\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 32679,\n                        \"to-sign\": 32764\n                    },\n                    \"epoch\": 293\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 0,\n                        \"to-sign\": 4\n                    },\n                    \"epoch\": 292\n                },\n                {\n                    \"blocks\": {\n                        \"signed\": 14791,\n                        \"to-sign\": 32768\n                    },\n                    \"epoch\": 291\n                }\n            ],\n            \"reward-accumulated\": 4.95063835358241651867681e+23\n        },\n        \"metrics\": {\n            \"by-bls-key\": [\n                {\n                    \"earned-reward\": 1.817674666158618207659e+21,\n                    \"key\": {\n                        \"bls-public-key\": \"6d320742fbff3aa1877aadb9316a865edbdecb0fb74fc973272d73ec1deaff131b653c3ab7a2b26753c717347f450a00\",\n                        \"earning-account\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n                        \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                        \"group-percent\": \"0.007326170774462393\",\n                        \"overall-percent\": \"0.002344374647827966\",\n                        \"raw-stake\": \"8354225889561732707889521.000000000000000000\",\n                        \"shard-id\": 0\n                    }\n                },\n                {\n                    \"earned-reward\": 1.817946361885415605569e+21,\n                    \"key\": {\n                        \"bls-public-key\": \"11195b7f18410482ef8d8484a7ecabe391fefea6f4b10bfb79e6251af6299f30a62640e6eaf99ac77fba100316908a10\",\n                        \"earning-account\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n                        \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                        \"group-percent\": \"0.007326170774462393\",\n                        \"overall-percent\": \"0.002344374647827966\",\n                        \"raw-stake\": \"8354225889561732707889521.000000000000000000\",\n                        \"shard-id\": 0\n                    }\n                }\n            ]\n        },\n        \"total-delegation\": 1.6708451779123465415779042e+25,\n        \"validator\": {\n            \"address\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n            \"bls-public-keys\": [\n                \"6d320742fbff3aa1877aadb9316a865edbdecb0fb74fc973272d73ec1deaff131b653c3ab7a2b26753c717347f450a00\",\n                \"11195b7f18410482ef8d8484a7ecabe391fefea6f4b10bfb79e6251af6299f30a62640e6eaf99ac77fba100316908a10\"\n            ],\n            \"creation-height\": 3601067,\n            \"delegations\": [\n                {\n                    \"amount\": 1e+22,\n                    \"delegator-address\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n                    \"reward\": 4.9750743863010649089751e+22,\n                    \"undelegations\": []\n                },\n                {\n                    \"amount\": 5e+23,\n                    \"delegator-address\": \"one15cvenx9nwhxw7ceas8uus2rfsgvql2ufva4y79\",\n                    \"reward\": 1.2208968869221933296747e+22,\n                    \"undelegations\": []\n                },\n                {\n                    \"amount\": 0,\n                    \"delegator-address\": \"one16nzsvx46jz9xyz7a3uayj4zfy627thru7za074\",\n                    \"reward\": 0,\n                    \"undelegations\": []\n                },\n                {\n                    \"amount\": 1e+21,\n                    \"delegator-address\": \"one1x4gteeym7jetxsma7al2yylvnw4qffr09mxuct\",\n                    \"reward\": 24436032718648294917,\n                    \"undelegations\": []\n                },\n                {\n                    \"amount\": 0,\n                    \"delegator-address\": \"one1t9nch5t4hu4qng3jwe6pq5jsd5zwz0wnwfq4sg\",\n                    \"reward\": 2.702677523189202675811e+21,\n                    \"undelegations\": []\n                },\n                {\n                    \"amount\": 0,\n                    \"delegator-address\": \"one16xh2u9r4677egx4x3s0u966ave90l37hh7wq72\",\n                    \"reward\": 0,\n                    \"undelegations\": []\n                },\n                {\n                    \"amount\": 1.54e+25,\n                    \"delegator-address\": \"one1tvhgyvt94gkf7sqgude5tu6709kt9vg66pzwfv\",\n                    \"reward\": 8.744632411371406832184e+22,\n                    \"undelegations\": []\n                },\n                {\n                    \"amount\": 7.97451779123465415779042e+23,\n                    \"delegator-address\": \"one1yudgqas450mhu9juvrsqt4ac73qhgprcyvk60x\",\n                    \"reward\": 74661011988623839499,\n                    \"undelegations\": [\n                        {\n                            \"amount\": 2.1195757486566021928267e+22,\n                            \"epoch\": 317\n                        },\n                        {\n                            \"amount\": 9.8105398284468000737921e+22,\n                            \"epoch\": 319\n                        }\n                    ]\n                },\n                {\n                    \"amount\": 0,\n                    \"delegator-address\": \"one1588j47yhfdn89pm56g0r0scj487hu8ggvgv3da\",\n                    \"reward\": 0,\n                    \"undelegations\": []\n                }\n            ],\n            \"details\": \"Cobo is the first leading company in the world to offer Proof-of-Stake (PoS) and masternode rewards on user holdings, making it easy for users to grow their digital assets effortlessly.\",\n            \"identity\": \"cobo-one\",\n            \"last-epoch-in-committee\": 321,\n            \"max-change-rate\": \"0.100000000000000000\",\n            \"max-rate\": \"0.100000000000000000\",\n            \"max-total-delegation\": 1e+26,\n            \"min-self-delegation\": 1e+22,\n            \"name\": \"cobo\",\n            \"rate\": \"0.100000000000000000\",\n            \"security-contact\": \"devops@cobo.com\",\n            \"update-height\": 3601067,\n            \"website\": \"cobo.com\"\n        }\n    }\n}"}],"_postman_id":"659ad999-14ca-4498-8f74-08ed347cab49"},{"name":"hmyv2_getValidatorsStakeByBlockNumber","id":"ccca8c98-65e6-49c6-b051-831690ca6fd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"jsonrpc\": \"2.0\",\r\n    \"id\": 1,\r\n    \"method\": \"hmyv2_getValidatorsStakeByBlockNumber\",\r\n    \"params\": [\r\n        30000000\r\n    ]\r\n}"},"url":"https://a.api.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li><code>Number</code> : Block number</li>\n</ul>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of <code>Object</code></p>\n<ul>\n<li><code>Validator_address</code> - <code>String</code>: total validator stake at the given block in wei</li>\n</ul>\n","urlObject":{"protocol":"https","host":["a","api","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"a211d60f-19b8-435b-80e9-a0198b174ad7","name":"hmyv2_getValidatorsStakeByBlockNumber","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"jsonrpc\": \"2.0\",\r\n    \"id\": 1,\r\n    \"method\": \"hmyv2_getValidatorsStakeByBlockNumber\",\r\n    \"params\": [\r\n        \"30000000\"\r\n    ]\r\n}"},"url":"https://rpc.s0.t.hmny.io"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"jsonrpc\": \"2.0\",\r\n    \"id\": 1,\r\n    \"result\": {\r\n        \"0x0014C441E433DD89a7cDD6D256d213f8f86cE788\": 0,\r\n        \"0x01120203d10346455fb098974E9cF343AeB5F800\": 6388660755266668164853994,\r\n        \"0x01614Fa8f3Fa50aeeD1a46Aa8781E7e14338662c\": 0,\r\n        \"0x0173e6C16BF9DA46dA1B698Ff0baDC855060FC93\": 0,\r\n        \"0x01742FbDD488bd89f619d1C1Ca4e4163c3c96E60\": 0,\r\n        \"0x01e3D42A846185fF52329726e38Eec13e2E50694\": 6024196307100500000020000,\r\n        \"0x0242BA1236e38eD9C1AA6d7e8948493d4bb4b45d\": 60414810755461917557847682,\r\n        \"0x02bAe1Fe50adC92B5f3ebF985a68F50921D739Ea\": 0,\r\n        \"0x02d5257bfc220cB3833d2D2C63B81059f1B49527\": 10088000000000000000000,\r\n        \"0x030Eab9DA296F6f2ac0E6bb31cB248D8847Aa41b\": 2198865093765099980000000,\r\n        \"0x03fd3521Ac005F1AD950578D0716B5DDddFd4A26\": 1000000000000000000000,\r\n        \"0x041F6a8559EF0e4b4D67C84c63b76628F4524740\": 0,\r\n        \"0x04e719B113118032C2b58482894010AcaFfd5EFf\": 0,\r\n        \"0x050AeB4Cd080E7de758c36A65009d5656E00C06a\": 0,\r\n        \"0x052745C443A34716787608B78D997DD25b2146D4\": 1624592675936502453100000,\r\n        \"0x054B3191bEC4E5B5B8049999E886D9CaFF45CAC0\": 0,\r\n        \"0x056fC07105Ccdd61394e31eB2d65A87f129dB44c\": 0,\r\n        \"0x0589594EbE3336417Efa16f796f737DE0b92e477\": 0,\r\n        \"0x05Bdb096a46A57b057A839a7a21de7f699851C1E\": 72049284383461839078145249,\r\n        \"0x05EE07C1c0cB04375F5e06121CAC9F22792D351f\": 0,\r\n        \"0x06206110C57Ea584baB01F0Ef0b92a5E3c8Ee60E\": 0,\r\n        \"0x06B624DC319E86AA8A09d801708aa853e4899FcA\": 3187748644027889949120000,\r\n        \"0x06Bb598a9967840ACa71914Ce663b8c9e598dC04\": 0,\r\n        \"0x06E8aFb383821f1d7c9e16F76aBa0b0a593eBA78\": 43902115917857098669967940,\r\n        \"0x06a1973df6d8564DecB22907Dbf372AE38D89b69\": 0,\r\n        \"0x074Fe503375510ffE4D36200fEEba168bc599183\": 0,\r\n        \"0x07a28C2D76557457DDB010071826DAdDf8b95744\": 10248620751929900000000000,\r\n        \"0x0886775BdFE3eAF241De5052e5d07F09a3900F88\": 6910163643502483587900000,\r\n        \"0x088A109E6872e22626B9c6c49F0C4c8cF8BA4248\": 561107037000000000000,\r\n        \"0x0891879f8731A45540784038b9597aDEd7a91d5e\": 33701590943842968873938993,\r\n        \"0x08c4596B157EafAE5EC4E0fE629005Bab2a10C3D\": 6002341705001438973230000,\r\n        \"0x08caE7003DDaEE4468cc9ABF80Ab527c8371325c\": 3202535705807061557270000,\r\n        \"0x08da05B0084b1075c4235d3bE6E803922715e337\": 0,\r\n        \"0x09119906960e6Bffa575E15Fb630a478d5e21eB0\": 6668438122249509238590000,\r\n        \"0x09Cd0856Af367C011F4a26Bf468198d0450F56Ff\": 3163677589000000000000,\r\n        \"0x0A87b64dB9631Da3a8049838f3DC8C32Ab7bd47c\": 104400539921369645347783293,\r\n        \"0x0A9EdDD87e428E1810A20E9B36F6E6Ffa26cdDFd\": 0,\r\n        \"0x0AB2FeBCEFD498758071f5Bd83dB5E1213272c41\": 1121680032741200043310000,\r\n        \"0x0BfB5Ef77e05b7a2C6190cf8754f4368f40Af666\": 0,\r\n        \"0x0C7cf20fC644Eb17bE10c846994312D1a62de195\": 6709899628923975104120000,\r\n        \"0x0C9c7c14b11E087aA1d0D4a814E7d336c716D908\": 0,\r\n        \"0x0Cf1D9588563E52753179B1629b8c4454BA18C0F\": 30046687111100000000000,\r\n        \"0x0a0d9222Ed0501924a985A7500cD177089aa1adE\": 0,\r\n        \"0x0a85516793405f87F1d5E3bC8AF59C28D799C252\": 6861692929078745649370000,\r\n        \"0x0bD3000e761C3eA33D9dE5b01b1bF87c0E51B650\": 0,\r\n        \"0x0c357FBDe2478265273DCbBa8276cF777d7D6E2C\": 0,\r\n        \"0x0cA1AC62b0E79193493513bE5B9c81747E8C7080\": 14120999000000000000000,\r\n        \"0x0d95cFDC46C9F3322e5BBdd58aa0FE9386742294\": 6967241265178270063200000,\r\n        \"0x0e0018347FE3C27a98d154f6e1036912b5aB5335\": 0,\r\n        \"0x0e2244cEc393F79214f3Ff4fD8392b211519F571\": 1000000000000000000,\r\n        \"0x0f9A613342981685F8A121fe9e4e4D3f75667D27\": 6361624652519800000000000,\r\n        \"0x0fAe137278B70366BA045CB2b9b4b4583310ce18\": 7075718545484000000160000,\r\n        \"0x0fECfE50eB09fD4A6518cA3E73c1f13c600e8932\": 0,\r\n        \"0x10C02488A07757FC1D03639cE5DBA012A27B5c15\": 0,\r\n        \"0x10a4Bf0849d62595a9329038E20D3E9C1C228F55\": 0,\r\n        \"0x1237B3b5c412530eFa3e2a2EDB2174ce970dd561\": 0,\r\n        \"0x126616fc75652E45EE28B6E22f768D8E3D01e8A0\": 6323859408246600001000000,\r\n        \"0x1281169604f1d13FeFCdd027d1Cb69a3Dd222CCe\": 0,\r\n        \"0x133763F7d93f2bC4241f9855F71bE5042f020A20\": 7117892775024439352188429,\r\n        \"0x134475687cB3c690F8eC445AE29f2174E31b1238\": 3038333100357700000000000,\r\n        \"0x134D2251FdE96D68c4261c8872646140aa5B99f3\": 0,\r\n        \"0x1391a53Be709c6199b83C4989C6d898b655d04De\": 153125159999500000,\r\n        \"0x14342F61a487B0858A1a0F023185d97f3003df5a\": 0,\r\n        \"0x144bEb7ce083Cc2242F71d8CDE9dE2775A399561\": 0,\r\n        \"0x14e22F9A2b777E63ca52C9eFD021447407DFf32e\": 0,\r\n        \"0x155D09aE34FD7fF9B0eBa294af0bE43c1910A11b\": 0,\r\n        \"0x159F2b7611173bac137889B58d4dB052B905006a\": 0,\r\n        \"0x15a186838009Bb513Ba2b5073d64354367472d52\": 0,\r\n        \"0x15dd1965ccBC027B09005F58B810443bF8d06d55\": 10011000000000000000000,\r\n        \"0x161D14f3a52aCAbCbE3bE69349cf2778623E8530\": 15152948338811718968930000,\r\n        \"0xe7278eEC931d1E784ED823c5A5D47f9a90D1D19E\": 109000000000000000000,\r\n        \"0xe73fB5fD559aee393E649f0E0D2B14212999b407\": 10190000000000000000000,\r\n        \"0xe9CCAC50bD049e087fd33AC6a859230a88335349\": 6586301169627174726670000,\r\n        \"0xeA86609Df6ce02F54634fc0F4AEEf2c6EA5aDc50\": 84871317754190993360000,\r\n        \"0xeC4b76bcb0C7bE925c2725f32c925A960Fb487C0\": 0,\r\n        \"0xeC4f38e13C8fF92dFE7d1873502D16f34A89347D\": 0,\r\n        \"0xee0e4Cdc193367dd9482Ed4152444e1d8971a6B7\": 10304000000000000000000,\r\n        \"0xf0b310C16B32a86C38bCd4Ae780f9420973ce841\": 0,\r\n        \"0xf3Ae48a00c07aD31236F3b156c9288908Dcc8449\": 0,\r\n        \"0xf3Cce57933533818b8f9581e965D06b57BCe1892\": 0,\r\n        \"0xf433030df206A03E411bf389CF0B8b687fa9c556\": 0,\r\n        \"0xf4BCfD7f984Cda44D319fA02E1F2B4C25e09A884\": 0,\r\n        \"0xf54DD58ce200Fd1b4Dd2c2DDCf4780FfbEC62A8c\": 0,\r\n        \"0xf54b44Ab06c2934cc9578B3Da95EC695d07AB15B\": 81315788316717763500000000,\r\n        \"0xf628E8cEa8BD8577D7c25CaFFB3e35A8b9534bFa\": 10000000000000000000000,\r\n        \"0xf66f5dFd120e990E45BAa422b9E49CeF23b925ef\": 0,\r\n        \"0xf79648DB0329341ABB97D7016f9b4c7448D0FE7C\": 0,\r\n        \"0xf7Ad84f1369C80561a60C114cE568e922FB26A5a\": 0,\r\n        \"0xf7d9A20a588f897473ee212712bb75E35d65252C\": 0,\r\n        \"0xf84bde94b2F2030De994F693b8df969E9bD522F9\": 0,\r\n        \"0xf8B0D9d2CA82fD01Dc333259d03B2f01549813E4\": 1385498454535665298410000,\r\n        \"0xf8b9f07AF2cb5c2cF3af59773147c6802C9413D5\": 10450000000000000000000,\r\n        \"0xfBDcE66bDf4e7E6BC99Cd36db2ACf2a2206cb2B5\": 44033262450000000000000000,\r\n        \"0xfCCe51De94C3F33D8E510b50916B4eD747d0749A\": 0,\r\n        \"0xfCdD13cc8E64896D2f5245Ae3e0F5120307c8Db4\": 0,\r\n        \"0xfF5cD6215cc385258712F55F4774e0a1B983bFEe\": 4744388974347921015939966,\r\n        \"0xfb577B50441E7Ba769e30AF0920bE95b4e984Ca9\": 50093610622280300000000000,\r\n        \"0xfc25bd8d2Bcc7135e797A47dE99755d8d1FA2F09\": 0,\r\n        \"0xfcF8143c9B59a7E00615a01511834091f7f18255\": 10000000000000000000000\r\n    }\r\n}"}],"_postman_id":"ccca8c98-65e6-49c6-b051-831690ca6fd3"}],"id":"d7f381da-6111-4f61-b2fe-13102fda6f13","_postman_id":"d7f381da-6111-4f61-b2fe-13102fda6f13","description":""},{"name":"Network","item":[{"name":"hmyv2_getCurrentUtilityMetrics","event":[{"listen":"test","script":{"id":"f2c43ef8-b497-49e6-aa1d-04283adb5665","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"78dd2d94-9ff1-4e0c-bbac-b4eec1cdf10b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCurrentUtilityMetrics\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>AccumulatorSnapshot</code> - <code>Number</code> : Total block reward given out in Atto</p>\n<p><code>CurrentStakedPercentage</code> - <code>String</code> : Percent of circulating supply staked</p>\n<p><code>Deviation</code> - <code>String</code> : Change in percent of circulating supply staked</p>\n<p><code>Adjustment</code> - <code>String</code> : Change in circulating supply staked</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"a67c2954-c52b-48e0-abd0-43ddf70aa5cd","name":"hmyv2_getCurrentUtilityMetrics","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCurrentUtilityMetrics\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:58:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"187"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"AccumulatorSnapshot\": 1.92407575499999999499686302e+26,\n        \"Adjustment\": \"-6983540924395943120.000000000000000000\",\n        \"CurrentStakedPercentage\": \"0.524588523109898578\",\n        \"Deviation\": \"-0.174588523109898578\"\n    }\n}"}],"_postman_id":"78dd2d94-9ff1-4e0c-bbac-b4eec1cdf10b"},{"name":"hmyv2_getMedianRawStakeSnapshot","event":[{"listen":"test","script":{"id":"957bcd23-2c25-436e-b7ed-cc29123b70d7","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"bef93b3f-6763-4121-9c17-f0b0d9e5cc40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getMedianRawStakeSnapshot\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<ul>\n<li><code>epos-median-stake</code> - <code>String</code> : Effective median stake</li>\n<li><code>max-external-slots</code> - <code>Number</code> : Number of available committee slots</li>\n<li><code>epos-slot-winners</code> - <code>Array</code> of <code>Object</code> : Details for each slot winner<ul>\n<li><code>slot-owner</code> - <code>String</code> : Wallet address of BLS key</li>\n<li><code>bls-public-key</code> - <code>String</code> : BLS public key</li>\n<li><code>raw-stake</code> - <code>String</code> : Actual stake</li>\n<li><code>eposed-stake</code> - <code>String</code> : Effective stake</li>\n</ul>\n</li>\n<li><code>epos-slot-candidates</code> - <code>Array</code> of <code>Object</code> : Details for each candidate<ul>\n<li><code>stake</code> - <code>Number</code> : Actual stake in Atto</li>\n<li><code>keys-at-auction</code> - <code>Array</code> : List of BLS public keys</li>\n<li><code>percentage-of-total-auction-stake</code> - <code>String</code> : Percent of total network stake</li>\n<li><code>stake-per-key</code> - <code>Number</code> : Stake per BLS key in Atto</li>\n<li><code>validator</code> - <code>String</code> : Wallet address of validator</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"53499079-1d0b-431d-a783-58fc40566315","name":"hmyv2_getMedianRawStakeSnapshot","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getMedianRawStakeSnapshot\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:58:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"epos-median-stake\": \"5809875578600392857142857.142857142857142857\",\n        \"epos-slot-candidates\": [\n            {\n                \"keys-at-auction\": [\n                    \"1181a673448c0b135574063249f0754b9a521c31d5955441bd975f33291c214731c57308176877af57e801d3433b9409\",\n                    \"73c059d291361151de45f3b34c9eba861fbde72cff5a00c24526d017a8414b577ab2b72291eee615501b1e336e54d891\",\n                    \"a7d0040ac7c79df54009fd3dc7ceaaae6dbf33cd2c144f75c2558a614032fa846a54d8d779bdeb6ae63590b19c533382\",\n                    \"dd16b9e77c883093f9481a84ff96823a5aa4b09f5a0dc6092b8db98ade5302c9b4074c8028f3347dc522c9686592cf02\",\n                    \"4d56f8d3f0e254b61f1fd0987f93e0bd66850f37bcdb6fd90d812d3ae0f44c4272356a42e7af289f8497096dddb4518f\",\n                    \"179c14684b1d39715563d3cb0565782b37a231c056886fe5cc0c7547a7e95439f5feab4199ae25b8bb191ba4b4d93397\",\n                    \"adefd13f109aa759825fec4741aef8df56fa6808c9600da42b7c7e7a29688bb9855cf13abc2e562d80dda58d05546417\",\n                    \"851e2ac1306d867851b618f0343bb1ffe2ca5d6cacc642defeb603c807138320bd7f33d83184e7865cf5ee0cba242a87\",\n                    \"3faa1e4d144872bbf6d3168aaa8c2d30b000fbd889f943da2a96edc54ee50c08e7208416f494685ba521b50d0295fe06\",\n                    \"a6898ff36da875376516e205f687a7590e124337f0cfad968624e05a1a3f472e04ff0da9bded67922a2beee748136b09\",\n                    \"17d4c9cf214edad944f13ee8b52dce377c1043842d14c74673a3dbc79ed63420171a3a66d1b10a6a0278db5405320318\",\n                    \"64bf95a58cecb76b90d85f0729b3bb411ae56ba11753da991579eca8d3f72bd6749592b567637d53035c3cfc9a57ea00\",\n                    \"935e4e9c467c60646c7acf7a30156b410bdd1aec52403344e964ae33c35e635aa9c1976aa7f1606437bcd2853568db90\",\n                    \"880106b3aa920518e46ad26ee3a13c7a13426235f3d5ded0c19f75e113628d1807bfd9d8cc614e114dab51a51c9f3719\",\n                    \"88a5216174e026b45a4be63b17ed2c6cb25fa4e41e397b88d765cc49412d9b6c14d0e7138b7cceb0d2f5957d7ba8a305\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.020946454994991112\",\n                \"stake\": 8.1363412415336142857e+25,\n                \"stake-per-key\": 5.424227494355742857133333e+24,\n                \"validator\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"02760cadc6ef3d3c1f8b66adbe182ebc252b451178efc168e856870311c8a7005c7060d28ea72c6c7adfab606989f413\",\n                    \"bd579128ecf1606ec4700e31f1d6f88dbcc45506dd9e94461c8dbd102b44c5dc69ab762c7ec6d5332dbf24658bb4418f\",\n                    \"3a16916352fb68352c4b266a594a2ec823b473c11e5a175401096597cccf19c8978859dda1718f2b2ebffcd41cea6d8f\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.005076141692175900\",\n                \"stake\": 1.9717523088176633333e+25,\n                \"stake-per-key\": 6.572507696058877777666666e+24,\n                \"validator\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"a0d0df9bf4add2824e8cbabb77cebde470aedbafb0647a73389b49cf8b52f86873922f5d590732b22bc0bffdac75d30e\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one15zmw8ea9mjru57t2qr5dr6jkxd9u9rg4q6m5j9\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"28553ddf0069c1557ebe6b108345f23aa242e217fd84e74efe8be1ad5d1d193a141d250360e7acdf2ade7f15d10f5e15\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one19py40wf5tu7pu2zdfy82y7nter86lk8h0pj906\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"8f44715906e70454c31b9bb20d1fa8a06c83b4a9edcbde4439998dd19e8a403479b60a213e93092fba2650c113212b81\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000020602161131868\",\n                \"stake\": 8.0026053727e+22,\n                \"stake-per-key\": 8.0026053727e+22,\n                \"validator\": \"one1knlmx04zn50d3yf3rhuwdzhjzx7twy76g9y0lt\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"d57cd6de45014b79f81a7752deb0c385a324b0efaed86a8c06a1b5d4212430d21a7361f2f799f434967d5558aea85e8b\",\n                    \"6d14b744ddc346f422d50d9df92e885732fa4963192cec2023390056f04afebe7accb5fdb8a17deeabba46b0d055a802\",\n                    \"7c5ca6fd99109e79b2ba94caabba3e8b0e40785fc15e9b62a6804ed7ec6ff04b3a954172290b1e2dd9e26edfefd8ab02\",\n                    \"1781c77e68eb73118dc75cbaa5c3531f76434462463b2e6a07a91ed5c0a6cc85c14491f64a8bce7165feaf619519ef86\",\n                    \"f2a4539f1251cc5b173d43d52ffc41f95da5999e782f8c3f82bdd76d2f85fc4ce35ebca5fd6130fb018efd3bb140b78b\",\n                    \"cb6a52fd791c3afb7a0243fa1b5388ce451707ecf94ef7262905929db69588d68ad027c8736d6a868195ab740a459c8f\",\n                    \"59cd2977ef1f46ade77b8dc56d26883acf9f1e8b05eea76f1a35f4ef636d241d4d63c35a7aa3873ce64bcca76018e213\",\n                    \"c1fdc6946494e5caf6590c04b8e38172b481cdd570b884628dec1a1e4c8a553b697cfa5c6ae678003b6b73e5903d638a\",\n                    \"907d2fcf1857be1d1880f86af693e0def624a2d886eb19ab6002e2aa0965a06b0bdcf065ef768da4ff7d0fa5f1977d0a\",\n                    \"d2f6b1c9903d38fde61a77a293ec8c9107255ff7867bcfd8e9189b1fcb1ea220fc55a35c81bb0ad1a32cd39ee06f8683\",\n                    \"38f4891a6abe036c75d1dadcdf8c19f8769d0ba01c421fe1b8fc2c5b681416251ccb77abc51c336228bd74bf345bc407\",\n                    \"9756abbc889d65aa2739fecc1bc7188640395c003de39c4704525136764d5b607750fb86f8d6b93a784ff52456147b01\",\n                    \"e3750661e4996422239dbdc369793e3cd248c6f4ad54f17145a5396347af67abc8fac82a5e51a45055b483874b9ac691\",\n                    \"fe809303969f91a644580f1515e6d3029802c3a964a5eb6413ec2a72c1e17c70c795ae72d8647af9aa68538b368ac009\",\n                    \"2a2091d221e02a0982a4c4501f94d88980ccff0a447b3d47d0f78aa1e77504daca95cc35698ceaa1c984b819af5a160d\",\n                    \"417c2b9d293c24c03cce180d279968855abcd8407a56ad3d38ee41f7231da51adc90f9afb1f6f054c28cac4465cb9296\",\n                    \"8a8baf28a1aa17c58a30a8472ddba616e9b5c37105f2d754530850927722144f4b5b263de9339aa13a07013654559586\",\n                    \"365ebf1f7867198e2c3291e515717e0caa0b8eb65dc181a178dfe5dde0cdffc354d3c40fd5cedff9e192cdb6ffdf350f\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.025474712967509358\",\n                \"stake\": 9.8952762070403742857e+25,\n                \"stake-per-key\": 5.497375670577985714277777e+24,\n                \"validator\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"1c84f0fe7e290a8a2a2bceb4a03208d0b6069914590899c52edfe6b275ca0324c8fac355bad47b1144cc2c5c1313ed8e\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002835473435101\",\n                \"stake\": 1.1013978e+22,\n                \"stake-per-key\": 1.1013978e+22,\n                \"validator\": \"one1jg5rezn9tqdgpg0awewu9khrg2y9alu3jjpc4e\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"83cc0b3f49335a03945b09a34f54ccd2356f2c985280c61e27732d169d1b394b688178e6a24f81e6646f4dc5e29d6f0d\",\n                    \"ce157d08213d5480ba16234419b37271cc4febb02a99271c32a6f7704ad614ba61e1f971513822d5971873c668486299\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004134018238332066\",\n                \"stake\": 1.60579836033527333322e+25,\n                \"stake-per-key\": 8.0289918016763666661e+24,\n                \"validator\": \"one17qqnjy4llulpcs3g2uzryhehk5rcyedy4qhet6\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"0e52e6dec93e100a4c4efcb969cb1582072b67f23eaca88969578cc11c214f03ae1615c9d7cd02ec9b5200301840c085\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001615864948305716\",\n                \"stake\": 6.276588865654e+24,\n                \"stake-per-key\": 6.276588865654e+24,\n                \"validator\": \"one1f7hfpy33pzw27jzpnt77y6ze2srckrhm52j40v\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"60dffbf2a5f7709a5ee150611ac0fd488023f2ec5bbdd1ce5a90d64a8b8b0d088b55500b894b0293827eff893b68df0d\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000012895328496588\",\n                \"stake\": 5.009e+22,\n                \"stake-per-key\": 5.009e+22,\n                \"validator\": \"one16jck2hq039sp0w6ehhjkq858nz2a95emjqff0w\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"5fa1f69428dec317df4d180704b694403cc415bbd50daafd6285be3af6cbbce89851c8ffa4fcb0190d9700c1be432c07\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one197d4aaar6nhzn6vcn9s64eac83tsxfxd2zt965\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"395c6b530de2aa32bd0e826dab68ae37a774d9f6d28334d3ac322d61d2a471aadf2a50c81adbdb8a110d0e6850621910\",\n                    \"18e9f2ad7b95c78f97ad32ea4d5b84128453b364e44a5d1c5f346e246efc27f8f955a64d4ed51576c07da47ac7b89e04\",\n                    \"7dec5e3f6909666b5e280e71eb6bfc7ace6ee39378e6752447ac2fd9a93cabc79c1309dcce0e670ebd78dda60ca9a388\",\n                    \"943dc0be8753c7721dd718b749eef9d84ddfaa1e894e3d56ba78a5b496acaa40edc6c3cad7819e5f06ced9ed554c7200\",\n                    \"092b8f3238fe33bf9a2bca8cd3badae60e138fefdf87ac5061479be2730ee3fc7970e0ab25eba38e693004972fd9cc0c\",\n                    \"18254f06c00b071310ce55ba3a340485bbb61ea7b4765441e43d0c13eb617954417fef98c8c03937fad8dd9c33ef9108\",\n                    \"8bfdb9ad1b77ee64a0ac063ccef3db745be87dcf6339ef7c4743ba61c3e98eaaf4955c14198f16b3499c05d2053aaf14\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.010552902673209288\",\n                \"stake\": 4.09911926664703333333e+25,\n                \"stake-per-key\": 5.855884666638619047614285e+24,\n                \"validator\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"eb2bb03ff0a8502769d3718469bdd4acf592d752b372d6c184530bc19c13fc18786d4301a478f0572b22a8e42553f409\",\n                    \"f7f8425f0d57c469cfa7dcf2af856792c1ab07e94762de09d53e39b4897e9b75f865be8ffc2f2bab8c88f177f86f3c01\",\n                    \"22ef49408747a9553e4a3f77832a15aba9294f8ff22ac9566826b384ef1c2b4eeafc791c19f729393f4a1a08190f3d19\",\n                    \"1a675b05b7787b10c0cdbc08a1ed3881a841082ab0b62bdfa7fadec77a02aadedc3d47c096c598d403a2c06410f51281\",\n                    \"1fb8c58a2d557f659cc11f423df5efd7eb9e7160b3d77425dcfb650a5714c640aa3997e548462c82fd65a122399f040d\",\n                    \"248288b3a44b0775da68d6cebd4fdafb45cc8e7e4b90606c0ce174b09c941fec361b61935aa77746a98eeafe11b81689\",\n                    \"7fc4ee1eaa81a6287c6d9d94b13c0f8f6c5ef4da02a44905220a57e2dadba6a787cca7c0804c760247458c0835f28681\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.012311449222363560\",\n                \"stake\": 4.78220071486641e+25,\n                \"stake-per-key\": 6.831715306952014285714285e+24,\n                \"validator\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"52dd617310398cb7cb57ca24afe7fcbe41720c9d3b1423688ae74618315ba53b6baea6b76308200b17a134fbea3e350c\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001551178474119644\",\n                \"stake\": 6.0253238053775e+24,\n                \"stake-per-key\": 6.0253238053775e+24,\n                \"validator\": \"one1q83ag25yvxzl753jjunw8rhvz03w2p55dneenm\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"0664f95271d09374c07331aaf2367d6710785952b1ad09153eb50148669c2f8fdd812697629e9c1bcc0fbb20969eb98d\",\n                    \"04905b31875575fb2c51d75261efe27c61f9181eac69d4617e678a954a1ef9f987c3c22646be919097e5d5f8250c8009\",\n                    \"a99e95e5d0dd8e9555684df0676c42bcd16a4a593d71bffa53e19c7beda44673b6b401596c477e341e072f9e1792a499\",\n                    \"b11978de3a5edc73d6c70a6fe66d8c0cd48179ef58c43ac9eed7bff1b7143d720f5e7fa8672e859faaf2f86ec6a53389\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.007388559589922191\",\n                \"stake\": 2.86997690642106285715e+25,\n                \"stake-per-key\": 7.174942266052657142875e+24,\n                \"validator\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"13645de13e02f6de909314c40be65cc3ec38b71be34c04b29028cb27af3b0c8e6f80f3f5d17c455a866de346b23b3197\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002834191882989\",\n                \"stake\": 1.1009e+22,\n                \"stake-per-key\": 1.1009e+22,\n                \"validator\": \"one1968yuwqqy7ah5nt2peacsp9s7erdl6m6cfyqzt\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"4fb8fb78c5088b54ecdf53d01831afacb151f3a9bee189f7367c8f874fcea3d2a284f83a9fa4a53b3358c60f60a6de0d\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one1lnupg0ymtxn7qps45q23rq6qj8mlrqj4p07pe6\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"3d63feeb9efa79d60bd673cff7115f9ae37be9bc98a0857113c8b080b7088ad7d086c643831e76532c8a63fe736df316\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one1sl30qfusjzqan52r7644qhcc9mxmh2utjcac5p\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"07f8d68fb254a919dedb2246ab54492dd1e346916d8244b2a12158fa84d2a2d5d680395b9788547628c81a4e64838e11\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.008619935238116002\",\n                \"stake\": 3.3482866000000142857e+25,\n                \"stake-per-key\": 3.3482866000000142857e+25,\n                \"validator\": \"one1wt9cvaduxh03n8rhw7aqhhx3s2cpffws59xjya\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"dbe838331c502c24366bfae521c30cef2c118c34f8a53b383c9c80d57acfc2ceb1fc979d046063bb1929d7d1d0803a84\",\n                    \"fe0593f9a38821750623a189db19294eaa288b86efa46b0fc2c9e100174a51717e3695fc143dbba963800acd9dfa4010\",\n                    \"a7fe02c4f789c053f8061cfa72ab6fb41c58eac7bb17c0d1c699e6c49182ef95c0d72a4be51b828870c6b4c279ce9f95\",\n                    \"e1cac822f129fe47fb636a0ca3575bf8f979dd5c353abb1a8441a5b5f486be4df286b1b6ef01916734ee2e8f27a45b0e\",\n                    \"70ea1ba2963116dd3e8c30795a5cca98c7271cc1e39bc3fb074cc4419a83b8d56b8ac3734e3252af35b97d84a68a1a03\",\n                    \"b68713738f5385048ca97b5188f331b0763937330b0ce306548f07d5401065538d7d1cbcd4bae5ed2d0eb1c9c36cde8b\",\n                    \"6d1ecb3757073c7886cf13562230900dcb1b63210816806ffac92b323bf28f1ea08f6ed1a6db37669adc044f05be9f8b\",\n                    \"62b08e5b27033432965a81667acccc127b9e709d243299ac0d961edf7f0f90055c43c9c7ae55ee830d782cf32f711207\",\n                    \"54c3cabec33735721eef52bcfe94282d19919ccb90b9675bee8a8425cc15bac27b9dac5fcfbe560eb39ec619efdda386\",\n                    \"6a924159a7082d438cc1b8176bbeeef57f107ce62eb0a63cfbc92d2cd85b2544126dfe7d01302d578689f9b956fe828a\",\n                    \"4af3740a2400c6eabbff5db46e214c6aa6e2c288210cbfbedad40f2672f7359b101fe102f8bb3ab4a4badc4f99f58e92\",\n                    \"8c166b798f14ee72dbbfe73c759ec6571613114933f2d82ca7dec67731e3ee57967a9da98822e5345f78f38a4c58a710\",\n                    \"5074d8e57293ae73a10ce2f9ebd970872ebe972c377ae8fefd4f29da42d8cd4941c7a27831f7d31e3b7c4881ee31e711\",\n                    \"4d90f1bd3d6fd2803b5a68917c1917579479a4f24a59eba93c729175e26a5adfa6dd596273136c1be24f4b0d35bc1003\",\n                    \"5d0f9e2e4b97dd567bfb5e486d4d32303eff1bf36a1b484dbb5a499c83e85d6c3656fe3a3a56187e032de612355e9419\",\n                    \"860b2ccf90c6177f3684720ad63f61467d32f7fbda63bab4eb4955235bb84f71408a5c53d393e04e20e911f5bfaf2e0a\",\n                    \"5be15de52c6f3ef44947437734e1d9c8f2e16d71ef1eaac70cefa58e2de5dd950d35edc624d69f11625c01d3102af085\",\n                    \"4d5dcc9d7b3f4c973a3f91e85b77ede091fe3fd2e494920a1c4026355998694864f7731b8c3630379adfbeaa17849a09\",\n                    \"7a0af4d7e6f2a82f1afff03bcf4b59457b3db0c1a582d42e4c4d15a2091ff175eda5e194e4142c856e28abc5cb2dfa90\",\n                    \"6cec58349cd971eb0d5c65937b3c0a98c449a601e08cbb2c881577c5475491c17610531c19e660a461d3ea9cb2bc808c\",\n                    \"2e935bfa72ad37e549100c95d0d2b153c0fe5786589b2c853eb91049c95fef9bdf80a4ccd2fc0f0b1431ff2dd248eb8b\",\n                    \"4ace32c030558cfea4b215615a2225d379e6a0c3f5c0bdf11a694b88bf7477c308e9617298e6f836853523af63cd6602\",\n                    \"5ea4a8c13bbc364b869c9f7c6b5933a106c5a062e1ccaf83d0650d25ab29dfe6875cc2e5b2b5cbd2712417b46cfe128c\",\n                    \"2d6a4c4c21a67c9ed0b729ab12bbdfec058e54348d0721906137afc22f2400958c42793ab7c4dc890f9cf14896ac4082\",\n                    \"2aba11e4239383c631fcf0796c95241508a2a60be7302080e356638141bc01144787b68cf75d130ca596ebd01b57b107\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.034432527401234099\",\n                \"stake\": 1.33748069929680298396161984e+26,\n                \"stake-per-key\": 5.349922797187211935846479e+24,\n                \"validator\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"19a42db0ada7e82134f72dd17e20d2d3ba2e36a33dc8a93c5fc4e40d472403538af282b1a427abfa61371c4814818e13\",\n                    \"2220759df1bd1d68d40fcf746c894283e80088df83bde4618458dc6adb9f180dc0ae361e0d554a5a0f61d3d86d57ba97\",\n                    \"8047e6aae13b6c4cba7707529d32ffd66e935fe0a624a0b9b744898dcf5e8ea84877f1809cad5d7d9e5dd5eba2ef6189\",\n                    \"e5ea8826643e9962b21abcbf9ee087137ec336a8828600726fd1acce369417a40798b0c52f0cd18d21200768e793aa09\",\n                    \"3a483fca6153214c083b944b69a65eab16aa58b94679ff80151dcd6447541390ae1d0fa176179fc9973c20568abaf88e\",\n                    \"8c0f977fc49b0b5741c4c4d25c8db148f401c7e14d9bb4b829931418b47349e6079aff8bda5e1e5976fa0c0bf4162802\",\n                    \"9b33b36c5d82e80d45fd49f136d76da580b77a21eb68692b0b44accaf8cea8647ad75086f3f872385bc8d25236fe8312\",\n                    \"dafd8989fd7dcc29ccbd5e38f90f27c990488b7875c3a83bc51268d60f1651ade03bf4c990278351ee4835dcf9234007\",\n                    \"4c20bb0b2837e06c60e7a377798987a66f216c6d6c466b31d024d174a120267a65cf91d25308c6d9206bba1a37073b91\",\n                    \"b7c1e4947c0133e786360d605eb8bfb15ef5c39022de9f89546a9fa3792f333e1e50e03436e831571fc9e9fde3d04197\",\n                    \"433bd1eb567b540d1cf324abc83b3fc33d4a96d7daf9644901cb339bc393b0f300cae82c800f04590cc74bc5f35c6d02\",\n                    \"d7f3aedc704744bbe78a2e85068c2307e6c3c7a3b8bc6495a1a39dd4f2dc503170b3d0e4cb40943d41fa8e795a363e85\",\n                    \"a472acf4f4f3faecb283217b4bf0b99eb019c55dc079afacea88695b63a1b7f3371074981db77929e3859fb2929e490b\",\n                    \"f9e741cb120862af08828345fb967e66eb3fc5e25b7a6688074b80cdd2acbb898af484110eacdb7ba300da9d39ed2b8b\",\n                    \"66ab282fbb88b2dddb564dee12064f61cb11041aa18ed553338867b0ab8a3f4ea7f48a96ef98a81fbb10bb853188a78f\",\n                    \"3af3cc91916bebbc240a5ca9c7aa478a0ffb54ca6d1e6c09089271d48a62072bf769676de303403c3465c45c7ec24e15\",\n                    \"575fa22442d33042bee0760b72b2cdc4c9d8f81164a19a190d9923bcfffa750c8e7d10c1efd34553444020e76105e585\",\n                    \"c7f6d67cd32103215bdeb574bac7576f553a9dd3028afd138dd8627d200b8c3b09c34e0b2178d3bb85d1ff13bcf30919\",\n                    \"fdf618fbaab9588f74ac1b681018f474459afb047afec0dc9df9da8381cebe85a08790bf49f121cba75c2939da9cb68b\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.026787763374706834\",\n                \"stake\": 1.040531125511166095234e+26,\n                \"stake-per-key\": 5.476479607953505764389473e+24,\n                \"validator\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"663cb993fc5793f4ecf234695a6700ecadccd39fb447d6e41ea2706c8b023526653dc369ca4ac6aa04c916bbcf42a40d\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one1jzsacjqa20q5vdu397ltgnfwvsq4me87g6k8kp\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"663d4bc56f2755ca00c8dc7a7802d5913a1b9642b87a34f986e6cd56963c590dbdb4c2fcb1fa0acdc3f0b3f399b04486\",\n                    \"07f91bb48ee0ea1176a9b81ac05172e283bd2123d31f7e0217da201d6e928b2ebdb0be246dae53ebe4455205b169068a\",\n                    \"75b30e36db669855515207d26c85032b8124e602e230f61af1f83d359652ed2c75fb644ffd5c03414207ef54208acc96\",\n                    \"d26aba7946b7c6233139c9a3eb59b76f690ae17100b588b7fcf1797b5d6a56194a45d7e1da8452c80b71d454bb7fc906\",\n                    \"0a62f4f4e25aad7ac77845b5e5242570637d7918768ffc20b69629e918c1bb154c78c196c563b419dcc8070db187190b\",\n                    \"8a38e74bc302f0cd1a200c2f6edc2184c3af577a6f07456f19af063940994d803012da53a399fc15279682e743bf520b\",\n                    \"43ba875e76d9cc1b40fae255865f426de64a7ece1b4caaa9954747c3c766894de034f372e825cb09313a9ba588b6d68b\",\n                    \"c87565824a5046abebf7a4f608d1456a75623177e89d6537de8148c6c4d5793d00f234cafc7ffc9a5ba666f7825e0883\",\n                    \"887dd858614da4b6f81b3f5039334be0fc7efba7cd2ec3f9f2cc070df734b09b4889092bb0097beafafa581361bbb88d\",\n                    \"a19ebc874d122fcdd3e809f5e2d08317f96093d96ff401e7a7648641e8ea290539095b8963f67792e01766dc0c82c995\",\n                    \"3aa1b10f749b926ce116ed55fe87e948a45b748b7450427973f936444f504ce3bb69f74cbb1eb5507bb2949adcac1405\",\n                    \"f8229098ef64c6412a05623bc9bbe1a8d5788d992f411378add8201da818b0339b642c06b83494cd804fcafb1d365315\",\n                    \"87724e5c55dc0b0494657d46ce42f934863481aeccb2ee5dff9216b37a0bdf4e92532e20c6b6559f77a4f62a5c4a9797\",\n                    \"a12729cb8a958ec2ee376f223b47f04bfe7b002e180a4aecddbdb2023ca3b59ba3bcae1c58fbdab18cf45dae3c1a5697\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.020939979188360302\",\n                \"stake\": 8.13382581004055e+25,\n                \"stake-per-key\": 5.809875578600392857142857e+24,\n                \"validator\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"9cdac12c6507e3405edd521d5cc892840b5f79b140ff3c71b6e7c9a4010b886608fc3f83709e1a60232fee0bb2b00209\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001678898456491477\",\n                \"stake\": 6.521433223504999999e+24,\n                \"stake-per-key\": 6.521433223504999999e+24,\n                \"validator\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"6d320742fbff3aa1877aadb9316a865edbdecb0fb74fc973272d73ec1deaff131b653c3ab7a2b26753c717347f450a00\",\n                    \"11195b7f18410482ef8d8484a7ecabe391fefea6f4b10bfb79e6251af6299f30a62640e6eaf99ac77fba100316908a10\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004301476828931781\",\n                \"stake\": 1.6708451779123465415779042e+25,\n                \"stake-per-key\": 8.354225889561732707889521e+24,\n                \"validator\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"d0aa347fa95d3e34e942e83a761f04c8e60872b69df44f8378a689cdc54e5be4a0ebe597dfca1c1799f95e12fe698583\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000007723295166653\",\n                \"stake\": 3e+22,\n                \"stake-per-key\": 3e+22,\n                \"validator\": \"one1arje47h08vdu573kjrmlfs59nhqcfn9mfr9xdh\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"15dad6a28f96880c1462e9afa7745a9e65fdc971c981813847a0e4d00849b476c18c1ae9b1d75126b158eeeb21f08910\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000018407186813890\",\n                \"stake\": 7.1500000000133333e+22,\n                \"stake-per-key\": 7.1500000000133333e+22,\n                \"validator\": \"one1h9z66rjlrely889rkhlaxf7chk3pv2ksy46eq7\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"cfda73a32b8d612aeb5b9a4c963086da8daf44ffde42ec73107ab2dff56f1568d2a9d453fb0c6040995317a3a268b78d\",\n                    \"77310a150e5df07db4ceed3daf98967b70b8156beb7c39a046d505bce3620ec048a24903d9a9432724b6327808e66499\",\n                    \"48427664b04ca99d1ecff349d0a6eab684ce682559f5cb1398716e5bf5288b9d77eaf3d5d9969b1d17bca70a9f633e95\",\n                    \"d3895a8bab3769a8d9bb524b6f824a0a99796ed2bf7ca6487cc524f8ea63ffb0b1f0bd29a194c250a88c5568be459519\",\n                    \"97fe22f0ecb1db616d51d741cbf9afe27ed45ded467f45227b0d837e142d59b49bc84400b513ec2e939624aa4957e181\",\n                    \"997e1cdb546c1050f44d642ab9a137349b66054e588a38e6700cc440eb7106e62951108f55e357e75af7ccb45d56b795\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.009196272514170732\",\n                \"stake\": 3.57215630727595091268e+25,\n                \"stake-per-key\": 5.9535938454599181878e+24,\n                \"validator\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"304254dd9e216f9014bdb75e7acdf17760b7b3a70bf2e7da751728f8ca66f3bad26c971c8775803d0d2a80bd84402e94\",\n                    \"67449764648f0ba4ba0f7d689278fb36a3f81d2c65432a9372ca75957aec3a456b35c89315fc9dff46e31cf257beac98\",\n                    \"7c07906423d06c8b4f3d30a1b139e29880cc7b1a39e150919308d8b321985740fc0a2af4b85cb17685442241cad34d88\",\n                    \"59d956935972502209c7c3ca629227cc13beb7b53f9be02bec04d35e7a2165144d0fca23293f60c3d15c3ab178e1a804\",\n                    \"33a3d789c0ae207be83019bc6211f8d0f4b2351d4227abc5b2c63a8bd079a19389936556f1cb750debc32b7b024e650c\",\n                    \"86bc72330c7698f2e439a3fdbd0c2ee4cdbbd1a5ec862bd57933e0fb228f8089548f94877b305a16d3e24610e8c4da18\",\n                    \"70c68e596625ec8804d6e6b43f8c1964adb674b5bf897582201714bfc309b6fa67915390ccf382f8cd58a4c851111388\",\n                    \"ab9098928a35c724dc2b11be0eacb6bc86a4613b069ff6396415f6a10e6265b710394d9077db7070945d45cec7fac484\",\n                    \"dc277e5aa25ebc0a9092f514964338e66048fd3c952a3652b8aa64c8dfbfd2024a43070cd07c6bcd5682375ec4c0b898\",\n                    \"382cb200d415c25b527e6fe2772c093de9af6fdecf596aa03a35026f2766f550b5a16be316aee427341214f1b7d3b00c\",\n                    \"385cd756a60348191576404ef8e60817225160c5806ed54c9997286b55e6526dc304c6f0f92084e31ecff8cde36b7d10\",\n                    \"1737cd597cd9aba25154b71ea5281aaec3c4f89920548a1af8eaff6e4f2cc1e60613bc3666ab5befed3a90b5c5ca5d10\",\n                    \"ddf5bfb62d7d7065634220828ffbbc4340a121c477e5a0ce558200f5216279be8b1788d78b427ea1a819fe37ad92d388\",\n                    \"a330d62e144606695d5fe66385a0120cecb3e5ab71cc33c0e1e4a034cc37e1156f12a34f3c91158638618589804ccc80\",\n                    \"375347947f93314b12b13ccfdc8b6f95651459e99b42deee0e3855ee94294c4f3bb5be3f87c034e859514e3f3dbca988\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.020702131104765602\",\n                \"stake\": 8.04143723296466507938e+25,\n                \"stake-per-key\": 5.360958155309776719586666e+24,\n                \"validator\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"a4d205f3a6e953483d49ccb28bab7955d188514bf0c12a0e8631892acee6a290c32e383c6f1a69a418ba9b18156bb489\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574689165390\",\n                \"stake\": 1.0001e+22,\n                \"stake-per-key\": 1.0001e+22,\n                \"validator\": \"one1y9tekahx8jmmm4sat5hr56mfqmlne65z0whsx0\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"3a01558d3a4c1d873ca25456e6cefb68d50589b1eeac5b51e4353e932b826462fa085a61207ab618698d49723dc5d180\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002600176039440\",\n                \"stake\": 1.01e+22,\n                \"stake-per-key\": 1.01e+22,\n                \"validator\": \"one1qfpt5y3kuw8dnsd2d4lgjjzf849mfdzaxzum88\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"0a551033f14306b088545b07ee0f8919b6bbe41d1fe220dc37749b8fdc71ae01dc520f786c8dd3af4bc9cf1fc4b4168f\",\n                    \"9f9249854bacdd414da45d2934cdfbed122a12fc34d8722616ceaa4633112bcecadeabfc8610f95aabbe4af5014a520f\",\n                    \"960d35be94f9915fb5e6f9127726ea6bc1ace83e34923b0157328ad4e85cec2463b36d0e4950ec645ef2d03f01c7db93\",\n                    \"7d9b1e9fcf190e3f201fd7a7df3b86d669001063884152c3ef824859e25c9e45fa0b00f59d81c62b807ffca0f8f37c13\",\n                    \"651f1e3a45a54e2a046f9c038fbd21e990bc911169c16e4518f235fb28c7a36e83e7a70f3eedf2bcf83637973f63d291\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.006846438263511705\",\n                \"stake\": 2.6593978797054058333e+25,\n                \"stake-per-key\": 5.3187957594108116666e+24,\n                \"validator\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"1e09f6ede6b7cca5d2c53a2b6de6ea70a8ca1b4d2fbbeb8758c599afd74cfa8964842de85b7b783b7cc86fb6ccb11312\",\n                    \"3db51e1ab47e33b2eea18327a19ab3ce4e0496636d88c16d08b2e78f6e4d161a5a75e117fd696353ef4be9f67f0e0a96\",\n                    \"42fa89ee6e6296133ac05bbfd8c95976540ef369683864f0aaa3c7f0f5390046d077a3f4156e51654ba8c14234654c12\",\n                    \"4e0f36a24c1df21024587a4ece5b1c57ed20d636f9da0146f875260205bf20eb324763cbda6d1aa70d46baf5d4886a96\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.006391256539034705\",\n                \"stake\": 2.48258925800115e+25,\n                \"stake-per-key\": 6.206473145002875e+24,\n                \"validator\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"5ac4a9cbf32e9274af4601e95fe1e2d78b96abbfbbebcf1e8c436386363a537a3ef3bbaa9de16d7342285e78aa0e570e\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000004119090755548\",\n                \"stake\": 1.6e+22,\n                \"stake-per-key\": 1.6e+22,\n                \"validator\": \"one1663k3c5emyy8fs6ddehw4j9m7av8wwphk4f7kp\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"21b7864ecdf474b89736757ef8db460511dc00f528e5daeb8c44f49d32d0eae0958ada5530c0cae77df34d5edf358491\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one17qpwyvyf9lscsy7e7yvcrqzsgrc8f0y03jkv6v\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"77b4edba0422fd50576782828227cafaca6d0a7d4a333ca58b2f148142b682aee7cb16547d4f8033644288580362b188\",\n                    \"27172b5ac7b5382ab6b3ba3fa39f6904c6b65a72fc4a640b1caf21237e10b545db003ff9a249c8bf135caabfb4a48c90\",\n                    \"b8574b3a38b89d69087d63e3ca03418f94123b7358ae142234379e547b2138083cffe942d4ccaac34522825648e49e90\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004893994703935574\",\n                \"stake\": 1.901e+25,\n                \"stake-per-key\": 6.336666666666666666666666e+24,\n                \"validator\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"a48c5f98e7060f9c2cd0e95efa6047ce20771ce99041466afc3e417c0c9aa22ad072af95418529e9406fc590c55f0219\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001576911833836402\",\n                \"stake\": 6.1252812425652e+24,\n                \"stake-per-key\": 6.1252812425652e+24,\n                \"validator\": \"one1t3tex27l80cs4eltq5t7wymcxwwct6xxuyf7w4\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"847ba7e5422187c2c0e594efa31840d117641d9a156ffc076d9194ab71f7ce95b59f2c00a822312da60f39f2d6437583\",\n                    \"a47dfdc18f6118de254649ef09c356372eb8b34939c10e8f32cbe17363d01fa7694f0ca409de478c21233b3402f0638f\",\n                    \"9d5f3a3464b1cd835417837400af8b31bdd9e47de11cb131c4f7024a52df8329074b11d54296d8ba26d57fe7b0bf9197\",\n                    \"fa39249e9fdc2c7d2f05134ae3767ad2422b6796b56c0e1e1b64a170d5ffa90778736a403732c37e701cc6306d4a0e97\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.005670964257995437\",\n                \"stake\": 2.20280235403198e+25,\n                \"stake-per-key\": 5.50700588507995e+24,\n                \"validator\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"861e2d7cb713051e9a2ef95479e9da5be4d192609cb7af95737187abb0cd327aa70cec44ac26dc6844f231ebcbb06081\",\n                    \"d4e9a9e708070791c0f9cac4b91cc3c60b6a97cbc38b36b1778d74d7266cad68731f36a471359bd513e9b77e76a28c91\",\n                    \"2561bd527a78d0fce8913e83f126e9fb21d1fb5a9f2df85304d03cd3c02fd4c1bd96c52dc8e47fd85dbc09b6022d4c05\",\n                    \"3d95117eff84aa5e20b50b0bc9f7321e19dbb991d45396a227711ee9ab55aa7e2057216516c3612b6a9444118f356199\",\n                    \"007282a93589fa2522e3e9c659ebd1629ef6fe98921d888414818fe88c3043aaf1619a8960edcdca48928c8fce51ff88\",\n                    \"a3ea8b3d50a96ee130d7bc213450018d2ce2bc61380d93c249cc0265ebdb6abf88f79589c524650b243b3cc641669b04\",\n                    \"8bab9efc3a1468735d9cdbc526fd3032b9c335a9716a2fdda001616950464cc96def3b8f41262143bc53f5b2fb34f880\",\n                    \"f82ed7e0ba50226342e714de452dbf9404702d670ed08b43d022acf00ad3dee18e5ff8961bafe4692de5e220d7694704\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.013739829374710480\",\n                \"stake\": 5.3370339e+25,\n                \"stake-per-key\": 6.671292375e+24,\n                \"validator\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"a6b846395cbc256c8ff1e5298fe603acdd5bd50ca1c45564a7a46cfa977c2710d51730c9fefdfc47b12016559180fd91\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002957764605656\",\n                \"stake\": 1.1489e+22,\n                \"stake-per-key\": 1.1489e+22,\n                \"validator\": \"one10vrseld7tdvqqt3nwg385j2m2w3f7s9h538s56\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"ab5fa18cfe0e59bcafaf2cbcdecd009b62d77c2b67535fc143714b11ff544f793b0b700e45856e7b1633e380f7dcfa99\",\n                    \"6791ed00d62bb5b90014dcb2a6852fd4f1a6763dc5d28e822da8371c4168eaf64b627ef96d6cefd544bea24ba56b4915\",\n                    \"f41c4e124f7d78ca0c6205f2ab45fa0d5d96944623c1c376cf86aab07ca1b4b14238121d0850a951c74907d23c25af05\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004441557539558981\",\n                \"stake\": 1.7252574621529e+25,\n                \"stake-per-key\": 5.750858207176333333333333e+24,\n                \"validator\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"d7b8986f7ecc113e69f899453748fb7a9bd785275cbb942c2addc0023fdd84c1145dd87b80c9cc8d85580458da1f378c\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one15r4audua3d7wz2gl8yy6gslnh78kr3waqdtxe0\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"c0cf1af7bb162b8b9c4e6496cdbfffadcfdc11ee98235637624b9b338c9fb15853961ed163da9677df2e1a1c8a977299\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001944180116240239\",\n                \"stake\": 7.5518806712246666666e+24,\n                \"stake-per-key\": 7.5518806712246666666e+24,\n                \"validator\": \"one138p2807r9ywy9ux82kk3pc0z9mff65ystv3hpg\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"a17f31b2b9b237c308e0a602ccb28f51d15726a5bf98725a60e08444cb18561731a452d57baa64c70e82657837b24584\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002878214665439\",\n                \"stake\": 1.118e+22,\n                \"stake-per-key\": 1.118e+22,\n                \"validator\": \"one16xwec874npwmm5shavyvjmhcg5u902ak2ad4vn\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"519077d77b90832e1dabb2caae5e5f7a22ef908bc205470fd653569b46bf4cbe99ecc173eadf6354474983a0cb55f586\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000017763252651313\",\n                \"stake\": 6.89987328e+22,\n                \"stake-per-key\": 6.89987328e+22,\n                \"validator\": \"one1cjnk69h4mds2k2wxk0t7x4ay4rv46zzkzhs484\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"929e53d4ed2efcf5c10e815631ed4da3a66e03c19f8c5b857ef583740e3d062692c426cd35f88a161c12334f5c952581\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000014448122312983\",\n                \"stake\": 5.6121598364e+22,\n                \"stake-per-key\": 5.6121598364e+22,\n                \"validator\": \"one1dzqeetfpyp02evw00mag4nnhlqvu92wr9esnq3\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"a20a210ce0335923d42c851ab04b30daf30d0373b603f480e2c3de3433b4c264efa3dbda103a100c2369a57f8c622203\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000012872158611088\",\n                \"stake\": 5e+22,\n                \"stake-per-key\": 5e+22,\n                \"validator\": \"one1hrcm8pesmwutea4cxa8690x2jdzfjx87sfj39k\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"e5816e0e26ed991d9b0de0f3798fa8bc5564df8d3ec3d56b1e092f507b7940672960a4c80320ea852f54d46aa0b45d8d\",\n                    \"8e253c9e60700228faf3c38a64095a86b1404cd8741d920d5204efbc811b5201b63a48238ae247dbe7ce86961e57060d\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002600176039440\",\n                \"stake\": 1.01e+22,\n                \"stake-per-key\": 5.05e+21,\n                \"validator\": \"one1ktksx4t8t6grdllrf8vv78pj8pc6fwggvjhqzq\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"53be1c32403da5a866ed6122655ff70b938c511d0eb340309baa414f98fbad61f6b232ca10ad792d01e4c8fcd5b15388\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001931630843691241\",\n                \"stake\": 7.50313487447e+24,\n                \"stake-per-key\": 7.50313487447e+24,\n                \"validator\": \"one1xrksyam05h78f47l70rtjsk5njy8u9f0ty995h\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"0c82ccb9168b017166e838d00b1f6e3f6fd2a2f406b2b490e413f47dcd0bff4c2936af025f29222497b751311c999c04\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001496025166268813\",\n                \"stake\": 5.8110889224911e+24,\n                \"stake-per-key\": 5.8110889224911e+24,\n                \"validator\": \"one1ttf4e0tvnuqymuyuzy7clu7gy6za37y326m299\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"23252207c03fe2a5ac0f5fa587583bb37dd9f232275b0156df85bd2aa48a2033972e7847dac68224d064569fbf3c040a\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000003346761238917\",\n                \"stake\": 1.3000000000133333e+22,\n                \"stake-per-key\": 1.3000000000133333e+22,\n                \"validator\": \"one1hwe68yprkhp5sqq5u7sm9uqu8jxz87fd7ffex7\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"5e30eacccec0a503b8df9ffe97df69e82c2137f83ada86e62e11cc79a931ea99d64565799b83c498bf3c775c990fb40c\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001398163501006235\",\n                \"stake\": 5.4309597296365229787e+24,\n                \"stake-per-key\": 5.4309597296365229787e+24,\n                \"validator\": \"one15mf5amj7nc8c9zpp0e2wr48em0r2vm02k9m8h2\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"8808e5df6acc5df3676529e144d838cc81f250519e1f7f092710ee62e0eeb4ad9b614f1d59cccec06ff1da00aa01ae81\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000026026732382103\",\n                \"stake\": 1.01097e+23,\n                \"stake-per-key\": 1.01097e+23,\n                \"validator\": \"one18y79f5assjyw45n7z6gp9kj6dwrct4qu5v0tyr\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"056f26c7d3cfcb67a696918196a696ec1b77a6cccca0b5ceabd7e974a52cf642ab2d4fa57f63d1850d689f3772d1980f\",\n                    \"1d58c7643cbed3008def6729e3eb6c1e350a3034589c6086d616c2ec34ec44f77069df41f8db92203328ce4d4184d10b\",\n                    \"36e590fb7218eff19874c8c9b9cdde42f93ae823780b031370d2fa711f544ae00ec8358fb9e715a52e222c3e9e05b787\",\n                    \"51340ad73311fe90e6e19b9550d75d876e70ecc8fc2c12974f8da362793fa03f808984d79b13f93164f19a4a8f53910b\",\n                    \"efbaa34fa66af2525ae1c26b2db7663a96a7b4d67bd2324494d144dec8475ec7c532f36ef770acf5aabf239f01052207\",\n                    \"22efab66186b73cf535e8fe03c8ef339facb91c8ba65624d91957024cdd90e1e073d5793f0ea17f15d7a9c00945a0d0d\",\n                    \"31dae09c17577e345c4bf205f220807e2f6a0f680e49d00d8fd9b9ef04034b1ad5249fd890fb0f67fd1adedb85a3420d\",\n                    \"8c8698dc1ac6697e0bfd29eb3040a992c8eaf9c2ba60559731309e3b2fa472b3948752e1fdc09219d113700aea63df95\",\n                    \"c065cc740976c58af76994c01d91d4c3135897004f86a4178769fd107145ecd27b7ccdb58f9317156a3fd37b9b5dfa01\",\n                    \"efad1c33a977ab6587fe2b6023a241a4d239128c5d8604e548acb8720d813009a42b0c06f849a9700c7ce84abe11fe02\",\n                    \"ffe60855e10c485185573d018ea635efee2887faaf7f598ce703a44068d23b310fd549a1dd053932704845739a1f6c8e\",\n                    \"bf8977539a2ad43d42ca73c46e4a363f60dadcbdccf1de105dd3fe06e32f8b95e0fa1c371ca88d96f515a320b7a8598a\",\n                    \"960e0536729697031f7656f05a13b7eca9d5b6cbcff0bca3e7240967477586da5c83f0d3a3c3ad00759227e5905d320a\",\n                    \"6de75322ebfaa0954863ac66047fa39bf03a8af92be500a18c6b2610625e2b122bf46e85470cfbf6cb4e8803747ef20a\",\n                    \"653b5e6c6b33d23b243385ca2b247ed8a9bfc83b71a4f3959d914d7f105f2eed4da6dcabd72f94682889856a9ffb640a\",\n                    \"2cf79ace5a9a85483d69f19ebe92c1fed7509fcf528250fd162315586a97149b67159ce4a4332d4dbb72a4c4cdb47482\",\n                    \"35d2d5d9f93c2260e976215313f3221cac528415e61c3c231a1e5e6219f8c6bf65fe482bf1bcb53f013dc92329d51792\",\n                    \"519a4a3518b7c5e677586f4294b2af46f18b791f574fa11386f022c1c40bd5c22cb43545dd768fd9822bb91c5c1a7b87\",\n                    \"59802bbf83b191bac69577dd8e85eed62b195702c41401499fe5a24025a45855b60108432858c8a79a9c243ffb36a887\",\n                    \"5c2ec551f85045ca67864eb9413ada94cee75bd3bf2b27eb7b53303fdb67f95a7695dad48087fb541955209a3c587a0b\",\n                    \"62e25aeaf7a575bc33507d2d0807218b9cad622c06b2887d7d9645c8341a83dd49f1868169672004df2db5b29fd0e707\",\n                    \"aaa8db05503a6578916af15f5c55e9c1f541dbf38979e6d5f6be6c2502dba836bedcbd14b1e11e241302a8ae0bfe530f\",\n                    \"ad53fbe4f397ec9536d2b859bcb4e728f5ad6df3a7cba92f7d611c6bf894b0a89adfc8aaf1fa9694a0719782c5fdbe0f\",\n                    \"f846837dfb601eaf18ee7760e5bc1360663cdbef04f6e713bcc5aacede14afa51fd55793c603f132a7c652ecbf76d707\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.035708985872131377\",\n                \"stake\": 1.387062844353567850022e+26,\n                \"stake-per-key\": 5.779428518139866041758333e+24,\n                \"validator\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"32229dbb9438e8774646c770750cf94daf552af6d8fe3813986c8d58b0f373a068ae88b847da4f7a346ba10647d9100a\",\n                    \"788f44dd8dfeaca1b11d7acc6eddecd07240f6fff3076ea6eeb22f21503f4eefc659669c4fe218abaf7c2824c777cc06\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002600176039440\",\n                \"stake\": 1.01e+22,\n                \"stake-per-key\": 5.05e+21,\n                \"validator\": \"one1djdj7g588xs4605laaxjxfrk0kuler2s6uasw6\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"f127a9935337242f776bc2c20a30207d4170d07dd7a40ffb131f3de2f09ca7e32a4165863d5ae57a9e352e326517f889\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one122u7pnfsgk542ht3uankt270w3zcjzg35jccyp\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"2826b297f1c212b89e510d7fafd7979de781116b44277e3c879286088be7b4d26cf4e4d439d99ff85944d9e0266c528a\",\n                    \"298a240c89c51bb025d613d240c7d9ac7f25efce5e78dcf709cee013b67fbb6703a961d7a5e8c561560fcb07218baf8e\",\n                    \"8133ed48cc607ccfcb890d8780dc8610b038a0e0e09c05f8f61981cc53486ea6672293cb9c249ac86fd2aa50bdc19b12\",\n                    \"028e33a20bdb4c3badb5b32107899b3e6abef57af2f9d330e47c1318c439938164fb9c4d6eda4c133089648e33400987\",\n                    \"8778aef9a71ae1cac71a8c86e07df5e0764d0b1287e03f92cbe0bb4ba4fa278ee8584d33048e69425dd6b7d732f9f887\",\n                    \"16c76b244e7cac2017f505234579991d68e40f6be0989e501da98e6adc271526a69b4ffaf232b1e137a85ade615e740b\",\n                    \"74a4274fa9f794536921cb84ef4c6644a278a1bb8778da6c6c694aac1c12bc618a78c2eab321662b1a5976339c20c402\",\n                    \"949e0e2fa9643fac1ddfe01c91254ca2e53cd29aa8a37dbf52df804a02a6f58bd34f9f7b2f7c84eeece714715459df83\",\n                    \"5b13791fa1787deaefb5edaa4c614865660f041ce6f99017bf26b28fe6734b564fcf3f1827706dd11a729fbf58a8780a\",\n                    \"55d36ffc75e6be957415dcfb8bdf3235f6e95167d644bb6d50ddfcc868594f852b7ef520140a5d44f3a0723a16d0d417\",\n                    \"3dd79d723b8aac2182660a12cc173dd76973c1f6c459ce4f3b797cfa0d9114924f12cd211d36d7356318c75026afbd13\",\n                    \"9b413252ce0cf2f289c1838b3e35a4b70ec6ef659bd23c606b8e93be3c2e4e065400310cfdbb299ea65bd357c7c9da0f\",\n                    \"a60da09df9a6aba6754d2a2541ee41274d00e991ef1b14d7d6d889227a5a437d0b9f201f155e0e1ed535770b1f8f2a83\",\n                    \"7e2ac7bea191b33fd9efe9326e727c4a0c357cc7e0019a41085cc5cf2d01aae6c2ef98746185aa99ee2837d2d079638f\",\n                    \"e1c465d5d4b654b6d9a4244fe62dc417adbffb1536c6adc179d0d60ab584869ca5c653175ffebd9dda8c374a1a25c90e\",\n                    \"70a36816c4d0c0b97f352378cc22ff7e0d337322c89962867b5017cb0565197899cc0d4b151985d7ab25e047d8563502\",\n                    \"c86a5171077eed06fd29e5add5561e649f60af1455130d15fecdd2784ba7ed87fb68c4e72ef01f4f64c0c4e51b3e3c86\",\n                    \"bcbe661d60d81334dcc30881f18ff6f4c64f8071f0f21d62d99b992ed28d6051aea58c691cbfaee674c98355c1de5182\",\n                    \"16e3d373df7e5c01c2dd21be40cc04e5036b259cc3f28844659501d06e46b1f223891c7eb1f6c2eb41eec8eb606dd604\",\n                    \"1dfd33e1ba1f48640d64bd0a878b21840758f44c6d5845d9e0e804997d3207aa2c40d04b2eee3dd03cdd7a6453395508\",\n                    \"3c9ff839972f68a9179d90211d086252ac66f04d975934a6e91e45f805ce746b8b59156bd79cfac414c9a77017c11680\",\n                    \"4d4aa3f120cc3cf27edac2a29029dd640e712f92e47ee751a20839896a0ff5bb185c33d7c832961c21df070ac2d85314\",\n                    \"ce72a574a4ad4b116314c82162250211476066e1403f65f83baac852c378650d4796fb34c39a1012a632ff5f7f508b90\",\n                    \"715f484e66a6c6e4597dacea5fedbb318414c73c6e82b092a7d3399f5410a5b1afd5ebff47ea58e08a0012fe6eece98c\",\n                    \"43ad254f6cbec380f5f99df0369f96fb6ba7c7518d89241939faf6d9d69c5490afeef05b421fffbf926b479390fa0b90\",\n                    \"a7d5341af7a9cb69bcc366a41a98d0eeb3e9bc68e2a73d9e3799825738bdfd6b183d0bbbdf4448d6bf064b6e0e16f218\",\n                    \"6d1f4132b9beab5ad84b9038bcbf0ab9a6d23ca739f1bdaf8d9020fec83b7eaa741b78b66c00a09ce7a7c906bc18310c\",\n                    \"61756a1a3f55ac33cf86a884ddc0795a91ecb05ee4486b89da20c7c0ecd8977a7225a789b91e02d52ebed33ddbc31f94\",\n                    \"fcd49de42863a6059a8a60a1565e4616a7933a5f918b8eac986da5594fa3b0f0177e66f01b5f54c453c4adfda836c913\",\n                    \"d4eaeaaff529c66ded783947df40503622ea653bbc3bcf7d2f6165550b76a053842a18acec09a230babb3579f6444683\",\n                    \"00b6377e7d3eb5c8d7e88fcb82754f45c89e21bc4d65ddf8d68b9d9646f779bcc010318a5f943d57f8cd0e06629e320d\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.043332437265961073\",\n                \"stake\": 1.683184560382728272076e+26,\n                \"stake-per-key\": 5.429627614137833135729032e+24,\n                \"validator\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"47ab7b7cbbc5b95ddab000c5d2643aaf9f916d776bd4adb05e509add43d54579f69e3e5898df5dd15a4332112c1b3d87\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one1c6m2w8t0p3de3cjleu2t2duvspas6366jtf8da\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"014d802636d36a50a687512b4f81f4d93324518c8099884b90e5467fa3d7f7fd52ed2e65892db70edf6df4a30530a78e\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.003999903577320651\",\n                \"stake\": 1.5537035000000799999e+25,\n                \"stake-per-key\": 1.5537035000000799999e+25,\n                \"validator\": \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"d00730a46c85c6516a9e9093f29a7caadbd7abfd5896487ad9bd4664bd9e4a1a8509e740629a2f55b42aff7d93dadc0f\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one1ypmrh75zsqpav6q0hhpgm3p46jykkaclhp0ydl\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"1efe44ddb21ca28cf2d15e357a0ea292e57bea000981f2f467163030cf70549412c0529a3cf774d9eced7e61526ff402\",\n                    \"202770994a16d8bf6ed5d8c11985302352e5a9739588236c0d4d1a2a99c2dc97a74542b7cd30a7f6515b6e36a44f8c86\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.002978293940461534\",\n                \"stake\": 1.15687431706135932215e+25,\n                \"stake-per-key\": 5.78437158530679661075e+24,\n                \"validator\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"879230eecfe6297b0bd6d2f2dbf23c367b54bfe1ce2fd3591a00820d06c83ee31da6c70560251955ad5e542e16aac38a\",\n                    \"ee7f6c0b27b74b5963f10cf0a8ed41dd08df9d415cc3ce829aba9eb73c8fa47a167ffa996eece94c759c4c8014d1900a\",\n                    \"32ac4f9e3fdd48b1f98266624e6dc91ffe66119ccfbeb87ff5c0c8ea37b66eedadc88e85aefd6ac8e70a767e52c04502\",\n                    \"8ab17ea9edb91b841a25475e1ca4d4ae57af9f01586ab870895b1be0560bcae7b3629a28d6770f431db3461ca327e806\",\n                    \"114c651af75381bca51c11c613a553ab622d1708001bb0f3e56d7f69009f5a9c611dd1e2576e345802766b064c3cea03\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.006790301600894069\",\n                \"stake\": 2.6375924217734000756e+25,\n                \"stake-per-key\": 5.2751848435468001512e+24,\n                \"validator\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"dfe6a6381ab0c2f0c37a9acf5952f22c1a74f34c75b21b1354a53d215de7c55abf365184cc51f0e63891f73aa53bdb10\",\n                    \"7be5a3cccaf391b49424f48a538f0375c403ff85995f62d74c7c40149a57954227545db8f4f07ccd9584348d9e232194\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.002857732102078279\",\n                \"stake\": 1.11004385061597e+25,\n                \"stake-per-key\": 5.55021925307985e+24,\n                \"validator\": \"one1mx5mz8fh0v27kvjwyujh4s697z026yexqp9fyu\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"a52bbb39d1fcac96f538ce3bbd75537134720ebb98b8076b2b9eb3b0a47de2e81d666fd930fabeac6c015b39d427de80\",\n                    \"e8b723de3c01f2b62942321c32293ba3498e6c4dbc4e16ef7ea503df107a8c0301375a0d601c5306b062ddba3628ca88\",\n                    \"f963fd2b67f315843c01d8f91c9c34132fcba3476169a5766d6583c93cb1262673ba3cb6acd3d089e31736fdc1537104\",\n                    \"ed8aec2b23c22fbefd20a8dc53f2ce38d24c6cca03834ac55d0ee39b75cad5a323b8aab9be7b2a3615b820d64fa3be04\",\n                    \"496f3bf9c80a4e1ce0525e2854435139486e77cbb0abd280af4389c0535a0cc5f3a6c9be0e6e498348c8224d3f918988\",\n                    \"29d31f3f888359f1a01011db65a0685b3e9d74a33a346fc7cd178cdb5384372f33a541c3c6526ff3e58ea5c11db9be14\",\n                    \"de0cb19717d7652a91d8678eed96ccdde9f97a10b134df6e21dc849c20da22b1d300ff5d0b10bd2c2b2be92f39612884\",\n                    \"5f0645fe0992c70793693d261b3bb9ba32cd3d64cbb70273e2395f85f0d953c40e1529dc40358f8cc1c25ccf8b1b8090\",\n                    \"82585333306c11090db50c2dc3a81d990ed7965d951e34574c6d4f8bf6ec8eb90cc0ea9ed283606544fb9bef9da66984\",\n                    \"b7e3288b3b06d3cf7a42cadd23f81e57c23e40ccb0dd31e3fe02685a49070dbe37634b1cfc1567c427cdaf5cd2f42590\",\n                    \"f4d3a519e90e01812ae51eb25d2cf6acbcfc1a7b0fd2c85816876b49d89649549f20a3c93b5e5f0d34cd0d4b7039dc14\",\n                    \"d0df50839455dfb62abf044123c4db6fb697ed44e68d843deafb8e549a554489807d8cc379f9ddd77134e45e48c28814\",\n                    \"d88bed02d72629ace3ca2c7faf7f53be1fc0bb8948df7eabd1f79ec2124b82023fe46569a8f19f476f2c095b46aeea18\",\n                    \"70a9da95478349f15537174471a202454f62e038b42e2cfe668a2c09c0a947dc157fc5637704e4bd4ced329f9b257c08\",\n                    \"030d960525fa382549ec9ce33f31018f902368bc60ad74d9c62ee0e870f6cc78514ed61c46d107db4f3324b6a5d6680c\",\n                    \"6446b0305715cea4f6615e2a685a7489f36e886acd56e9a889e17e3a0f963d163208ee3c8e8f348b2ea12210b0803090\",\n                    \"330d5bdd896ed7c08f39475881d96fd21baf4a4b81abb2d2c8009e33ffec56398166a2b5e2c814d8cb0c18c792b06e84\",\n                    \"6bfe56ba0a591b8f1001b201571561e0cf9e682bec8f8a6d8ee2c68ac7daf56bfa40810f1f00855c38d10a0127f46104\",\n                    \"7f6caea9935bea624504e0b56e530f609752d476bcaeef5bf755a52b95f1193baeeadfad8db27f41546155902e967304\",\n                    \"a2a26aec4321e583695ad776e4362f751bbacc73596aa95a1e0d1fe728f9a4c4287fc53e32b103d6000be6d4f62aaf0c\",\n                    \"ea0ad7e0c1548ecf714619900de11947e46018b965dbb23a4d8b6232b9e8bfa6c460e2e383a937e1cee7a8ee47873498\",\n                    \"8e70e202d35dc53372d24a69571852f8aeab67d7f0cf614272e6d94e42da02313fb9505a12d70f60a8b9b9b6a098cf84\",\n                    \"c90d5c4253e7ca83fa837c5b065227fe06629d6c1fdb6ab1b68c2afd7454f1bccd24ba4779431ab1fa8a77ddd739d288\",\n                    \"630a2b02aa7f83481f1c83c28b6a9b177401b457796fd63b1d1c53c81310b8f20174e17683aef21dd8a65d34ec026914\",\n                    \"acc845bf1aa0d93a505154776e11b01321e6f0d2606636af3214d8143400407c64c54b3be0648015a3748d63e313c20c\",\n                    \"112780d090bdf00953d5d3e7c898a69608654b651c518a3bb891fb98982c70fbcb73b0389dae96382c0c321c7c3efd04\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.035010906049340296\",\n                \"stake\": 1.35994696410836285714e+26,\n                \"stake-per-key\": 5.230565246570626373615384e+24,\n                \"validator\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"8adf7db7a7e82fffe5ddceb3dc3798fe3129665391ee195cc6413851a805b43351dffcd9311397a2b13ca1a50bf6c18d\",\n                    \"7a4644791083742c77bde9197ffed2bf693a8277edf366a8f9e5bd36f9c43b98c7c1ba0f6a3ff397ee0278398d7dcc09\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004024975213741505\",\n                \"stake\": 1.56344220707259e+25,\n                \"stake-per-key\": 7.81721103536295e+24,\n                \"validator\": \"one1yq84hen4gunn6d5q7wmgptk45z5pum9x4lg3g7\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"5d370567569bc29634ed18e40b875d61afba44a9474bd5d1f7031383a7fd22e28ba2375aeab785b7c8e8a1221e537b87\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000095253973722050\",\n                \"stake\": 3.7e+23,\n                \"stake-per-key\": 3.7e+23,\n                \"validator\": \"one1xx7d6ldrtla7dw7yawg4rq05ws05qrkhxxfqaa\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"6799f45109f233afb560d039a67a87e2a4eb08a98394642877c2e94e72661946b78309b2baa3be1c7aae62a554946592\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002597086721373\",\n                \"stake\": 1.0088e+22,\n                \"stake-per-key\": 1.0088e+22,\n                \"validator\": \"one1qt2j27luygxt8qea95kx8wqst8cmf9f88f9dmv\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"149b64db1423d6ff7ff8e192ae39cc836ae06bb8b8fc45c1aba84dd87329756ea0041bfb62535d082312a6fcca988b87\",\n                    \"1f3ac5111ed5768a2dd10ab5e600d414ff8f27f6305280f959f0eff06727b3436a416223eb4676ce5ed4710d7539900b\",\n                    \"b300c9649d2ac7c7669543fe9bfa9b52afd0853d32928cbee765647a94db5a11b68a6d8c71bd4ba0e476fcae968d3e13\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004252041869566957\",\n                \"stake\": 1.6516428976816466666e+25,\n                \"stake-per-key\": 5.505476325605488888666666e+24,\n                \"validator\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"7ec92621a6cf99e7cf236f9c218a6fc6120696d1dfe8687cfbf5b0d1a0b7785a9c6e7633b0829078d77ceb00b7d8d109\",\n                    \"ae5a7f0981b71b588df866bbb7457c42549824f8688743038c7c0c8a5a181be0747373d690989c09265d7b4802a6d30d\",\n                    \"f1558e3fff2d89c37acec3d055bf0131c864fb222574bef27ca0af13dd3fd73173d8e818d842b117f5c6d5bcd545250d\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004194328004145013\",\n                \"stake\": 1.6292247986022e+25,\n                \"stake-per-key\": 5.430749328674e+24,\n                \"validator\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"1cb9a7c2e86d645cf7f3246fcc29f90a2b47268f6258b910ff607872964086692d1debda832ae5f426e6eadbf30ecb80\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000003624575077249\",\n                \"stake\": 1.40791268456193306e+22,\n                \"stake-per-key\": 1.40791268456193306e+22,\n                \"validator\": \"one1akg6gqea74mmpjvd6qxlmd762v5gfy2e5r7xf2\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"a47ee576f88f1da466772850231342201976aea3d8030835d9a48be7a0df1bb3438538e99a0048ea8d1a5fd9ebd95010\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002885680517434\",\n                \"stake\": 1.1209e+22,\n                \"stake-per-key\": 1.1209e+22,\n                \"validator\": \"one15d0r6eqeg0gjvp4amfsfyqemrcrttsvah2wn06\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"9a20b469547092792b97a40c89ed7d97c85d68122edba547b0d378beb505764229ed007c4e09949edd7068954cf30219\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002703153308328\",\n                \"stake\": 1.05e+22,\n                \"stake-per-key\": 1.05e+22,\n                \"validator\": \"one17j706lucfndyf5celgpwru45cf0qn2yyqgsf6q\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"3dfff4e6883aaf4480b01d0fe9a497bd70eba670d9d520776e1ec58c722858f6a7db8ffd7cb24d990d08ecca5cd96019\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000010751003682921\",\n                \"stake\": 4.1760686796e+22,\n                \"stake-per-key\": 4.1760686796e+22,\n                \"validator\": \"one12vf96qsc6vytfgfkxwkl0vtjwume0p2wk54f8q\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"edb61007e99af30191098f2cd6f787e2f53fb595bf63fcb4d31a386e7070f7a4fdcefd3e896080a665dc19fecbafc306\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004802473656210774\",\n                \"stake\": 1.8654500000000133333e+25,\n                \"stake-per-key\": 1.8654500000000133333e+25,\n                \"validator\": \"one1tqa46jj9ut8zu20jm3kqv3f5fwkeq964t496mx\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"3d6a5d62a2277cd465c5c7ff4c3927a537903cf58ace18b9bf025351242043bb9ca76084d593993e05de0d079bf9e00e\",\n                    \"4ff1796bdb8253078163ab11f64186aee7230b682642b0e8eca4c935e7060223084406ce334474b451410131f0120f0a\",\n                    \"98ec8e7ba1a44bfaa9051c5dd528d528965ca1ad982a953cba2db9e5ece0eae2719a64dd99572ca6302df2dba3e84906\",\n                    \"a7f48834e984de758645585d0a481e32044c9f55bfe70119daa63a1605a1c31f66b9dac575ddb9271d7b85848ef6b812\",\n                    \"5928b3ae2a2b482b830f1030071a0871f81fb15b2d67ac656e141138b60679454cf9a559f9834d1ae226c8e11ca09786\",\n                    \"989fe76334a392542b04726a3f0088a285a6aa44c7868fbd60dd6b32fd9856f81dfacb2dc0fd4dcc2ad0699e2f3ae302\",\n                    \"ae4f6380cae8d0ec4d364a8d98bb34d12aca8a42ea9b28925abed150fc991d78a88dce948bb2e79798efe79ab7552516\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.010564838420146332\",\n                \"stake\": 4.1037555313551e+25,\n                \"stake-per-key\": 5.862507901935857142857142e+24,\n                \"validator\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"5ea59916acc602d26c10108eff536b3fb608ded4183f413a48b9b971cd01ccbb20c256f08cc61ea8c318ed1f1fb0bb05\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one14gq8ptec7dynfxyv8elejnsqxjle44kyvk780r\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"79c3bc95d27cbf05c1e1327726100701d1a9a4cb6002e3104e96578e7dbc2109b102ab0615a7b1b90725d4f40f92c715\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000003217782209600\",\n                \"stake\": 1.2499e+22,\n                \"stake-per-key\": 1.2499e+22,\n                \"validator\": \"one14l4lst4qnm9fecv38450upfjym00s4ejz9mgdc\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"96e3554792c65166817a57ec95adfe8381e8e5259ef2c915e204f75054b881ec51f986e5b8985f19ae58a8212f03df0c\",\n                    \"054641e4b708024aa3b658d9b72e0ae7aac63682d704a68ec6a6d8e5d0ec1a992ecc9a55baecefd1a2d6c4d172e11104\",\n                    \"5333b9aaa56247251b6679ec7fcd2da33833be86b3b1df7649db22ea595e5dadadcde7c1870cf0b19931412dfd5a8d80\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000102977268888702\",\n                \"stake\": 4e+23,\n                \"stake-per-key\": 1.33333333333333333333333e+23,\n                \"validator\": \"one1acmlg8cdmd7m4essvvud3jgadzqvfr709cslm2\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"f5b834229943b0e1d35513f32a46e8782d6e3d0fe7e9c939b2735608056c5fa475a4028c502944c3096b14513819f694\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one1qs0k4p2eau8yknt8epxx8dmx9r69y36qhlu9n9\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"79dae4be1cc8dfec7d85b0bc13f77cb8b2ee5d423f0bfc56e057998547d1b588edf7966a3365a9cfe1c9ea225d279590\",\n                    \"0bb30016dcbd8ef90e657c93f9babb26112f6554c960e7e9de7638788b1e50746e41261d8f3fb133f2278dd1f507b00c\",\n                    \"14c883aeebae0a438747353dd48cb5a9b6236052e0da04f364cb4f2ae499c2a8a9b6f0ff3af11225306890a7c2a87610\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004441817582580714\",\n                \"stake\": 1.7253584720260651947e+25,\n                \"stake-per-key\": 5.751194906753550649e+24,\n                \"validator\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"1948669a27b3500d2fd12b64ee2edf0f0e839d137cb58706c18bd90e9fb2f4dc0e9154f67696e5bf34fb8ef16fdbbd13\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000006269682430093\",\n                \"stake\": 2.43536559e+22,\n                \"stake-per-key\": 2.43536559e+22,\n                \"validator\": \"one10xkhggcc6qyldh4jxpc89pzl2pux7tmpvfe0ay\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"2b50b997607d55a6677a225d2923606a4982378bfbebfa7ac32ecc495b3309aff2d5b7cedd96c6c35c897c8641a28814\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002577006153940\",\n                \"stake\": 1.001e+22,\n                \"stake-per-key\": 1.001e+22,\n                \"validator\": \"one1l72m3c54jyr75vvakxau3zthghx76zrwaxa0me\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"1f8ab84a6a98cb00399aa14938c0ca3ffbf3b83555c21559254e5a96047394cda67d2c97037a2ae1d44d6c32b3666002\",\n                    \"356b0732524bdd3a2ac6f2a09aa29da9a71b73167f42c64e5ba2b3322d82f79ade31b56efe61782f25c354c1dec28f88\",\n                    \"6302b0a03e573ffc8fd6a51ee48f0d1d66d9320a67d40f807469bc6677d678510c8d72fda9cbb170e06a22efe2dc890a\",\n                    \"804f4659bbd2c3615bb749bdd363395c6ffea3a3bb95364073295585477c17ccb9fdc4b0fb0dc7620a90c71fc4056012\",\n                    \"a0301ee493e3a78516929e7a89b6779e828962b8516a4dd41b1374e21a179f00fa6c3b75387c357138d5d1eca6c2d312\",\n                    \"b1cf54323f6285c959ed261f58b0f452d93659ad7a62e1237c1a66c6ebfc3af6a11e76b1c20f26aa9ca86d01ca57270a\",\n                    \"2864f5f1cd848f2c7302faf6bdfc7456984365226c3d53c7cd63cd1dd316fee75a7ae48560ba5658ab47497b952eea99\",\n                    \"2992b4fa2d94d3ba42a43c6cafc0436c6bc33aeff346014e637af676c16f1514c8daa7ab5edf7b431acda813332f4505\",\n                    \"9f68854a0d27f0af2bfc447cd0cc724857ee90b10fe668e8bbadbbd81a6051f593813f15533004a76c2a0ccb25306911\",\n                    \"d72a260c8325571aa5cda49b44d7f5fefe86b22a2d93bcd2dd3958a2ccc391f38babcf9a8a4571517df3307c65378091\",\n                    \"c1cc6891a6234bc6a1c711def8a2d15942a4f6c17eb2758583c0bd37ed59df55d7aa0eb26479d3d5b9ef151a762db295\",\n                    \"b922a394cd8aeb54d35f4aa01ec21179a177f4109bb25a2db6ea3164a0276ec28c2dd047ac8ab7f6b35e96420019758e\",\n                    \"be166c82632ee7cd22cb4682b8865cc8755abe2b87f2d3e8e2c168b87fa357c8aa274f2b803b16f5ffe40d5b048c3d96\",\n                    \"f15d1c1e51c9a9051ebf663171ea304b533ef021b2b954d985d9d5b0bf6d237517936c0d4526e4d124b540995bf98c92\",\n                    \"0fb881ed1d2d8ba0f1ce94a1ff278d934bf2eb0817a3d1de9a41e944b35b2f56da676cf949219e1538554205705b2f86\",\n                    \"1c9c5b067ef960dec0ace80c2f56a630d63827b98d29c2a7a564d730e01d31f510802980bc5d291bcb7f4adb799e6f16\",\n                    \"1d920cb4c5c279dc179d39ddeb7d8d4e89f8a375e022a7d68c06e63a10ae460180854054b6c62ff4f99485aa355d0a8a\",\n                    \"6c6d16bd9e0e6be6bbaf86aaaa27c072dc1a641adc386f38e6f570479329324a511785d00183de360acf97958717ab86\",\n                    \"23e1fd371b179cd2abc2adac5a9b237ae61c812a3cb8b5e7169dc8841da0d8fadb815a16657f73c8af27256298a7138a\",\n                    \"52d655352e524c9e018c8fa56868d1650051dc3892a66572b23b516a0e79ce292dcad125ba61c17d4c69c28560f1ad06\",\n                    \"e85e14d13b584e3cf86e02c131de6a7868f46db418885e0cecff5d0898bafb9deea5824d68681581d8425907e1f08785\",\n                    \"ebc506a607d843521bc0362c74495ba7166894a7fd1d8bdb2858783b0655f4b542e54b46820ee504a97491a35a354e19\",\n                    \"fd77e1e3b2db565623d986fc29ae46a620d4e945455cf4ad2a383e30c61aa95c851fbf2f8e774f732dd654de5dc79f8d\",\n                    \"1d8eadb7653f29928ba01d8ddd83fef588019d1ee125d1ee9d4365c4077d089a7fe9018d32d6af0a86a75a8f452d6b05\",\n                    \"1fbbb30e639c6fcecf5fbc428f2aed8e3425a52ea6353221bc12d2a68de711f3c84788f2ba20e84d8f2f34fea043e519\",\n                    \"62937063063c3c8390c86fd406b3155158fe8ecf1e82b0116e1e27cd8fb021c61c39469658d212cb89168ada8ab89a08\",\n                    \"778fedb1699a7741eae03dbdcbc376c983b1a23aa9da2548c1706442acc3431747a957cf7aee2ae0fa028bc0c83a1684\",\n                    \"dfca9b0bb41a358023b75136f51882e2b5396806f4287a0200f772c2b7b8a5981730fbc7558b086da8217969518d3498\",\n                    \"adcfb3af32463919cb1a8d4cd8fde30d7d47442c771a978102f553ec90d84637d26a8b9a201c738dfa0353ebcccfaf18\",\n                    \"aeb4aafa7d532057357b88ed869a785595b004abef728e16ba082fad875637691f26b63e5f44b6f3195be9e6e96ca580\",\n                    \"bcdb69af84771f98edcba335e23748695242dc4c4116c24138766637837e7815dfbd2d30e8c4948eff193e62b2e51e80\",\n                    \"dd505fe02982a929949a5bca34eb9f98ea7201f473a71f189582161b89866880611a37bd27e0f66d5be4b4cfb7f48790\",\n                    \"15fe75b1df8039ad6d490f36b9207543971df8f645f33a1aac9e6b95b45880228a28a5c0760e56e090f1c501628f638c\",\n                    \"1e62c58154766ed812630c9a1db3f00f258bf42285d954bf049d36ba75c7c4ce58dcfbd0bfe50e1455d8f60313fbbb94\",\n                    \"30e724b5656353eaaadf869676c7068c50d85df2509970ba2ba9e20d6606ca56cc6753cef7a58997a3fd9c0217c3330c\",\n                    \"36dbe94650fcaa1814f0764c5fdc2810defade312a243424ff0053dd6a43cbf9b7907fb267d8848169f1351e8ec4318c\",\n                    \"679f3054719461eb4808fbc74e9129d557b3279c44b22aa52983bca178a99303f1e54aa9cdb8d2a78f86ec60586d8594\",\n                    \"86385311e94f22677c74aaf2c8a7da682301f2e071354e3f88dab16d3177f482b8e691716e77b9dfc6df851d94560e00\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.061019920155562132\",\n                \"stake\": 2.37022872383661348274877568e+26,\n                \"stake-per-key\": 6.237444010096351270391514e+24,\n                \"validator\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"858b2be4b3118e3cf0b6167a4f7b9283a5b0079006fbead0074b1444759ac5c281822c86265aadf4e4a9452765bf3009\",\n                    \"7335f5c266cc3d4223004af9cf13ad41bb69a7748359ea115e58ace47ccfae64a2e9d2e9e6e9e06a2f5c78465f8a2489\",\n                    \"fad66c30983f8a7e5bccd3ccd237e8443c36fb07f50abfd988793ada2270c1db717a33730a8865ba0da5132f6c15750d\",\n                    \"743fdce65c15a85da507535ceeeb2ddea98931dd6afa2d748e742622710d95094bb4c6157eb65dfc9c1c1d550d360911\",\n                    \"bff7b508f8c1ff32b633cb4585e7fe6fb468acca9b141a87e081fd1a1e6c4b55d1faecc726beb4c6a4b36d0daacb9c8e\",\n                    \"d0c5083510829c72bd84b46cf35c1daf98bb11af492ded14503e10f857e29e0589d45c2f05d678f73d95d115b865a816\",\n                    \"21a94c1f5d0913e0e0471e5b4d4e2b476a1070411e9d98944821ddf1c933bf63f9f4c876213fc33a07fefb93ff401316\",\n                    \"e2c5dd827855c9cf75c9ae81f6d98f4227bc2069f9d8a047852df975fad9ca36956540557b18b537d37d5b9e50729306\",\n                    \"0f0bd671199fb1b2ad42647cab032cb6edfd77c65a042fb8165aa2a31336373a514e8846b521b2ccf4ac3b9802341e0f\",\n                    \"a80cdcf67bb376bace4d031d86d80c99c5eaa280438c3af70cbb0d3bbb7dc7bf3438a9ecf028bdc6692b7f7ba89ec503\",\n                    \"b03e54fd1267d5b94ef63d755cd928517d3cf4719837014c37d120a7de2c5fbd6d87f9387e591810a35960e4963d7a83\",\n                    \"f772638b2125262f47fe20bd658508c1739c9c6d2be3dae9eb30670b6a04b09679bbdfabf88f1e134e1736538885a313\",\n                    \"c1e5df086ad98ada37ca3075125f91aac090ef13487551442d3692c326c6d85351d86f9953171bebe8d562142c5f6f17\",\n                    \"c47283b4bbb2cbf18c6ef0575f487c330841801cd756634c6b1444d4e9254d3e63c08cfc22d6d992ee1f82bb46a58087\",\n                    \"87cb22352223067db94c29e67917b4a0824e551c06b7baf9f15cf96a71ca58cae64c771b43cc222ba6d1a60a178cce93\",\n                    \"b9d80fa33835f8795b43046f393aa956f3eb010c908d5c23e5f42317bef40070f6deb9956f3f3717683b4116a797f603\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.023092898516078724\",\n                \"stake\": 8.9700955425561e+25,\n                \"stake-per-key\": 5.6063097140975625e+24,\n                \"validator\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"8fd42f4c128a790f11c89f44c8bab27cc47ac16f7186cb8d70ce1f692403502677da9f70e5a1f0dede60fcdaff477c83\",\n                    \"94253962d70e43ca53ecdd66d71a438dc10a0aa3b97e67ad608c214026b082713d757b6777bbefc32715172f55cb8c0f\",\n                    \"9483de51dd025c42877e979eff401d1c7cbcfe7865d414b144af3335d73a7839b4bcc74ac8ea5f82b0e286342318200f\",\n                    \"c4f38df0892305a1f5d17d22050ab2897e5063725ad2a7076b032861f1b666559a06af6c0737ebbadbc2f3b65fa5a385\",\n                    \"cb053feeacdb08786c04fd4b31e621a929f16fdebd6e2e8ea5687deb6cc756a07e511d8c46ce6cf9d86bee03f4d0aa91\",\n                    \"d587813837471e974a68fd764127da54e9828e387fdef6ea41e0e8118bbd3083b5cbed568007b99a1c583d470eb58001\",\n                    \"dc5a72979a6872697feedfb06185db787525db54ec52da51a4ee9be6f3be5d47befa4f4515ef0b5b1bee85f864bbf695\",\n                    \"e9af74da3a50f586467aac3282102450d7e10e7aa73e5f1fbeec7d89d9512a8047aacb68ab54e47da59b99bfef3ce491\",\n                    \"4a034d3423a8f70ec406315fa777f081201b28ef94d4b385b4aa4059a657eae806ee228c0d676c855d5fe17f51b71487\",\n                    \"4cbbf20d0c3bb8f4e2de88040f321bd94cb88c5ec427401993be0be5016fe22cd6543810b4737eb9dcf2739e922a8387\",\n                    \"a1f03291f3c358caa913e4c14f8b1eb7ff73176da03c9d57b76b9d84be48900a9e50e0626e72b2661571df67513a130f\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.016645022733029493\",\n                \"stake\": 6.4655133750029517462e+25,\n                \"stake-per-key\": 5.877739431820865223818181e+24,\n                \"validator\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"ff64e929ee6bf37983e13f495437665416c0f6e7862b56c0caa84f932ff48fe68c379e4d483e6088198d25023e949b87\",\n                    \"67d87257f4ca7bb59c189c5c0d06059054d0796024ec3684b8624cdeb1996628d1bb81a63e23f4cbeef622d70b77b987\",\n                    \"614e8d1344bff19f5e1a6e7886355beba087cdc0947d2b5ad1eec36caa18325e0585534dd20a37546bf11d44f1e31e13\",\n                    \"290746460c1101eec00d8d51138309e7767edab00cee8fd6b9a7d5389e77331ec139ef1a57ba79e704db4f60e8c22307\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.006488588994195656\",\n                \"stake\": 2.52039661343457e+25,\n                \"stake-per-key\": 6.300991533586425e+24,\n                \"validator\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"8ad9ee968aeeaec41d5b675e51d24f73354dc59d27812215f2f61cff685137d7e23a76e031aae5f3b992f1733c511908\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one10zn27a4vnywuufece29d4nwl8j78cz3r5cgupg\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"8518ed7c513fc710fdffe9d2929d9a4c7d242c1ee6edcd07402659a01bdb8f1133b42d01b4661dc46d2f633ad2063281\",\n                    \"044676e308214dd178c20ef48b332f70ab7cb4c0f6c489665dcdfcb73717b22ab8ef5806f0f81e01c8b3e63e10ab020d\",\n                    \"278993988a8c07ffac9d0244c59f8b8c7a3f003dcf2d91d11856df6d6aef44f5289aad2cadb863bf6493322de4e9c019\",\n                    \"29ed233600cfa276295a61f5161b6a3e9671c3ae711f8454ad2fa32fa4cc11aedd57a5c8ddf61e3070c154d38bea9e95\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.006425168863905132\",\n                \"stake\": 2.495762e+25,\n                \"stake-per-key\": 6.239405e+24,\n                \"validator\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"11a17e892e504eaf0a4f5fe5dd506b3893e5ed28ab9761bf3ef98e05ad8b812f73412a92dd1c487230ad13b314809a90\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000003655693045549\",\n                \"stake\": 1.42e+22,\n                \"stake-per-key\": 1.42e+22,\n                \"validator\": \"one1svmrvxwaqdtaueqkhsahst3ay669sugxlqnyyt\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"270770ae9b5b0f041e54579989f97300a556a5df40ed8cc93e49400b8609c9b7feba0f5696e1d2632ba0e0b972a85c06\",\n                    \"c0118989b68debda37f191ce46ec6473a3f3a4b9ef454b459d03af059b6fb180b82fc7fe622cb77e299e1a7a33c0f886\",\n                    \"97f4fe2ac8d22e53261e118dcfa42511e0dabacb45e19daf74a920320f4990011278c8a7bde278428beb984f8942470a\",\n                    \"f9f036489ddbabddc3ffa90d2490b7bf144b9df5e0c870b4057a0247255b2c106b27245d41557df905e083b686212716\",\n                    \"01a381a48ad4840510433cd65eae2191833c4f1abb50b8df8bb412c8ea2b3981b422da4baf50e1278df7741ca3e3b68e\",\n                    \"8bfc1e7554db8a9e177e9908a98321ea3b0e03c373d8d242dfba7435642eca4973340b40c12b15697bf9872f2ae17e0a\",\n                    \"d08a410da71e4803475e85da2df27e0e6f3c8be47124111dde467c816df5dd54ea7fcd2913cfee4c85b3d7df11de990e\",\n                    \"014aba5f2a6ff7e60a6b05eba5d2b8a8b862e3365bee6fef2f740328ce04a6f8d9effd4356c74f945dcf79feaa960996\",\n                    \"9e32a40615e85c1caaec6528435b354a569666e1f6c4b144698541e1e8c483db4cd547592b17d01c6a4ee36a6285370e\",\n                    \"0e6f1a87d949df686c7fa2c8e7768fe548f5954cd47ed4faa1d17d143b180d531a17832e45e015eb1fd27433c1b7e886\",\n                    \"f8500000c59d4967899d60d9e3533cfc039f3da912e7408101d58a2051a905775d0954bd12c94946b7c431316d14cd0a\",\n                    \"a041f6c328f0cc0da8b3e3e4f786e9b769eb1aefd4fac75e43f47ee4421e0d301d29162b4fa4d36ce3152d1b1efbc292\",\n                    \"490adcbda4dfceb740486a620ea2d52d57c544b9e3896f5cf522545f02fe0a915637b4ff3ec87497a9f7b92b8ddde10a\",\n                    \"8f467670e6a92df732d1bc81c3bd85dc472a82aca9dd02e8db1c69658f8093525e65f1587d817cb325e673e86d5faf92\",\n                    \"457fead0248f80dc8a63afe6bd5b464d2ac846192b7547a72cda0cb69ea485eb7ed31e75ccfeb64eb1a985210948e113\",\n                    \"51c513a867c026f966e4c1a46676b760029990755727caa0e68a260e59cf7128358bf7bb20a54261d0a7b2f786061e03\",\n                    \"f1ae282031413945047e6b52361b542ca1c565b6909bc40f4b924ea6ee7e77afbfb755faaf35f40dfe0ea649a926ac17\",\n                    \"101662ca51b09da1dafeef24844371e2c3e66daab77c07892439e137f0bab143da26361a6b18e665e974f619fd0ce397\",\n                    \"e1ff573a1291604950b6b7a6bfd5a7608f517224afd2b4afe50f2172f507dcf9081372b03de372d1fe05aa3f89866307\",\n                    \"b1a0a8631459f7988e7c5ab6bd326f5c60739735698892fd3531014710864890ca8ca9426c22c287186903238703c883\",\n                    \"be79b2d9fb4b9a56683d40ee445a6597332e298f0ff3f168cbf5c5acfc4a3ae73b20672517ea06ec9b8b9ee4fcf86203\",\n                    \"62b57cb99dab8121831d5ee3ce6c1a63ffe3b4f0ce75be53b2aec232317bb1ef8b647f8ff62d610000042e45ca99dc07\",\n                    \"cd3000f11dae857aeb5c36c9021bc5299549df4b74f783018e735817f4f5c170d54066b9f5b9de1dfb7aeebc606fcd8b\",\n                    \"3dacf918e9fd3d9d160722efb0f851c4da1f47f28566496ccf402719ba6b4bc435d9d52259e80674e71c78b622ea3283\",\n                    \"686dcfa82b4ea90d7578c7dd3ce806d112c14659335e0b780fcf2768da6e340b78e06156138e500e46f45dc7e18e2807\",\n                    \"230b046bdf38de5567efdda44d3577918e40b6624e8cb1e7512d25b692f1f8c8615799d6a384ca31dc998dc71dddc483\",\n                    \"a1c07365e8016aefe0ca4a820c281445d4d5e89bf68ce2b9e9f15de7b973364ac2b9e109464295c8a3d7e124629ae197\",\n                    \"4777ebcf87fd9516004f92c7f3fb94e3cb9111e6fb4da681d61d790ed0fbf10aa68aed5fd66d2714896edfb708fdf797\",\n                    \"38a45b90cb3ad2846fab846a8026e8b539f41b4aeac984ff32dbfbf1b857931027eb44e22ddc785f59d6c763941e008f\",\n                    \"6b2116f918043ef413d95771b56c2f2aec20062872ada45339ad612474acf1b6a2025c27d71d323e8512d0ff87725517\",\n                    \"27eb98e93936f76113b03e7191c6794621c5e72e6e39a553edf2314af293ca955e2370bbc87d7a911f69cdce55249016\",\n                    \"f6c38f1a9b256850069aaae5329446c50b72c0f0ffe76bc28cc8134afdd0b40d024a038454fc85409773a6ae2645b487\",\n                    \"0b1949442d1bd94f4b48499fd39b9ad218dc8a3bde8760fe61465565642948a13f54fff5ebdb6f8c4a0f492552eb5416\",\n                    \"e3debc5e712557d2143963dd8dbfc6ec607f4fc5683a87a4124b706cf76c7b40b8228e7770cd4e9923848c324bb4d20a\",\n                    \"0715a9c2e509c5c48ac7b3e93e97c667d575db56a4dc91920845766372026e83114d9c84f879925223f1115ff6bb638e\",\n                    \"39bccb23d3e59e3cc45b0bd96de484b2be838fbb27433a1306153d880f76c7907a80db982a4a589639b7fb41f6a9e782\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.057601679823581522\",\n                \"stake\": 2.237452223979153036362e+26,\n                \"stake-per-key\": 6.215145066608758434338888e+24,\n                \"validator\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"34434474f59a5dc5ff6e1569ea67bdf181b2e6a4771f1dd102b32791023be6e313938d31738fd2c12302ae7360a2c307\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001563468989987330\",\n                \"stake\": 6.0730645e+24,\n                \"stake-per-key\": 6.0730645e+24,\n                \"validator\": \"one180767nt5qzycwl4rzhjaf23kmv30a9uvmlj8vs\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"68106c13cbbd55100fb2c471f48dab9f306d7f10c1e811019ef013dda1113fd69a005ab89f2075957188e21ba2918f99\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000025744059779003\",\n                \"stake\": 9.9999e+22,\n                \"stake-per-key\": 9.9999e+22,\n                \"validator\": \"one1d495d29lprtn8mwpjgmyrz3rmh7wxlzh562awr\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"413ef5bc7ce1ebaf352011ba39106d8fe63b181462b49978649425a95f563e0412ea0a48a5dddd4ba2d6135375a36999\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.002108578491783886\",\n                \"stake\": 8.190461893344e+24,\n                \"stake-per-key\": 8.190461893344e+24,\n                \"validator\": \"one1427qn37jngpu78lrdaw5e0q923jjcjkcra3t84\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"323bd3f38afce4f27e35e5e1c7a6cd4f3f024817fc180fd73e3880e26fdd8824092f9707d216a1c7d278c6bef71b1493\",\n                    \"0d983a3e3a490412635fa110b577e63909a8b8d6c7b9714d4855373c19f1c96aa8291b911b0ccbee102ce329c92a0d0f\",\n                    \"379749bc0edc1b539d490be19d2640e049f074d32fd5b8281eaa891998e14155f9dffa7f3de730630f1449f5a61a8893\",\n                    \"2f78bac8fc8e2dbe67d711ecff25eedb160607dc92db2b079c07a98fcd84a99c2fac0e06fa53705844f2f5af9de1e08f\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.006351455043093831\",\n                \"stake\": 2.4671289544330325e+25,\n                \"stake-per-key\": 6.16782238608258125e+24,\n                \"validator\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"1f1eb7dd04d6c789c7a5b949063bba2978ee0c0be3a81e873f36ddd2e0b012256cd45d7218205bf44ce7113c01460795\",\n                    \"701b3e515eec515554ccd182d1654b5b9ab2f2420efcc8c22eb269b409a257ce1e12a3698b0d6955b420ec6dbf642b15\",\n                    \"1bdbe548a54e3aeb6598f5618bba513efab205a98f3678c471d956538c74cc39a3070a95edd032671bf1332cd59a5990\",\n                    \"87201cd5b68b8a11bab717ee57c6ba8b586be721517d2b9a48cd5690065dbafc71b10dc85bdf39bf762394ef8add9f00\",\n                    \"75e991e1b581086ae2f97d47db63a07116e8d4f2b705beea1f1165f936f7d5e91d324ab0c10a4704a89e47d7f194ab97\",\n                    \"7961fd0c5713f9db3c6d8e8798673a2012df3d9ae24e868b88a8b2dbe7efae99e908a2445089b2b4909aaa62533aa513\",\n                    \"4b12f2255cde93a0ff6b2bac2965887dd46e96f554c943d760393b7973435128bb7d5c93ae2a17ca757071e4a4e98319\",\n                    \"b66e47b0a02dce01caac7f1425c7589be29096b790d4587302018fb25c7fbbeade90be7ad3fb0d714b5dd0bac49ebe14\",\n                    \"f5121d14baddd774e40ff8c39676b932c3828c2128b1431c5977c3b1c44f7b66d77119c49233589eecb75a6b85eab882\",\n                    \"a8472c1cb4f6a1da3e227646ac5f52817ed91ab8b9177f7483f0d562eb64e9e801b0ed09ffa3be221d4998c0b2580102\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.015170392085118528\",\n                \"stake\": 5.89271486759458563057e+25,\n                \"stake-per-key\": 5.89271486759458563057e+24,\n                \"validator\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"11fe3720af7c383558400a2ab16b76caee83bb158d973e5fecb7b21f2fea82eecca2a68d1c8a50814d54f80041edac0f\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001751925726502471\",\n                \"stake\": 6.8050968739361333349e+24,\n                \"stake-per-key\": 6.8050968739361333349e+24,\n                \"validator\": \"one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"d9700e0c3187201017599418f5fd330547265cd23adf6ffab61246e0e764479f649065f0ca09cbdd37c70988c8e8fb8a\",\n                    \"bcbf5434cf3885d07076474141a23b666c9ebe56480bec8f4d384f0174d935ce613a2edbbc8a33be5c023392d0656c02\",\n                    \"3f91a010a3037020469ad89cf9dabff813ac2a75ebb1f27fcb7ccd912bd74fa979d3cb8426abddaa6855abb7fde6370a\",\n                    \"18caa96991cdfda9ad7f6b95cfe2d77ad3102956e6865a211ae7d751937092f98888938655ce3d0cd238860114a82702\",\n                    \"1d6f1f85f26322febbf7a4e247fc5eb596c6dbc423b189882764aed458ff331f9039f83faa336c0e8d62cb48b1fad905\",\n                    \"1958891e8ab1ec4e2c528f5a89310cec5d52282c313765d256954b20568683660deb834b291ad603cc564fd1cd6af099\",\n                    \"61c835bed899c970e375f6ce1e1b29783294a386b262efacbb46c69306f345815a6046507b20f301c1438402e5929701\",\n                    \"85f2366637f19043d5ce7f95a5b29c3a80661d07fa6896e183e6c715d567d546729691839bf7285f2b01089266fac40d\",\n                    \"a6081239b7110e4e325cfbd868e0228a3346c2dad0324d243bfe4c5fc1a9b0c584f9ca272f758e3a845ca50ab973c107\",\n                    \"a9c5cbb9ee93e31d42dde922a5bac46844c08d98cec14eb352c61dd7716b73d9f79bcee6da30b73747ffd00df8cae583\",\n                    \"0c8a858c17af55b4631b9f6b98300281b34d510d84b9ee72110780ccfce0d540ae1401521a13825bd427439e43c68317\",\n                    \"dfbe83358f924eb424afc0b25c5f44d35a45ceb353446cf976ef9988e9a4147f634df1c8afd8b3661e68de2fcfdffc17\",\n                    \"818fa92a1fb6d63134d96f73231bd39330c5fecc5d8f5c124f508a4d2a9d7c99ba69c6601218b6647fbcd06e95b84500\",\n                    \"bbc239e80ce221bd886af2aa739df9ae09c929ae805a21c3f3aa85d32a4ddec38ab6816cb90d4ca22de35ee10ccebf04\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.022926009392827626\",\n                \"stake\": 8.9052699261644e+25,\n                \"stake-per-key\": 6.360907090117428571428571e+24,\n                \"validator\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"d01b2602aed09580fc73a56cf9bdbd19e14a7bbcf4fee71154cc5068ca7e2765d7b7750d8409e0b22d060afb89b9ee88\",\n                    \"066b6a59ac20487f17a3e9d459b723e5241ddc259e689f177e31d1a81cb38ab75520130c875560ba648457e4a03d4a94\",\n                    \"3411cb61f965a14544de8891e6447bd308f01e59d5eea82d4a48e3e8468acb0a30b90adc55780c48b1a9796b9f96480c\",\n                    \"f88e94c51aeb58cd7f23c9c3b406cf086daa725e30f2c39bf8fe5bd2251dda7c5834bd2da8f6ca2c4f8dc706869b9114\",\n                    \"4046263a8404c6c4099b81861126346b890437c6eee2c943399a3399cbc71a455ddd3583b2cbd1f184bd909fc9777418\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.008446145491886610\",\n                \"stake\": 3.280780538476e+25,\n                \"stake-per-key\": 6.561561076952e+24,\n                \"validator\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"fc750ad6d83cc444a7dcc472344456eb850a323b3c1cb0e52937a60de66fca9a2e32d109edaa51c6cf5ac7faa5cd2a81\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one1wftqeamdxuqqaycjuwvcz3tsramz8z5ettg3qr\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"21099cb538957ffdb9e1dbf76d335998ea1a291eefdcf5b1f42006cfcb1f59d084debfc9f1049d939fb9d576a6b15204\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000005663749788879\",\n                \"stake\": 2.2e+22,\n                \"stake-per-key\": 2.2e+22,\n                \"validator\": \"one1uxj9uptu32tkdnp8ephh8ldu6pqsfvwhvg0kly\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"129fd5876c500d7dbd276ed7e07b0c02fffb18342d9f4be760450c19ca9af4adfa3c8eed69a5bb259ca1300e175e4618\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000226625422404606\",\n                \"stake\": 8.80293e+23,\n                \"stake-per-key\": 8.80293e+23,\n                \"validator\": \"one1a2rxp80kecp02335ls854mhjcm494hzs9fwa9w\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"8f797e45b12648c3b9c8e8bb7eaabe7eaac7836d901eb798470cccfb6414e2e54516cbb2de1aeaf7a5d381651cdc5f0a\",\n                    \"97e4ac35faf0cac6fe497058f6393ee20f4c5cbb9ce11b425150f36a720b98ae0fd718c6a7db246b1774bb78fa4f5a02\",\n                    \"8cbd3349056be05795b3c7b9f45d4d985761693379f0d34847da4545d0b9c5bfcb586ef8ecd86ef5e04bc77e78eda90a\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004841516742513941\",\n                \"stake\": 1.8806157105396333333e+25,\n                \"stake-per-key\": 6.268719035132111111e+24,\n                \"validator\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"8fd5c4406e6dc3b3c6d10b36d6b7c81887a77e32e968c3af7f591dfc8a611c1550078d390714d49934aeb52e7f879116\",\n                    \"6f7c7997c84f2332b86966beb38728a5bb7555a3363ed1e65071e941ba44f49b6681e8b9d00bcdd66ddf6eb1f0be6c8e\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004263672746126449\",\n                \"stake\": 1.6561607399919e+25,\n                \"stake-per-key\": 8.2808036999595e+24,\n                \"validator\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"3494f33907a9b015f1ef244336ff5fc38b679ef86c0e05c55228c73d4bbf5a207a49b695bacef447cf4b1e8516eb4a80\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574689165390\",\n                \"stake\": 1.0001e+22,\n                \"stake-per-key\": 1.0001e+22,\n                \"validator\": \"one19zt89ps0mgeuvkslkduplt8hysk93c73svft67\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"1b329b6e99ff7d5026b3b907dba62a8977a01b11ca1e8b507c6f2ee42d4614e176d32937d9f9ca8411ec7f537da1eb83\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001815846871126398\",\n                \"stake\": 7.0533891245026666655e+24,\n                \"stake-per-key\": 7.0533891245026666655e+24,\n                \"validator\": \"one1kfngqk6c2fnwjt9yyne6pqqeux0su3uzq0y5uw\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"076110ef856c3db562261829a7cb5a6cf6209658d6d956643931cfe1526988a472d4810f15f1b61f54f058297365db15\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one1dd3rjz4ew4m9k2pf285gyfesjwe03a7am6axll\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"6aefac632e72a3e5ddd3ac6621df94e8f10d8e2d8e6d0c2101df22857e8ef17093ba38069f811e537b3a8169b21fef8c\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000006436079305544\",\n                \"stake\": 2.5e+22,\n                \"stake-per-key\": 2.5e+22,\n                \"validator\": \"one1x0jsshupfyjzdj989j82f74le0z59s5nfx7a2x\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"eaed5f68bf17508fa5baddf198681a3002399f82d0222ee7f2e4ee02e0e017489e614c37349ebd2a5e7148230d838187\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one1yfscyp6cf5wpapy6mfwtvs840r3hqnac4ymvxp\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"66ae22ecce040a1705b8caedcef611831b019c66685f136e5124a4afbf5cad346ee8d2c98b22bfdfc98d3d8b13d7b213\",\n                    \"883b02bd5e72bf44bb478e5018e00ebf8bcba72076409d69436af0b6e74e85c4de1b6c2f2e365a0440b39db65f3a700b\",\n                    \"277845856fdaa0ab4293ab18e2e8dc43edc5163666025eba00a9fd5c88a3d48b39eada8a9ca14d2c6ab6ee34179d4499\",\n                    \"ccc797f918528cea5ff7932823b503ff264718d9e4d1797fb8ddb3c57b7c49175d0999290158cd800db399e62d810115\",\n                    \"40f92aa97fa8e5036b0b49ad17a7a6603a33dd3f98b21f55b10927c90ab27f6c586eb3f0c44beda3458aa6c86e743f01\",\n                    \"985e263ed18e57aed7913bbb9d6b2dc1e06e27a7cdb1e44b16128068be1f3e3b79338043a33629bbb97dac2ab622c391\",\n                    \"892b77f0cdd8f37fe9f57cfedb59d5d93b3a247ef11d1d6e3e7f2a25190be95d84239cfb7507d3bea6e0edde5507e50a\",\n                    \"5f4dd3a7989049bc0701bc05e1d8303c0cd2471790505bd361902b6d15e796ff5b21b1aabb4b7f17ff73df6c50f36a82\",\n                    \"12eceb4aaece26636d9e6f9fe9e5aa8759ea54d07d0430040aa13f49c8a169f1074233facf60f4f2092a087390813911\",\n                    \"26a1ef0f3477ed61c7b6c9bbfa2057ce289460457e1ea16b9f7c5124ef1abc0269cf126826212cf73624ffbb579d8611\",\n                    \"3ad8a62ae7c504280bfc99ed88a3e35f3e490e9c118255d2ce0f617ab003ee5eb557c23fde5c632bf80ac3963923c20d\",\n                    \"449e9459311d05fc44573e79d394de90a535bb266c31ad8d7c85168231445e111aa2fb0eef24d564ec9e9128728a7b85\",\n                    \"6af38646737e41bd8cd3a6b4a15584764fd7068f9f205ecf26dec36c64d601acdb871768a77d37259100ef8e36f4a491\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.020056386416064479\",\n                \"stake\": 7.79060724080433952397e+25,\n                \"stake-per-key\": 5.992774800618722710746153e+24,\n                \"validator\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"f770f6870b1bf4da303e792009741d6c930ddb70ca2783f1bef640cffeb54fce1b359937943c076ae09b3fda5c35d198\",\n                    \"d26eb416ab1003578cb8fc6cc73dd0fe6362aba6b255658f3b9e9fd5c7b3bdfd02692bb0aed6c2b7d932176145717888\",\n                    \"9683cf11fea4c31ca1f1d295d8526a60405b555785ba152f740ee9d8213fe55faf9a2d75f68b7972cce87a6180896e98\",\n                    \"60de05a9fc29a07778323ad5f5bc3036499d579801795b02f019109840dc7f6ec68b8f52b5e4b8ab0dd3a3c6d6296018\",\n                    \"b8ee5acf7daf413625230da44a86a8a111d6e8adec486afe684bced0967134bb8f920bb2efd8481c5e8c1f2413a79d85\",\n                    \"67efa66594a81a2f82f7197204d3f83fd8f07f21be57293628e134d84d9810f2ff7ec45cb06692a3213865f364016b0d\",\n                    \"a4c2e977e695c5ce8b3b9ef25bc450b6d2a8d1a6f2aecee2465a56693fd8e9c783e661d3a2e779902d16cb4ae1e1ec05\",\n                    \"091fdd3b868e9a9966a73236f884c2be8766197800fe3bc5d99946415c1ee27d1db88a6d9d5d345d1a03ff27a4a6be81\",\n                    \"73db00059344d9039cfe25d69d904ba89ab8d468ef9e84d5e046375445ee2b04b48f87588e0d39df69eacc9ea5653016\",\n                    \"18110d1f458866fdc4b79870f95e6fb9c502bb3779dae5aaaf5b554a5246b33bea7f14296f145e6f74543229a45d9c06\",\n                    \"55e536cf0cd5c3744e4f728bc84e5d96ddd94db50ce7d245a9b10e2ebc842779cad48a583cbe0f7ecea0053415d1ce82\",\n                    \"f9ff0de79f286d8d745bad5e763e517ee4f5dbcaeeacecdf8270245f4c036bba6cbb4499b68be0cea7d01fda1ab0008e\",\n                    \"89db7c6abb1329773ac852f226d1bbaba0bb4ff675819f0017e8bd6b1075153ffa0621895e349c636d5c662e26050097\",\n                    \"d4987f2d4013fb3cc422b1812e37804cd01e7ce82fd9eb4e74653b325f3d97afc33c0bccdf3233a5b9d4ab4e856c590b\",\n                    \"56992d9f0f295da3451e9444bdc080b5022fffc9063e5b34bcbb3483ddb643e36b3fae91ca59e46725c9eacc89253717\",\n                    \"f01fc84c396ed30e2f9cb85ee7d233718b3651539c91067593acc78ac01dc085b5c452f9cfd6a532ddf4178da4711297\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.031695561040265443\",\n                \"stake\": 1.23116728118015952414e+26,\n                \"stake-per-key\": 7.694795507375997025875e+24,\n                \"validator\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"7857d57c31d1904d50e8c678db57372f5d75cc13a136e6750523f881017c64d3efb83f2fb992ce55f80e51ec103a4682\",\n                    \"af019886714fad9215add0f578bf2b989df75bfc6e9b46b00c33a41e2c6a2f7a396270148e549b8d96ac20d27a8fd50e\",\n                    \"bc2dacfaea70130fd69d18c08b691e7a3fccac4835240211f9853aa0bfebcccd325d33904570f22fbaa6c2d7a58ba08e\",\n                    \"6d1c51044ecda0c4e872d19c3cb00fdac157c0f70460c335e450291c29d3a5ab450dd4a54c7f22996ff0e476fcd2cb12\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.005736418824373219\",\n                \"stake\": 2.2282272141333e+25,\n                \"stake-per-key\": 5.57056803533325e+24,\n                \"validator\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"064a5352bc38accc647cdd10e6b6f091458d2c85a996a27c9fb9dd075920412e07c1db3c6989043d27aebbd86e1d9f98\",\n                    \"4a017b97577cc281915d97de38d741281c6beda42bf24f9d44bc100e86c7fc749951f87f61ba74a53dcd04409a7f1215\",\n                    \"be78abe18e82e488afdb76ad93ab5bf7879af26d7100fbcf863a4932da0fa7d635fb92c6e64c6bd6f0516f1d80e72491\",\n                    \"e6ee4dd21bbafeccfd88c393577d15a2c4dc52f2b78e3582038f40b49c2bac84da4c6959f8a0628372a0dcacd592cc85\",\n                    \"f0c2ed95d5f41301a689dcf6a3271bdfbeba45e235e71056c1dc67e0b91eafab85a09333441afdeb3b2acc5a5f984391\",\n                    \"0d5b80dc2ce0212ff0a843b007e7e9a8845ea0ca6702a87a1492e63c99088ef60f08d95f4290cae6ba31e08aee355684\",\n                    \"4542fda471c1c8fe5b7770a78dd96b927bb3a96c227c31aee258f41a38210c7e459e564c01aaa112616f0bead2288e88\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.010800675164225805\",\n                \"stake\": 4.1953628332867e+25,\n                \"stake-per-key\": 5.993375476123857142857142e+24,\n                \"validator\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"4b1ba7bfcef15f3b16b581906b162780e8ca7989690ac228655d174e07ff70886cbc74eb87034b8708e4667782864910\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002586788994484\",\n                \"stake\": 1.0048e+22,\n                \"stake-per-key\": 1.0048e+22,\n                \"validator\": \"one1w9u59r7v8cukhwfc2w0672j942txz4yn0sjwrh\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"265bddee92da83d9facb5feba7be671f598369147dde617e5a6cd5e9205bf336b957488b459be50d66e9de63cef75d97\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002635953381253\",\n                \"stake\": 1.0238971803e+22,\n                \"stake-per-key\": 1.0238971803e+22,\n                \"validator\": \"one16peqd9vlkakn3vdejr8djrc4e8kjh4kt5ta2mu\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"cdd10ee1cd2ee78d978fbabc26becec7f008b1907ff02e0e202c027e7abd1c415345a3819c726d63ee6bb036a6265a13\",\n                    \"bb9d3d2255926e365467448eebe94797589e8c6f5c1fd17957781a78fea3bff5e7356e73414d6c6a9f4de691f972ff0f\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002600176039440\",\n                \"stake\": 1.01e+22,\n                \"stake-per-key\": 5.05e+21,\n                \"validator\": \"one1hukwz92wuymvls8hrk4fhwclk0cer5r2f03mu4\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"37b83c1c276f01a4aad93ac9204632f79c15ef8ae3cf08bb887f7040f0b029fb582ea2eaa72f06060889d71527205710\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002574431722218\",\n                \"stake\": 1e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one12rjhtpwaclyms73lw3qjchs4httvr5nhxfc42l\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"eb37778ff56f77889fba694d66dccfa722f9801b49b9a33cda83367aa04e85aa89c8503f3270022f67ec765ebb552816\",\n                    \"5a76dea3da90cda648ac99912d3ea71f7688341cc6d05c48b91d460c6ce23b58aba59516dd0165af65112b5f63c64e12\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004014169603887495\",\n                \"stake\": 1.5592449274319e+25,\n                \"stake-per-key\": 7.7962246371595e+24,\n                \"validator\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"6caf1501cb636fbcec5ff73cd40ecc0c38b2855c8418fa3cb6a006133ffc6e03a84979b87c5ceb991ea3a9157a23c099\",\n                    \"5945bbafb90bfd39eb39d5ff78e7ef193aca0bfbde7d56360ac9750d82935758cd16c0b0df446e2837ea90d131e51c15\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.003967466050747398\",\n                \"stake\": 1.5411036216295200757e+25,\n                \"stake-per-key\": 7.7055181081476003785e+24,\n                \"validator\": \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"af0bc63711223af48d1627943ab803da15b36cbab111ed538745024071305a698c837f4df735c8027e3f4c2775dc8704\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001641541077673714\",\n                \"stake\": 6.376324e+24,\n                \"stake-per-key\": 6.376324e+24,\n                \"validator\": \"one17nfgz8rtgpl3nlws5q9tdk9y3puyqf847az6ne\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"6f05a4b70df21c5ab7d50ae639dfa879d50b26f01cb7ac47f098ca4e81df2767ff63feacaaafc3d0eb61b99f5782d384\",\n                    \"7ce51c0b6a7f532ba775f189f9700df7c5341fa7e976b42489a469acf79f83c8b7e88a7e35080477a9bdd7cf3449be0c\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004045978844618771\",\n                \"stake\": 1.571600757441590909e+25,\n                \"stake-per-key\": 7.858003787207954545e+24,\n                \"validator\": \"one13n974xtdzxu4uu2ugz8e2ml5p8t94d8x3tep3q\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"335b1c654744da002a0b96539309570fb85ec5b1a3ce74126ddcc683969d57080a402a5d2e2d366d097e5e2b76a7e003\",\n                    \"41e24dedebd625baae844a8b88c3ef371cac489d459a908808487517466e9085ba263b4a2051339e0277d4a360146e13\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000005148863444435\",\n                \"stake\": 2e+22,\n                \"stake-per-key\": 1e+22,\n                \"validator\": \"one1suuwp5vzlvu0nkc3xuakj42zl7249xt94ykgl4\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"26403e04f1e6babf04885c5ee5a2ac6638f72d7416b747a3a64708489d8882c919ea492c0965f7b673b868dab6497604\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002923524663750\",\n                \"stake\": 1.1356e+22,\n                \"stake-per-key\": 1.1356e+22,\n                \"validator\": \"one13r5ss02cl0mxed5vttfk99y4p8mhs792mnpegp\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"2ca7cb0362db342d82d51fed78ba24c88fd061ddccc929923cb7443ff99ddfaf5136e14adf2068cc3d1e1653d11f5b88\",\n                    \"4b4c85ced3f516d101022dee1c728823f900356d50dddbc2b47e4d8c3d7f91c501748ecb9c494178703b262f76fba790\",\n                    \"4c65f90e6354e10d190f213a8665c77d97f52b3d5223047f5ce1d8e8dd783c32d3d2e70a307661ba32241cae513d6994\",\n                    \"4f50f328160160d3773f434b7f769c7eaca25e08daa717bc4062be94237da4d0fe973087b68c3e13dfe198682266c218\",\n                    \"8d14f8242ee01fc3ba63bce5f6d789bb5dde518930406e1d8c21d2ef5acc3659482aaec12eb32ab21292a11796a6028c\",\n                    \"3122d1a0c32421c267cfa8c3994357608c9868a3460a5d325c70d5f7c5b2e87626be14c50262d6fe56cf80ed735fde8c\",\n                    \"5366ee770e6bf00cbf65d683bc0aa00ce600adcd644ac6ba078f0f825fce10283bcf19fa6c08ebddeaa23a8e2f63a108\",\n                    \"00b3f69f0e90d2373555dd6827794945d7465b067fe4b1e8a9bc695508f9071af2ffba3b330fb42617534f23ece5c409\",\n                    \"0b12ee68ad020e4a72cd302c1ba112b51b631221917a0862485bf9520af2ec60bc2c9ee387964811c5e009bbd258b191\",\n                    \"0fbce1adfb35da5d812f795f5acbfff10651309727271cf68cf6f8a21b36521dbac758ac874f7d5e3a01b7dcd41efb17\",\n                    \"3cc36b809ac60b2aacf1c8a4e989c6f8d3a389d5d0a6940e36275ab7a359572baa8fae0d03e50a37d7ed27c4318ac10b\",\n                    \"57320cc0aaeb7090f8fcfd4d4670264c086e541591378a7b2efc58c1ceb43e7f22630401b3ae53d15e96561f50d2b68c\",\n                    \"087472b5eb52a05589341d95d009e9bcd0c22f314842d824b496e321d642a7f7cd71983bb8a4a81f3d9006e8155f4494\",\n                    \"04cf6b75d961be22599741dafb25394a1fed85e0232744e645a8720acbb9b8f2f7a46909b1d70935e500e4ad0f940d8f\",\n                    \"4d668e1c2ac9bfb632ceb654042eee79ff927de2b290440b0c55d8b323130b911caa2599772f69d2c0d823ac2d6d2a11\",\n                    \"7a3ce87d76839d870f2c27bd00fbe3731323a24c3142ee32470783e792a03adb6e7487d09d85aa118fb4c44c73b70009\",\n                    \"08aca306ce6f5b79f0f58c8fd9e91f4a0864ea7354646a5c0d38f8266f93902ac43691ee73d0578d707fc364d6655987\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.023476959522338918\",\n                \"stake\": 9.119278371118114507924788e+25,\n                \"stake-per-key\": 5.364281394775361475249875e+24,\n                \"validator\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"2f2d2b8fb2bdb66be4b382f8b8cb37f06288a039afda72d37684b69300153916b5e16232440cb510a88c3d41d84f6c82\",\n                    \"3013edf854faecf8884d9ec5a250ff31ffc64c8776e43c3cb0b68c44d8b36cbb121962bbfa50d5f25df27aa636fe5c06\",\n                    \"497a4af6682e07a7b2b0e5a2b9df08099f31e028a2f2d17498c091d83cac69ff44016ca7fc0196121c9e96e2300abf06\",\n                    \"4b2f5d50d469f865cb9a1f65bced9992a5012f737b5a5c1d32fc9fc462991d931871275a733ff4989d206f31932b7d82\",\n                    \"7f6ced5becdad6859fe9082f70062fd107ee4aa647621b0e7894138a52768f98f562f9624b20a804210035eb322cf302\",\n                    \"7fc0ccc3154cb611318def73b241644a610dea20a5edebf2837dd3898d46e2ddbd2d6038e5aa4a7e553c5adbc5a41c86\",\n                    \"8881cda12fd07d1d55b5d615e345164e3251a959636d3c6c89eca39bf2f3d7bda4790c30e97f4aa3e05d65f7ae24188a\",\n                    \"b414dd265101cf32305fdd7ee8eab64cf4c847c4fc38fa23b1ab2621e518577d77b270bf63a1dd254006c5ab6669fa86\",\n                    \"b831ee28db84958e2a43c6ffca19a8453aa818dc196d7f0058e028a642caddc5146a9ab0d643802ab15981971c54cf96\",\n                    \"e6590054e2cf8056d94751242c67478e611f910377f2c0e9538f7e5027659cfb393191fd435d81e8890aa654aa30a302\",\n                    \"0ac01bf36c064ca3c695c1c5fcc04c79b28e64f6db5e3338aad46159752579c64b59a4f9d683528bcb5084545905ed97\",\n                    \"31da8512a419dbe5ec4e230cb8d81fa6493922f964d7d7ad4374388cc61edfb55592e568583b8f10871a78918290ab8b\",\n                    \"4a7a0453f2d35c4c0ccb69e666576785702124d2206808c0aac9e22dfadd0dbf01c38564a5fc80f7fdef62829d250193\",\n                    \"4c02492dd86d59fdc5c8a283e9e89f5d35d8877bae12faa18b7e1efe6422531419a488f9d44fc67b4ddbd048fb5f8393\",\n                    \"a25141a3771f001f9a519406e1c36babdcb90a8f31d5986dfdcb5e4519515b3070420e27869ac6103120ae75b005b50b\",\n                    \"b045a47f8f8976fc489ee79782e13fd1bc5fa682b6df4eea158aa2cb9ad313b168cecdebd79723aef2dc85cb2ac14d93\",\n                    \"b2ec089fe7af1194c317b2135d6acac70dd6fb14264014d4c2917c0f80dec29180fcce3d5a3b382024fdd3d02d2cbe97\",\n                    \"d0c1d86af7924349dedd8e4fa2a7dd4f7e263424b29f9d7de47c7f1c2f289904f6ab68fd18f95f95848dc1b5c175ad07\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.029606636550353284\",\n                \"stake\": 1.150026092937155432419e+26,\n                \"stake-per-key\": 6.389033849650863513438888e+24,\n                \"validator\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"3a30d5f923cfd0e3f673f62b4161c47b452743e1f50044de3df07c0f51d455385893668fedd75e63248a02f903dc4a01\",\n                    \"6d5351b8c815a3d89685a82ee7173f2759ccadc9fc2faed0b9b0b4f63c7b9021551d1cc78f7ec0aba62e2e577e8aa68d\",\n                    \"87970ebfed4e6e27cc7b546537c4de38248d985918c6576b6559784fe6ac02a6841bf856163635e6e93f8a476b924c85\",\n                    \"6480fdc6e2c7f03c9cc419aa9f3ab79b0ad5279cfdc7c45363a17de3832d97d2ff280487c9482ba4622768d5ed208681\",\n                    \"044b97305780a0cc6b24f649fbe8b507794bf6e4d0c1268658cdc7b64d38fa0adf45ad81aba61aaef769c3c0f9b0ba0a\",\n                    \"9b4f2ed9b5b7046cd635f986add792518994cc162be665802daff25728e505f3e84ee42ca21b966f078427cee00b568e\",\n                    \"41261930c23c0a5585f5fce4dc5b39e91dfc76bc67677210a79a462a2ce62a41fa68fa6ac80e2db372fda35dd95ce016\",\n                    \"5f4e20b6ad0cb25c0d2a9eb1b109e8e873b405d6b25960732a28c5af378cac3df86950bd136f622e31f0e5cf76f0130e\",\n                    \"bbd0666e619c0c3f10f44619a8f4a872e48b13cda499b8c8750a05c5dd714e7e49cf852055fd7e0a4910f9ac24964e83\",\n                    \"7b3d2d588c731a78607a8d8043223bb7f87b4292543ee2ecc3a663e89d92b7a16007eef23084937bfdb2df780970f487\",\n                    \"3ef63d9e8c9f045c6a2fbc4488a92688337ae5b3386964057ac8784bae5eef8227f3bbb8e4f099102b62ed0c6917e417\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.021029955118135040\",\n                \"stake\": 8.16877563178110667e+25,\n                \"stake-per-key\": 7.426159665255551518181818e+24,\n                \"validator\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"80e43b7381b0d2405b44a6a6293a5174fe4ef3e32b26a10c4af20e213d6ae17d778eb54e7129f5ac69343eac40fc1b95\",\n                    \"77ebe15da9054374ec1614ae5aa40acfde825e2b64a6e3f1e0522db9e33f398c8a33ef8a982f3743dfabe4130c22a319\",\n                    \"a2526ddd0b30d2daff78d2242eff48f8c56ae572f5170df94b18dc86adf01d8f66ab3b6a2e834a3fc9e62b2420e79285\",\n                    \"aed665af6870561fcb0054832e35fa773a2d8b82b6ed7bed0500c5e7c1015a5a6325042d5e8ef954ad5d45c467055601\",\n                    \"aef0ce484fcec7227492e55a8d311172cca44bb40d657c44c984a709b0302211761e0f109b4a65d2ee9a8a88fc928595\",\n                    \"bd2701b5690c0dc0f98308c62cc9fe3327fb1d9b4f18b9252d6d755930e111a8d75cc2f8cc9c47794f40970721c65585\",\n                    \"d960c67e552dc2c73ee0679cbd3bf501704a001fe5b14ff565d4abc820fe433856f4cacd605e89670dd418d9db160c91\",\n                    \"ede3a3edb3469c8ab63665cac359af0051956f1c6a036d88c26bdb09885e9dee66f3fc0a78530f948dbfed1a72abca85\",\n                    \"4433b28696fe69b4bc8c10ff24e0f1ba918f526ed9f3b9e90c616305d7c35038be656936ffe9186c009bead57cae9509\",\n                    \"15c99e1fc798e09fc83add271955e04b8d9e21628ec091a1ad7cd128a6a406852526196e4b64d7a9345b17c1f139bd91\",\n                    \"f8162589f9d7075f720e92448b7ba37068d47c55445916a7d7ea87678e1e047de12acf4126eac6b740fdd26a0c25a00d\",\n                    \"fab871dc783e065e26ac13a8a5576418d714926d83325d8f8c72e975cd74f894b00a31ff18c0c7d20aa094dac1006d01\",\n                    \"ffc25ae925ff32957eb357fb33f39426d046487fbdc6c104b5ee2c57d967619449c2e15e3785ad58cbaf46adcd068105\",\n                    \"c4e22e2edf12fc844d1dac366bf591a43d139a74c0c5d32a8995267415d0aa6a29054b557d6a6b5d1726bd8f8c22b395\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.020967750844715013\",\n                \"stake\": 8.1446133e+25,\n                \"stake-per-key\": 5.817580928571428571428571e+24,\n                \"validator\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"7432e4013a3a9fa4922699132e39a6c4fb1e4d867d1d5bbcb4dcfb41f11fbc1b97992e232678fa11500aa56a7c4c6895\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.002046608494245300\",\n                \"stake\": 7.949748585611733333e+24,\n                \"stake-per-key\": 7.949748585611733333e+24,\n                \"validator\": \"one1wael8exj25pw63qrjmcuk0sv6qp8v2p8yuzjtr\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"bb9ebc1cc84331ddfcd16aee4fc361de910b7a30a931b9c10a14d069ea308e85717595e915a8536ca78931c88f1a2b98\",\n                    \"4eeec0a689bcef30dc3916f20400d94ade5fd5cb10abf5a866301d430cad912e26e3621edad95cec194fb43bbea4d610\",\n                    \"742e7f9c7981dfd9040dec06014c8f0dbbb1f117871ed97b0dd5f497e264aaedf9673c835062e26793ff4c0438978e94\",\n                    \"c84875782fd5dd9bc92a57b7d516992e2c3a6408b3f6dc8c3f5c188ab7dd1878007f18b748cb51894b38ba13f3404090\",\n                    \"a1db364436316e10329d311c3bb538a2ac676da43c222e6c16dc147375b34be00000c0872745b2cb33d11c58ca478c10\",\n                    \"e14c69d87d586a3285de3c9c7c345580049d2652080210878cce1535076183fd454ae2a3e85461a513db6b7c1d471c04\",\n                    \"440bb29c6c3669419befd3de2b53c69fb51ae916b9b023384b557ac5163ae8edbceb0b73e79be904ded2de879f609d80\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.009860902047513825\",\n                \"stake\": 3.83032183856865761797e+25,\n                \"stake-per-key\": 5.471888340812368025671428e+24,\n                \"validator\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"17e032d34402caefd647ed2779d1c94aa2a0f164682b5a050000bce0f77a96b59de9e25c9cdfd4e67e6a28d81703df0d\",\n                    \"93c3332eda5a0d3e3c481f5320b60df4be663f7df1a365d28e6b26a10d7577102b4f3c1bea575103131750f19a762089\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.003989314684299379\",\n                \"stake\": 1.549590400814e+25,\n                \"stake-per-key\": 7.74795200407e+24,\n                \"validator\": \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"8a62218b60f943d4300babc83851ce0be24fdb70a60de75b42578517d3cb23f0c681a18a339a946b97f57e85da14b903\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002860451086556\",\n                \"stake\": 1.1111e+22,\n                \"stake-per-key\": 1.1111e+22,\n                \"validator\": \"one1wqyr9yp8uyjdfgaa73u8n5rj08eqdvd9p9wej8\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"01063425888d7f8685a3aaef6e0b878a8ba3bbcdb60971c085007d241a22b9fd0425169182404fdd739cf532c6c2ec94\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000009936276675071\",\n                \"stake\": 3.8596e+22,\n                \"stake-per-key\": 3.8596e+22,\n                \"validator\": \"one1g0hlkf9v7yr9pgf4crn0jxl2pjjtam576lktqk\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"289eb7f7c6b601dc83534734f500365f4fcf2189a5813b806b9ef6a777183c697d5fb22c07a26d19b63f1e10fa88e50c\",\n                    \"ada4422e36fb53fc5098eed8fd4bc6a3d2e24c06ab0fc7a06bf755d72180cec56cd0977ccba6ee19038d3f839c9cb180\",\n                    \"25f199bef86ed7855f2a980925bc35d7209ebdaa686fed791b9494403268a22b8daea8cf84f7071315840e66964baf0c\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004419984011562452\",\n                \"stake\": 1.7168775436604624999e+25,\n                \"stake-per-key\": 5.722925145534874999666666e+24,\n                \"validator\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"864278abeb5a07e0bb154e3ceb5840d0d93a9868547b64e27b9f1649058ce920ff946a0026551ba812d1f102e7c4c389\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002834964212506\",\n                \"stake\": 1.1012e+22,\n                \"stake-per-key\": 1.1012e+22,\n                \"validator\": \"one1gyl6ja6d8tad75v3lrxq25gz0qka434v2eehpa\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"8ff34f92c0c49036e6a843cdea6b752643ac4fb40aaddd2dbd798928d42d96ce58615f49b1df4666831d085f933f5a90\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000003388898916617\",\n                \"stake\": 1.3163677589e+22,\n                \"stake-per-key\": 1.3163677589e+22,\n                \"validator\": \"one1p8xss440xe7qz862y6l5dqvc6pzs74hl0jfalz\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"c9cb0f47b232c26422435f32132b665d8d7489d7fef92d4d37c4072ca5dd3106a0f688afc8443de30c0bca87477fe00c\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001643033990629428\",\n                \"stake\": 6.382123e+24,\n                \"stake-per-key\": 6.382123e+24,\n                \"validator\": \"one16f3f9y4sqtrk3eq7gnagr4ac8p25rf08u0pxxp\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"53cb821ec3a3385905be1b2319956f6dbf9d023cc59ef50b6a3c9e88a7779aba506741eebb42eda0ca1a76d86ea4d98e\",\n                    \"42dab286776dee71b918d5d5ab947f43321dfd59c939f77f0936ccc972e3615f3063044de78a1916893d528415209506\",\n                    \"b92c957e384e890200c59f98f8d0489a9f23a2be148525f20572b2d4d1eeeccdf6190305d6c89536aff695dbd00fdc06\",\n                    \"0e293e1acda56f1c622ed3d99a4d48d53feff6fa834b2fd3f8d32e49aa15f01b4d1e7d8f3e6e0113779a4970b5a01282\",\n                    \"1647af99e7a9c71fdec8f2496deaceb5876814388c4090461de3b28231c242570bb7b5ce551c7f07798f9e6bae7c7b0a\",\n                    \"52b0e9c523aa7f5f989c1610d4f3fb12462a857ad15ed7ba82f88677ce11dd4505d8b13b12d224aa8d725ad9f490760e\",\n                    \"4fad10de908b4e2eb37f62127a5e4d9fea5f61b062351722d01f5c88aaa6a3584edd1f65faeabc73ee0786b1118e678a\",\n                    \"cd21fcd82f7175dc4231f47d28338197ff1950b9ac7e8bcd7a6df025cba26708c4e0b215bc2410e42d5cd681cda8be86\",\n                    \"7bdb0450438e55d56e21e08ce2a881b6fe5cc7c8f3b5b053cde6358af34d36fe53428656ff19a7f7cb757b58ac40f106\",\n                    \"e18afae1c74f676cf72b8a0f8f3c8fcd87c4ec284b8eb31c70dd9d855bbbae4a736a92e2dc5668201cc9ac2245eb3b02\",\n                    \"40a3db7ddc08f6ccf6b257cff8537ce629077c922533bf06bd4dbfc02b3d278edcbf77169f4bac31e746c892be307182\",\n                    \"930db5f31fc1a4d50298d3bfb8799693b856fa2d65c19298a5c0b3d500d7b24d03848a5650f7b2fd069cc8466385b68e\",\n                    \"2dbbc34c15c05c549e733cb03513f8bd5a6f2b851eb8a330b4042bf932d997112da0e3edd7babbd06a8c18d79a017e0a\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.020853715273603063\",\n                \"stake\": 8.1003178657386e+25,\n                \"stake-per-key\": 6.231013742875846153846153e+24,\n                \"validator\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"843f409bbd76af738342d111fee0017fd5fea404bc1cd646a5c4992f551a16238d7d53a6fa8b2a6b1eada235c2eae285\",\n                    \"0a96b4332a7f3973f7693a2f6a80755981adb090a25200a4c67d231c5490af2b66e4ed5edd520c8b096bb3b65b121315\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.003990216343158035\",\n                \"stake\": 1.5499406368878e+25,\n                \"stake-per-key\": 7.749703184439e+24,\n                \"validator\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"01af43ece70486159d0fcbde2986037dbd6466ada58ae584c8a38f5f4caafab86835c9643b3380fe357dc19d3e97fc8a\",\n                    \"038ec53f77c4f8d58a81d9c13cfff5f1f0d57eea309bb0632fe76687a8f663c5ba83faddd23845d20ba25a359dcdf592\",\n                    \"050569b98c2fe451e981e964c13d65e0b922825d0570c51f2f8883b849c32fbc15415e71045544f803c1286037abbe8e\",\n                    \"0b70c31a49b53761b2259674a2bb28034aaab0dfdabf3cceb8ea0bdc451333b712c2d897a32578ea877a4195847cef86\",\n                    \"133acf05ac9701c81ffd1150ec12dc016b2f6083a979aa90b1f8c63619700b8d8fc85661d186dee6dbd4bbab465c5392\",\n                    \"06f8dc945fb93c437d8896ae5cfb4143c065bf525eb3c9ba1144b1c542098fee332e2b9b543d028df7bacbda0fd5868b\",\n                    \"08a261d6b9a0e5eabbf07335605a97917c35158379a3a00da1065402ef7ef49759e5bedc39561182509ec0b3c171b003\",\n                    \"0a2b57cc2a8574f56033ae74aa4e597012218bfeecaa3f3801a0dc3179b60b92cf99bac581f6b1ab8e6fb00dcc496617\",\n                    \"11c43fa0691d6f706c57f8cc85f094388bd0f6b7edc95b5167fc3eec61283dcc20c92e92d5377e37eb28bbf00c154513\",\n                    \"1471e1ec34c64eed9df5640f4c517d144395e45a2cc373dafec3ff9e7064b969faab23309f1511873419c1cce8382513\",\n                    \"0090a1b348eb265400f6cece55967e3f1acc626b1c401c75ba0c85584811ed941d0ef997b3c349549a7cb4a8cd5a3e89\",\n                    \"00f97b06aa7b67db2dbcc7f3ddcb05cfb9e128de3c672597fddd102b827424d183865178dbb8759a098fe8b274cca405\",\n                    \"0643b03e4436172ae33a0bc3bb385152e1493f50475331753bbd58568cce3a334e79b9e4996b469fab2cc274ffc79885\",\n                    \"0beeac0101c221ad63ff79835e52dbb4b3679dfe5132917f57480a62e212a672853129bf96a38632b06a2eb47f0c370d\",\n                    \"0c64925d32333c570fc42d8d059c8d51c0c6891b7d01949839924b9406af82f3e0c67f7ea8d613013783ef378509ef0d\",\n                    \"01907faf33066dfd001fa0ccccf0dbf5bac13c45a06677fd476e4a5e88b0bfe68a36bef81b9439092762f6dd053fbc10\",\n                    \"0742d2fb9e19f3956255c4b866fe2c80b37a32a9c08eab25db88ac58c7f883e1a05faa7df005b5b102d361fad272940c\",\n                    \"102fa26fee93a03582ff5dfd459d73b1ef155918b17681b2d9882ec6a541addf0dca42ab6f7b5aa298498a59befe7990\",\n                    \"1280a5222b63bc66c31176a1b321db7a5207d7a37226ba25b769a776ddbf2f50ef90d7da28fe8feed3882355c561f910\",\n                    \"0cd4f33a299dd068042d5423bd1fe00f572a44d20137c093c6f636a069c0913e76cd04131554a8f4c4a91d892f161419\",\n                    \"1a846c0d8c648c4c029093e21d3e5d64179ac94e74b422cbd8a157b760fbbd8b556b0c4cc2eb04f155ff22f38c288b02\",\n                    \"1aa713611e2496a7136b9bcddeea0dba78ed1f8d7f2d67cf1c6f3cedab549a00e2dc45e7dd8a58eb0f81e93f2feff507\",\n                    \"10ad4173cef1909c35ce7464816b9f6809e336e8b70d92bca64b11311722bcbf33b9578a60e96d305b3a9f013c297c8d\",\n                    \"1f4d1ca9f1ecde65af73e44e4ae7912f91ed2aa7ccacdf11a660d172200b06fc509b4f5fb879cb364269a547bf72548e\",\n                    \"1f2efeee18134f78a2ce7d483599358ed228eb45e1124e8eb3cc741486d6eac76bdf6dfa2450bf54cb75a71a2835bf83\",\n                    \"11a4a7b7323dc3e5e6bcf64cd97b65662bdd5cf516ee85dc72647e22f7fb983c08b01906d7e8fa0d9a638bc5d691e711\",\n                    \"244170fb2374a10997f4f39b0540d98a4fe30c4325ff84ce7812f6e0e7660a4b3583bf4214a9defdbaad3db3ef76938e\",\n                    \"226dd250b580edbed2239bfdd268cef37fa5e8ec5f323cb0eae5a830c1e17fb8d2e45dbb0ba90e383ed95f10ed9e5593\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.039593686403440728\",\n                \"stake\": 1.537958302088339674263e+26,\n                \"stake-per-key\": 5.492708221744070265225e+24,\n                \"validator\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"7ee2bcefa68b5d2308297cfed07540e7575d6978f92e9833c0d1f0cdd01102275c336378c93c2da627315130ce97e211\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000060075984535071\",\n                \"stake\": 2.33356293805e+23,\n                \"stake-per-key\": 2.33356293805e+23,\n                \"validator\": \"one1sm062xxqdrm8pud7qqmwlf8xcm2lzwfq4xqzk9\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"f400d1caa1f40a14d870640c50d895205014f5b54c3aa9661579b937ea5bcc2f159b9bbb8075b516628f545af822180f\",\n                    \"3325cbb57ee9c83269f593be1bc8fe1cba61b98bb41da6834203fd9cb022a36ad89806c9c7a75dd910a0dadb9acefb17\",\n                    \"90953c98e139de210191c57a01cde123cb7d2de7517da0270c78f0fb8ec222341165ca1569077dd7951accc0b5070a03\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.005000260711347262\",\n                \"stake\": 1.9422774619325124999e+25,\n                \"stake-per-key\": 6.474258206441708333e+24,\n                \"validator\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"0c7a28e86f911493cafb4fb7325a08f763d5cd4cdd627971d4e09e7ef2471634b21e32ccb57b13ab8cdf68c78287c314\",\n                    \"070d3e9aed0dd70d8a28d3974f39cc535ec2957f0ce2ab61eccfde53dd5777648ab8f666f582319e6ba3e43c97ca568c\",\n                    \"5124782156094cf9aaccbcc5eb0f79d25db882352cf21b490c8cf70136d20405520659fdb4961396d3bb363ec4d80e14\",\n                    \"c27e8e691c26104d809022a33226fc9df0ead19f35d030054dfb847f06df9277a44b60d64bb8616ce2b911b76a7e2498\",\n                    \"0ba26722c41987f55796edc8baf049f63e48e2f044675f70adcde17a94247bd2333ecbce6c1b9cba6ff770dacbf33500\",\n                    \"20d0791f77c7e82988628d05948655b9a264df9a6f1d4ddbda8a22a28622aa97a6fb6f16f46b16dbcba633165b091304\",\n                    \"3659fdd8668677830bf2ff054c0e58ff46fc174c19112cc7a5c761b9a4ef8c031dab18793ae0cc03ca7a6eeab1b2d60c\",\n                    \"f82e45094a111e9c85321e6779598b122bab7584f584be1c667ae5a186bc3eb14784ffdf3b78cdbb03b3c3dc788dea04\",\n                    \"65876ec707a3ddb5c5ddae8e9e954cdb8e9913806df683109d8a4cee24f03bf32db85199859241c7f0b221c8b00eb394\",\n                    \"8b76663e5fb776bfb89ed8c118d56dfb4ded0517aac66ab20ba942a22cb3284a916cf01a8a6d0a9cd6a2f88aeb26d000\",\n                    \"a53fab665af692aa971d8f43752c347fefc2a2b5e83d5dcbad8d28ff7e629d7891291712c7721dd0e1d4fd6665b97388\",\n                    \"a79f863b7e9a77b599c82756e4a635661223de7166ecca7d2549c9c5457b6e2c3e4ca3247de1259cf4fa920646bb980c\",\n                    \"5b993e01879f8bc389a42f6ddd22430681937bc34dae44b6660afa944b2888c3e23dd2321a3b11c58b02c245261a4697\",\n                    \"6905e31b0a8c2b5890f0af8dd6f81931e893120f0db983ce1406fa742161db12f9e28b7095fe43aca3c6a6d9b24c8897\",\n                    \"58e71a7b7de2ff603b62c8aa36686e89626404b6388279929a3f96a6317964df9a8cdada09421a38cc859bc428009910\",\n                    \"164fe2da87e1e07700e93ed752924dd9243b1e4f1dcb437ab2826f4e381cfcb14035a24ce4f464d24aa3f4462a9ee815\",\n                    \"a79b037697b9f7d3c0e0334d9faa249abd3b4f32e525da18cabe275e102869a24f6e6321e3dd9b2347a9591d00d8b70d\",\n                    \"bbfd933a7c834f1fa71c9437dc78764478a7459f888f63a09fac489b6f5e4ef14cf9a912206abc960c0f9ee3d295da18\",\n                    \"c44062315f968d707543b41882793ff7c945a0fd53f6d08ec355c261a327a368af7d1dc60da392b150a3ebfde4964708\",\n                    \"dc0be4d95496d741547821ed34271dde5e5f072c1672010f75fd052af44ff592d5f07c75a8c4328913a0b4a7cec17195\",\n                    \"b6cea881ce7ecd6efd223874e509647454ce2c96ddd25955bb7e00e9e72cde34a3f31e66fb61c97003f60d261298d191\",\n                    \"9f28121f54bc1619b0f2534b3fd7b4c14837e385b76e28554a706c042f38d8ba075a3e2e46b8d5808b3b0d7cd7d0a80b\",\n                    \"c44709b345924d9e39c9a6a087ac205b0f8daec3523362e47bcc1cf88eb8f035bfebd0552a7e1c2c10b84ff6cf2f5017\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.033382391081296406\",\n                \"stake\": 1.29668970410843072142270778e+26,\n                \"stake-per-key\": 5.637781322210568354011772e+24,\n                \"validator\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"274c3ed226189072023a884a7f969a11c22753cff768c277a55cc5a416a84f41b9fc213b249894e0434f44af321d3987\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002664536832495\",\n                \"stake\": 1.035e+22,\n                \"stake-per-key\": 1.035e+22,\n                \"validator\": \"one15hs9d9kdnsd5jxjmu507wljcmmdfe390akxe3d\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"54e176df47fdf17c32c996ed028bf50ccd1e4d7c051dc73131b0541f40ee5169c1cf64f530b5e4c590c2188686590f0c\",\n                    \"bdbfe3ebd8ce4146a62353f7554e404c8a61c5ff5ce0f90a93406e878302f5f8a975ff51d5cfd59d27e1fae7d9e9ff80\",\n                    \"c83de3a015e1727a3683b487ae46ec6ed7137d59c8d001f493f098b4402e39833e794a2fd7f482ed90a7c0ad274ec50c\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.005070293352607898\",\n                \"stake\": 1.9694806076427867423e+25,\n                \"stake-per-key\": 6.564935358809289141e+24,\n                \"validator\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"3346dc4f8d994567f8635971552ca16645fbf98dcb5f0f021d4d41ce87428d7069440085dca0d9e24c7d3ed07b40bf05\",\n                    \"988db9687986411eac53e47ae111d43a8207450bc8c9da4b81ac912cf771801c973cded575fd03889f30d9a261649989\",\n                    \"b06e9dd188cccf5bbad858cae1fc63fe55bb92103dd7aca9622f8f28568bc74b498ce306dc5f0dc5c09a0914e1e20a91\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.004479194603600519\",\n                \"stake\": 1.7398770241e+25,\n                \"stake-per-key\": 5.799590080333333333333333e+24,\n                \"validator\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"0eb767c092e954719bdc050347adbaf29e1e920f43e47ec9b5697d63c0684132b8fee38fc03843874f711cdd5bbfea01\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000002702566337896\",\n                \"stake\": 1.049772e+22,\n                \"stake-per-key\": 1.049772e+22,\n                \"validator\": \"one1x2x8mhelj76dmswdps0f7xatap8z6wuyxadyxj\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"1feda32503cd2a1879ac0a1f9fc7188069ce802bdc19cb7e018ada5cbf7344479a9e0c25edb5faa8b2cb3db93d32e10a\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.000003635354777500\",\n                \"stake\": 1.4120999e+22,\n                \"stake-per-key\": 1.4120999e+22,\n                \"validator\": \"one1pjs6cc4su7gexjf4zwl9h8ypw3lgcuyqfvjqa8\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"ed59468d36e33f0e2cd21951c55e41420a6736d23ef013eb3a39f6b4a9290c6353c0a3ea996bc5ae65bd4a5776f76c96\",\n                    \"aa70ed1b13435ae2dcb18c94441aaae8bb6875f82e3b8ac79e0b150aa19bd80eff0e645bb7f9c11357f3eec08cbb8b86\",\n                    \"1da48ca1279c4945c620c2e5358355d2dff218ea4b36c8a90e06baedbad673a749854593618000de20936205060d1106\",\n                    \"817c6a12af36c867b094fbb51aed5ec7f959ba375c77609f230094a0b7d53f68fe27b7f78e29c73b333c1cd8ac84328a\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.008298796398438666\",\n                \"stake\": 3.22354495822102222223e+25,\n                \"stake-per-key\": 8.058862395552555555575e+24,\n                \"validator\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"a911bc83a580cf27c4db1e9e337571eb4a9a57e1a20683db4b2458d566a4486869085c7173e8d28b89743b4ab1ec9113\",\n                    \"cc5d617fc09fe51e17c662161d31775939f5d2c697281474470a4a93273083f702a384bcaa9cb2abe80b9a1921335a13\",\n                    \"727560b71d3913af37761f21905eeaae5e789e4ba6eea5343b84727aa125e8730486ad4cda9d162d2595edff55593297\",\n                    \"0c625906b4a10a9772ad58099ab35cb0e959e5e7231a05a5bda30141b5448b4e8cbc4f623d4def4633f8845b48c09183\",\n                    \"527d82b5fb83572c02c8f19565d6eb73da8bde325e2fb1ab2c9d961ef5f7d32dd4156064d882f40a762eccf93775d197\",\n                    \"596f3d0e70be4958cf1279e59ff3630c425ef3a0ac9016a53f41bed463acbf4cd5e5f5f9d8dc8810239c8dd761f6b58f\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.008380521155683818\",\n                \"stake\": 3.2552897337922133333e+25,\n                \"stake-per-key\": 5.425482889653688888833333e+24,\n                \"validator\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\"\n            },\n            {\n                \"keys-at-auction\": [\n                    \"cc5f9acbe434aacf87b6059571452c558eb8519f1788dbefc8c589c75580a304fe7e4546166cf7712da37d1aa284d215\"\n                ],\n                \"percentage-of-total-auction-stake\": \"0.001625061553249366\",\n                \"stake\": 6.31231172e+24,\n                \"stake-per-key\": 6.31231172e+24,\n                \"validator\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\"\n            }\n        ],\n        \"epos-slot-winners\": [\n            {\n                \"bls-public-key\": \"07f8d68fb254a919dedb2246ab54492dd1e346916d8244b2a12158fa84d2a2d5d680395b9788547628c81a4e64838e11\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"33482866000000142857000000.000000000000000000\",\n                \"slot-owner\": \"one1wt9cvaduxh03n8rhw7aqhhx3s2cpffws59xjya\"\n            },\n            {\n                \"bls-public-key\": \"edb61007e99af30191098f2cd6f787e2f53fb595bf63fcb4d31a386e7070f7a4fdcefd3e896080a665dc19fecbafc306\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"18654500000000133333000000.000000000000000000\",\n                \"slot-owner\": \"one1tqa46jj9ut8zu20jm3kqv3f5fwkeq964t496mx\"\n            },\n            {\n                \"bls-public-key\": \"014d802636d36a50a687512b4f81f4d93324518c8099884b90e5467fa3d7f7fd52ed2e65892db70edf6df4a30530a78e\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"15537035000000799999000000.000000000000000000\",\n                \"slot-owner\": \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\"\n            },\n            {\n                \"bls-public-key\": \"6d320742fbff3aa1877aadb9316a865edbdecb0fb74fc973272d73ec1deaff131b653c3ab7a2b26753c717347f450a00\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"8354225889561732707889521.000000000000000000\",\n                \"slot-owner\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\"\n            },\n            {\n                \"bls-public-key\": \"11195b7f18410482ef8d8484a7ecabe391fefea6f4b10bfb79e6251af6299f30a62640e6eaf99ac77fba100316908a10\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"8354225889561732707889521.000000000000000000\",\n                \"slot-owner\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\"\n            },\n            {\n                \"bls-public-key\": \"8fd5c4406e6dc3b3c6d10b36d6b7c81887a77e32e968c3af7f591dfc8a611c1550078d390714d49934aeb52e7f879116\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"8280803699959500000000000.000000000000000000\",\n                \"slot-owner\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\"\n            },\n            {\n                \"bls-public-key\": \"6f7c7997c84f2332b86966beb38728a5bb7555a3363ed1e65071e941ba44f49b6681e8b9d00bcdd66ddf6eb1f0be6c8e\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"8280803699959500000000000.000000000000000000\",\n                \"slot-owner\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\"\n            },\n            {\n                \"bls-public-key\": \"413ef5bc7ce1ebaf352011ba39106d8fe63b181462b49978649425a95f563e0412ea0a48a5dddd4ba2d6135375a36999\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"8190461893344000000000000.000000000000000000\",\n                \"slot-owner\": \"one1427qn37jngpu78lrdaw5e0q923jjcjkcra3t84\"\n            },\n            {\n                \"bls-public-key\": \"ed59468d36e33f0e2cd21951c55e41420a6736d23ef013eb3a39f6b4a9290c6353c0a3ea996bc5ae65bd4a5776f76c96\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                \"slot-owner\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\"\n            },\n            {\n                \"bls-public-key\": \"aa70ed1b13435ae2dcb18c94441aaae8bb6875f82e3b8ac79e0b150aa19bd80eff0e645bb7f9c11357f3eec08cbb8b86\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                \"slot-owner\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\"\n            },\n            {\n                \"bls-public-key\": \"1da48ca1279c4945c620c2e5358355d2dff218ea4b36c8a90e06baedbad673a749854593618000de20936205060d1106\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                \"slot-owner\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\"\n            },\n            {\n                \"bls-public-key\": \"817c6a12af36c867b094fbb51aed5ec7f959ba375c77609f230094a0b7d53f68fe27b7f78e29c73b333c1cd8ac84328a\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                \"slot-owner\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\"\n            },\n            {\n                \"bls-public-key\": \"83cc0b3f49335a03945b09a34f54ccd2356f2c985280c61e27732d169d1b394b688178e6a24f81e6646f4dc5e29d6f0d\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"8028991801676366666100000.000000000000000000\",\n                \"slot-owner\": \"one17qqnjy4llulpcs3g2uzryhehk5rcyedy4qhet6\"\n            },\n            {\n                \"bls-public-key\": \"ce157d08213d5480ba16234419b37271cc4febb02a99271c32a6f7704ad614ba61e1f971513822d5971873c668486299\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"8028991801676366666100000.000000000000000000\",\n                \"slot-owner\": \"one17qqnjy4llulpcs3g2uzryhehk5rcyedy4qhet6\"\n            },\n            {\n                \"bls-public-key\": \"7432e4013a3a9fa4922699132e39a6c4fb1e4d867d1d5bbcb4dcfb41f11fbc1b97992e232678fa11500aa56a7c4c6895\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7949748585611733333000000.000000000000000000\",\n                \"slot-owner\": \"one1wael8exj25pw63qrjmcuk0sv6qp8v2p8yuzjtr\"\n            },\n            {\n                \"bls-public-key\": \"6f05a4b70df21c5ab7d50ae639dfa879d50b26f01cb7ac47f098ca4e81df2767ff63feacaaafc3d0eb61b99f5782d384\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7858003787207954545000000.000000000000000000\",\n                \"slot-owner\": \"one13n974xtdzxu4uu2ugz8e2ml5p8t94d8x3tep3q\"\n            },\n            {\n                \"bls-public-key\": \"7ce51c0b6a7f532ba775f189f9700df7c5341fa7e976b42489a469acf79f83c8b7e88a7e35080477a9bdd7cf3449be0c\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7858003787207954545000000.000000000000000000\",\n                \"slot-owner\": \"one13n974xtdzxu4uu2ugz8e2ml5p8t94d8x3tep3q\"\n            },\n            {\n                \"bls-public-key\": \"8adf7db7a7e82fffe5ddceb3dc3798fe3129665391ee195cc6413851a805b43351dffcd9311397a2b13ca1a50bf6c18d\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7817211035362950000000000.000000000000000000\",\n                \"slot-owner\": \"one1yq84hen4gunn6d5q7wmgptk45z5pum9x4lg3g7\"\n            },\n            {\n                \"bls-public-key\": \"7a4644791083742c77bde9197ffed2bf693a8277edf366a8f9e5bd36f9c43b98c7c1ba0f6a3ff397ee0278398d7dcc09\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7817211035362950000000000.000000000000000000\",\n                \"slot-owner\": \"one1yq84hen4gunn6d5q7wmgptk45z5pum9x4lg3g7\"\n            },\n            {\n                \"bls-public-key\": \"eb37778ff56f77889fba694d66dccfa722f9801b49b9a33cda83367aa04e85aa89c8503f3270022f67ec765ebb552816\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7796224637159500000000000.000000000000000000\",\n                \"slot-owner\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\"\n            },\n            {\n                \"bls-public-key\": \"5a76dea3da90cda648ac99912d3ea71f7688341cc6d05c48b91d460c6ce23b58aba59516dd0165af65112b5f63c64e12\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7796224637159500000000000.000000000000000000\",\n                \"slot-owner\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\"\n            },\n            {\n                \"bls-public-key\": \"843f409bbd76af738342d111fee0017fd5fea404bc1cd646a5c4992f551a16238d7d53a6fa8b2a6b1eada235c2eae285\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7749703184439000000000000.000000000000000000\",\n                \"slot-owner\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\"\n            },\n            {\n                \"bls-public-key\": \"0a96b4332a7f3973f7693a2f6a80755981adb090a25200a4c67d231c5490af2b66e4ed5edd520c8b096bb3b65b121315\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7749703184439000000000000.000000000000000000\",\n                \"slot-owner\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\"\n            },\n            {\n                \"bls-public-key\": \"17e032d34402caefd647ed2779d1c94aa2a0f164682b5a050000bce0f77a96b59de9e25c9cdfd4e67e6a28d81703df0d\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7747952004070000000000000.000000000000000000\",\n                \"slot-owner\": \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\"\n            },\n            {\n                \"bls-public-key\": \"93c3332eda5a0d3e3c481f5320b60df4be663f7df1a365d28e6b26a10d7577102b4f3c1bea575103131750f19a762089\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7747952004070000000000000.000000000000000000\",\n                \"slot-owner\": \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\"\n            },\n            {\n                \"bls-public-key\": \"6caf1501cb636fbcec5ff73cd40ecc0c38b2855c8418fa3cb6a006133ffc6e03a84979b87c5ceb991ea3a9157a23c099\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7705518108147600378500000.000000000000000000\",\n                \"slot-owner\": \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\"\n            },\n            {\n                \"bls-public-key\": \"5945bbafb90bfd39eb39d5ff78e7ef193aca0bfbde7d56360ac9750d82935758cd16c0b0df446e2837ea90d131e51c15\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7705518108147600378500000.000000000000000000\",\n                \"slot-owner\": \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\"\n            },\n            {\n                \"bls-public-key\": \"f770f6870b1bf4da303e792009741d6c930ddb70ca2783f1bef640cffeb54fce1b359937943c076ae09b3fda5c35d198\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"d26eb416ab1003578cb8fc6cc73dd0fe6362aba6b255658f3b9e9fd5c7b3bdfd02692bb0aed6c2b7d932176145717888\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"9683cf11fea4c31ca1f1d295d8526a60405b555785ba152f740ee9d8213fe55faf9a2d75f68b7972cce87a6180896e98\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"60de05a9fc29a07778323ad5f5bc3036499d579801795b02f019109840dc7f6ec68b8f52b5e4b8ab0dd3a3c6d6296018\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"b8ee5acf7daf413625230da44a86a8a111d6e8adec486afe684bced0967134bb8f920bb2efd8481c5e8c1f2413a79d85\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"67efa66594a81a2f82f7197204d3f83fd8f07f21be57293628e134d84d9810f2ff7ec45cb06692a3213865f364016b0d\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"a4c2e977e695c5ce8b3b9ef25bc450b6d2a8d1a6f2aecee2465a56693fd8e9c783e661d3a2e779902d16cb4ae1e1ec05\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"091fdd3b868e9a9966a73236f884c2be8766197800fe3bc5d99946415c1ee27d1db88a6d9d5d345d1a03ff27a4a6be81\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"73db00059344d9039cfe25d69d904ba89ab8d468ef9e84d5e046375445ee2b04b48f87588e0d39df69eacc9ea5653016\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"18110d1f458866fdc4b79870f95e6fb9c502bb3779dae5aaaf5b554a5246b33bea7f14296f145e6f74543229a45d9c06\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"55e536cf0cd5c3744e4f728bc84e5d96ddd94db50ce7d245a9b10e2ebc842779cad48a583cbe0f7ecea0053415d1ce82\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"f9ff0de79f286d8d745bad5e763e517ee4f5dbcaeeacecdf8270245f4c036bba6cbb4499b68be0cea7d01fda1ab0008e\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"89db7c6abb1329773ac852f226d1bbaba0bb4ff675819f0017e8bd6b1075153ffa0621895e349c636d5c662e26050097\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"d4987f2d4013fb3cc422b1812e37804cd01e7ce82fd9eb4e74653b325f3d97afc33c0bccdf3233a5b9d4ab4e856c590b\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"56992d9f0f295da3451e9444bdc080b5022fffc9063e5b34bcbb3483ddb643e36b3fae91ca59e46725c9eacc89253717\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"f01fc84c396ed30e2f9cb85ee7d233718b3651539c91067593acc78ac01dc085b5c452f9cfd6a532ddf4178da4711297\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7694795507375997025875000.000000000000000000\",\n                \"slot-owner\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\"\n            },\n            {\n                \"bls-public-key\": \"c0cf1af7bb162b8b9c4e6496cdbfffadcfdc11ee98235637624b9b338c9fb15853961ed163da9677df2e1a1c8a977299\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7551880671224666666600000.000000000000000000\",\n                \"slot-owner\": \"one138p2807r9ywy9ux82kk3pc0z9mff65ystv3hpg\"\n            },\n            {\n                \"bls-public-key\": \"53be1c32403da5a866ed6122655ff70b938c511d0eb340309baa414f98fbad61f6b232ca10ad792d01e4c8fcd5b15388\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7503134874470000000000000.000000000000000000\",\n                \"slot-owner\": \"one1xrksyam05h78f47l70rtjsk5njy8u9f0ty995h\"\n            },\n            {\n                \"bls-public-key\": \"3a30d5f923cfd0e3f673f62b4161c47b452743e1f50044de3df07c0f51d455385893668fedd75e63248a02f903dc4a01\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                \"slot-owner\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"bls-public-key\": \"6d5351b8c815a3d89685a82ee7173f2759ccadc9fc2faed0b9b0b4f63c7b9021551d1cc78f7ec0aba62e2e577e8aa68d\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                \"slot-owner\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"bls-public-key\": \"87970ebfed4e6e27cc7b546537c4de38248d985918c6576b6559784fe6ac02a6841bf856163635e6e93f8a476b924c85\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                \"slot-owner\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"bls-public-key\": \"6480fdc6e2c7f03c9cc419aa9f3ab79b0ad5279cfdc7c45363a17de3832d97d2ff280487c9482ba4622768d5ed208681\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                \"slot-owner\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"bls-public-key\": \"044b97305780a0cc6b24f649fbe8b507794bf6e4d0c1268658cdc7b64d38fa0adf45ad81aba61aaef769c3c0f9b0ba0a\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                \"slot-owner\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"bls-public-key\": \"9b4f2ed9b5b7046cd635f986add792518994cc162be665802daff25728e505f3e84ee42ca21b966f078427cee00b568e\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                \"slot-owner\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"bls-public-key\": \"41261930c23c0a5585f5fce4dc5b39e91dfc76bc67677210a79a462a2ce62a41fa68fa6ac80e2db372fda35dd95ce016\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                \"slot-owner\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"bls-public-key\": \"5f4e20b6ad0cb25c0d2a9eb1b109e8e873b405d6b25960732a28c5af378cac3df86950bd136f622e31f0e5cf76f0130e\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                \"slot-owner\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"bls-public-key\": \"bbd0666e619c0c3f10f44619a8f4a872e48b13cda499b8c8750a05c5dd714e7e49cf852055fd7e0a4910f9ac24964e83\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                \"slot-owner\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"bls-public-key\": \"7b3d2d588c731a78607a8d8043223bb7f87b4292543ee2ecc3a663e89d92b7a16007eef23084937bfdb2df780970f487\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                \"slot-owner\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"bls-public-key\": \"3ef63d9e8c9f045c6a2fbc4488a92688337ae5b3386964057ac8784bae5eef8227f3bbb8e4f099102b62ed0c6917e417\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                \"slot-owner\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\"\n            },\n            {\n                \"bls-public-key\": \"0664f95271d09374c07331aaf2367d6710785952b1ad09153eb50148669c2f8fdd812697629e9c1bcc0fbb20969eb98d\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                \"slot-owner\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\"\n            },\n            {\n                \"bls-public-key\": \"04905b31875575fb2c51d75261efe27c61f9181eac69d4617e678a954a1ef9f987c3c22646be919097e5d5f8250c8009\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                \"slot-owner\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\"\n            },\n            {\n                \"bls-public-key\": \"a99e95e5d0dd8e9555684df0676c42bcd16a4a593d71bffa53e19c7beda44673b6b401596c477e341e072f9e1792a499\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                \"slot-owner\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\"\n            },\n            {\n                \"bls-public-key\": \"b11978de3a5edc73d6c70a6fe66d8c0cd48179ef58c43ac9eed7bff1b7143d720f5e7fa8672e859faaf2f86ec6a53389\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                \"slot-owner\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\"\n            },\n            {\n                \"bls-public-key\": \"1b329b6e99ff7d5026b3b907dba62a8977a01b11ca1e8b507c6f2ee42d4614e176d32937d9f9ca8411ec7f537da1eb83\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"7053389124502666665500000.000000000000000000\",\n                \"slot-owner\": \"one1kfngqk6c2fnwjt9yyne6pqqeux0su3uzq0y5uw\"\n            },\n            {\n                \"bls-public-key\": \"eb2bb03ff0a8502769d3718469bdd4acf592d752b372d6c184530bc19c13fc18786d4301a478f0572b22a8e42553f409\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                \"slot-owner\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\"\n            },\n            {\n                \"bls-public-key\": \"f7f8425f0d57c469cfa7dcf2af856792c1ab07e94762de09d53e39b4897e9b75f865be8ffc2f2bab8c88f177f86f3c01\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                \"slot-owner\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\"\n            },\n            {\n                \"bls-public-key\": \"22ef49408747a9553e4a3f77832a15aba9294f8ff22ac9566826b384ef1c2b4eeafc791c19f729393f4a1a08190f3d19\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                \"slot-owner\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\"\n            },\n            {\n                \"bls-public-key\": \"1a675b05b7787b10c0cdbc08a1ed3881a841082ab0b62bdfa7fadec77a02aadedc3d47c096c598d403a2c06410f51281\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                \"slot-owner\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\"\n            },\n            {\n                \"bls-public-key\": \"1fb8c58a2d557f659cc11f423df5efd7eb9e7160b3d77425dcfb650a5714c640aa3997e548462c82fd65a122399f040d\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                \"slot-owner\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\"\n            },\n            {\n                \"bls-public-key\": \"248288b3a44b0775da68d6cebd4fdafb45cc8e7e4b90606c0ce174b09c941fec361b61935aa77746a98eeafe11b81689\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                \"slot-owner\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\"\n            },\n            {\n                \"bls-public-key\": \"7fc4ee1eaa81a6287c6d9d94b13c0f8f6c5ef4da02a44905220a57e2dadba6a787cca7c0804c760247458c0835f28681\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                \"slot-owner\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\"\n            },\n            {\n                \"bls-public-key\": \"11fe3720af7c383558400a2ab16b76caee83bb158d973e5fecb7b21f2fea82eecca2a68d1c8a50814d54f80041edac0f\",\n                \"eposed-stake\": \"6681356915390451785714285.714285714285714286\",\n                \"raw-stake\": \"6805096873936133334900000.000000000000000000\",\n                \"slot-owner\": \"one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x\"\n            },\n            {\n                \"bls-public-key\": \"861e2d7cb713051e9a2ef95479e9da5be4d192609cb7af95737187abb0cd327aa70cec44ac26dc6844f231ebcbb06081\",\n                \"eposed-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\"\n            },\n            {\n                \"bls-public-key\": \"d4e9a9e708070791c0f9cac4b91cc3c60b6a97cbc38b36b1778d74d7266cad68731f36a471359bd513e9b77e76a28c91\",\n                \"eposed-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\"\n            },\n            {\n                \"bls-public-key\": \"2561bd527a78d0fce8913e83f126e9fb21d1fb5a9f2df85304d03cd3c02fd4c1bd96c52dc8e47fd85dbc09b6022d4c05\",\n                \"eposed-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\"\n            },\n            {\n                \"bls-public-key\": \"3d95117eff84aa5e20b50b0bc9f7321e19dbb991d45396a227711ee9ab55aa7e2057216516c3612b6a9444118f356199\",\n                \"eposed-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\"\n            },\n            {\n                \"bls-public-key\": \"007282a93589fa2522e3e9c659ebd1629ef6fe98921d888414818fe88c3043aaf1619a8960edcdca48928c8fce51ff88\",\n                \"eposed-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\"\n            },\n            {\n                \"bls-public-key\": \"a3ea8b3d50a96ee130d7bc213450018d2ce2bc61380d93c249cc0265ebdb6abf88f79589c524650b243b3cc641669b04\",\n                \"eposed-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\"\n            },\n            {\n                \"bls-public-key\": \"8bab9efc3a1468735d9cdbc526fd3032b9c335a9716a2fdda001616950464cc96def3b8f41262143bc53f5b2fb34f880\",\n                \"eposed-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\"\n            },\n            {\n                \"bls-public-key\": \"f82ed7e0ba50226342e714de452dbf9404702d670ed08b43d022acf00ad3dee18e5ff8961bafe4692de5e220d7694704\",\n                \"eposed-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\"\n            },\n            {\n                \"bls-public-key\": \"02760cadc6ef3d3c1f8b66adbe182ebc252b451178efc168e856870311c8a7005c7060d28ea72c6c7adfab606989f413\",\n                \"eposed-stake\": \"6572507696058877777666666.666666666666666666\",\n                \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                \"slot-owner\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\"\n            },\n            {\n                \"bls-public-key\": \"bd579128ecf1606ec4700e31f1d6f88dbcc45506dd9e94461c8dbd102b44c5dc69ab762c7ec6d5332dbf24658bb4418f\",\n                \"eposed-stake\": \"6572507696058877777666666.666666666666666666\",\n                \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                \"slot-owner\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\"\n            },\n            {\n                \"bls-public-key\": \"3a16916352fb68352c4b266a594a2ec823b473c11e5a175401096597cccf19c8978859dda1718f2b2ebffcd41cea6d8f\",\n                \"eposed-stake\": \"6572507696058877777666666.666666666666666666\",\n                \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                \"slot-owner\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\"\n            },\n            {\n                \"bls-public-key\": \"54e176df47fdf17c32c996ed028bf50ccd1e4d7c051dc73131b0541f40ee5169c1cf64f530b5e4c590c2188686590f0c\",\n                \"eposed-stake\": \"6564935358809289141000000.000000000000000000\",\n                \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                \"slot-owner\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\"\n            },\n            {\n                \"bls-public-key\": \"bdbfe3ebd8ce4146a62353f7554e404c8a61c5ff5ce0f90a93406e878302f5f8a975ff51d5cfd59d27e1fae7d9e9ff80\",\n                \"eposed-stake\": \"6564935358809289141000000.000000000000000000\",\n                \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                \"slot-owner\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\"\n            },\n            {\n                \"bls-public-key\": \"c83de3a015e1727a3683b487ae46ec6ed7137d59c8d001f493f098b4402e39833e794a2fd7f482ed90a7c0ad274ec50c\",\n                \"eposed-stake\": \"6564935358809289141000000.000000000000000000\",\n                \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                \"slot-owner\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\"\n            },\n            {\n                \"bls-public-key\": \"d01b2602aed09580fc73a56cf9bdbd19e14a7bbcf4fee71154cc5068ca7e2765d7b7750d8409e0b22d060afb89b9ee88\",\n                \"eposed-stake\": \"6561561076952000000000000.000000000000000000\",\n                \"raw-stake\": \"6561561076952000000000000.000000000000000000\",\n                \"slot-owner\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\"\n            },\n            {\n                \"bls-public-key\": \"066b6a59ac20487f17a3e9d459b723e5241ddc259e689f177e31d1a81cb38ab75520130c875560ba648457e4a03d4a94\",\n                \"eposed-stake\": \"6561561076952000000000000.000000000000000000\",\n                \"raw-stake\": \"6561561076952000000000000.000000000000000000\",\n                \"slot-owner\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\"\n            },\n            {\n                \"bls-public-key\": \"3411cb61f965a14544de8891e6447bd308f01e59d5eea82d4a48e3e8468acb0a30b90adc55780c48b1a9796b9f96480c\",\n                \"eposed-stake\": \"6561561076952000000000000.000000000000000000\",\n                \"raw-stake\": \"6561561076952000000000000.000000000000000000\",\n                \"slot-owner\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\"\n            },\n            {\n                \"bls-public-key\": \"f88e94c51aeb58cd7f23c9c3b406cf086daa725e30f2c39bf8fe5bd2251dda7c5834bd2da8f6ca2c4f8dc706869b9114\",\n                \"eposed-stake\": \"6561561076952000000000000.000000000000000000\",\n                \"raw-stake\": \"6561561076952000000000000.000000000000000000\",\n                \"slot-owner\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\"\n            },\n            {\n                \"bls-public-key\": \"4046263a8404c6c4099b81861126346b890437c6eee2c943399a3399cbc71a455ddd3583b2cbd1f184bd909fc9777418\",\n                \"eposed-stake\": \"6561561076952000000000000.000000000000000000\",\n                \"raw-stake\": \"6561561076952000000000000.000000000000000000\",\n                \"slot-owner\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\"\n            },\n            {\n                \"bls-public-key\": \"9cdac12c6507e3405edd521d5cc892840b5f79b140ff3c71b6e7c9a4010b886608fc3f83709e1a60232fee0bb2b00209\",\n                \"eposed-stake\": \"6521433223504999999000000.000000000000000000\",\n                \"raw-stake\": \"6521433223504999999000000.000000000000000000\",\n                \"slot-owner\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\"\n            },\n            {\n                \"bls-public-key\": \"f400d1caa1f40a14d870640c50d895205014f5b54c3aa9661579b937ea5bcc2f159b9bbb8075b516628f545af822180f\",\n                \"eposed-stake\": \"6474258206441708333000000.000000000000000000\",\n                \"raw-stake\": \"6474258206441708333000000.000000000000000000\",\n                \"slot-owner\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\"\n            },\n            {\n                \"bls-public-key\": \"3325cbb57ee9c83269f593be1bc8fe1cba61b98bb41da6834203fd9cb022a36ad89806c9c7a75dd910a0dadb9acefb17\",\n                \"eposed-stake\": \"6474258206441708333000000.000000000000000000\",\n                \"raw-stake\": \"6474258206441708333000000.000000000000000000\",\n                \"slot-owner\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\"\n            },\n            {\n                \"bls-public-key\": \"90953c98e139de210191c57a01cde123cb7d2de7517da0270c78f0fb8ec222341165ca1569077dd7951accc0b5070a03\",\n                \"eposed-stake\": \"6474258206441708333000000.000000000000000000\",\n                \"raw-stake\": \"6474258206441708333000000.000000000000000000\",\n                \"slot-owner\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\"\n            },\n            {\n                \"bls-public-key\": \"2f2d2b8fb2bdb66be4b382f8b8cb37f06288a039afda72d37684b69300153916b5e16232440cb510a88c3d41d84f6c82\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"3013edf854faecf8884d9ec5a250ff31ffc64c8776e43c3cb0b68c44d8b36cbb121962bbfa50d5f25df27aa636fe5c06\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"497a4af6682e07a7b2b0e5a2b9df08099f31e028a2f2d17498c091d83cac69ff44016ca7fc0196121c9e96e2300abf06\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"4b2f5d50d469f865cb9a1f65bced9992a5012f737b5a5c1d32fc9fc462991d931871275a733ff4989d206f31932b7d82\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"7f6ced5becdad6859fe9082f70062fd107ee4aa647621b0e7894138a52768f98f562f9624b20a804210035eb322cf302\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"7fc0ccc3154cb611318def73b241644a610dea20a5edebf2837dd3898d46e2ddbd2d6038e5aa4a7e553c5adbc5a41c86\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"8881cda12fd07d1d55b5d615e345164e3251a959636d3c6c89eca39bf2f3d7bda4790c30e97f4aa3e05d65f7ae24188a\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"b414dd265101cf32305fdd7ee8eab64cf4c847c4fc38fa23b1ab2621e518577d77b270bf63a1dd254006c5ab6669fa86\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"b831ee28db84958e2a43c6ffca19a8453aa818dc196d7f0058e028a642caddc5146a9ab0d643802ab15981971c54cf96\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"e6590054e2cf8056d94751242c67478e611f910377f2c0e9538f7e5027659cfb393191fd435d81e8890aa654aa30a302\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"0ac01bf36c064ca3c695c1c5fcc04c79b28e64f6db5e3338aad46159752579c64b59a4f9d683528bcb5084545905ed97\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"31da8512a419dbe5ec4e230cb8d81fa6493922f964d7d7ad4374388cc61edfb55592e568583b8f10871a78918290ab8b\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"4a7a0453f2d35c4c0ccb69e666576785702124d2206808c0aac9e22dfadd0dbf01c38564a5fc80f7fdef62829d250193\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"4c02492dd86d59fdc5c8a283e9e89f5d35d8877bae12faa18b7e1efe6422531419a488f9d44fc67b4ddbd048fb5f8393\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"a25141a3771f001f9a519406e1c36babdcb90a8f31d5986dfdcb5e4519515b3070420e27869ac6103120ae75b005b50b\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"b045a47f8f8976fc489ee79782e13fd1bc5fa682b6df4eea158aa2cb9ad313b168cecdebd79723aef2dc85cb2ac14d93\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"b2ec089fe7af1194c317b2135d6acac70dd6fb14264014d4c2917c0f80dec29180fcce3d5a3b382024fdd3d02d2cbe97\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"d0c1d86af7924349dedd8e4fa2a7dd4f7e263424b29f9d7de47c7f1c2f289904f6ab68fd18f95f95848dc1b5c175ad07\",\n                \"eposed-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"raw-stake\": \"6389033849650863513438888.888888888888888888\",\n                \"slot-owner\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\"\n            },\n            {\n                \"bls-public-key\": \"c9cb0f47b232c26422435f32132b665d8d7489d7fef92d4d37c4072ca5dd3106a0f688afc8443de30c0bca87477fe00c\",\n                \"eposed-stake\": \"6382123000000000000000000.000000000000000000\",\n                \"raw-stake\": \"6382123000000000000000000.000000000000000000\",\n                \"slot-owner\": \"one16f3f9y4sqtrk3eq7gnagr4ac8p25rf08u0pxxp\"\n            },\n            {\n                \"bls-public-key\": \"af0bc63711223af48d1627943ab803da15b36cbab111ed538745024071305a698c837f4df735c8027e3f4c2775dc8704\",\n                \"eposed-stake\": \"6376324000000000000000000.000000000000000000\",\n                \"raw-stake\": \"6376324000000000000000000.000000000000000000\",\n                \"slot-owner\": \"one17nfgz8rtgpl3nlws5q9tdk9y3puyqf847az6ne\"\n            },\n            {\n                \"bls-public-key\": \"d9700e0c3187201017599418f5fd330547265cd23adf6ffab61246e0e764479f649065f0ca09cbdd37c70988c8e8fb8a\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"bcbf5434cf3885d07076474141a23b666c9ebe56480bec8f4d384f0174d935ce613a2edbbc8a33be5c023392d0656c02\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"3f91a010a3037020469ad89cf9dabff813ac2a75ebb1f27fcb7ccd912bd74fa979d3cb8426abddaa6855abb7fde6370a\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"18caa96991cdfda9ad7f6b95cfe2d77ad3102956e6865a211ae7d751937092f98888938655ce3d0cd238860114a82702\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"1d6f1f85f26322febbf7a4e247fc5eb596c6dbc423b189882764aed458ff331f9039f83faa336c0e8d62cb48b1fad905\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"1958891e8ab1ec4e2c528f5a89310cec5d52282c313765d256954b20568683660deb834b291ad603cc564fd1cd6af099\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"61c835bed899c970e375f6ce1e1b29783294a386b262efacbb46c69306f345815a6046507b20f301c1438402e5929701\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"85f2366637f19043d5ce7f95a5b29c3a80661d07fa6896e183e6c715d567d546729691839bf7285f2b01089266fac40d\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"a6081239b7110e4e325cfbd868e0228a3346c2dad0324d243bfe4c5fc1a9b0c584f9ca272f758e3a845ca50ab973c107\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"a9c5cbb9ee93e31d42dde922a5bac46844c08d98cec14eb352c61dd7716b73d9f79bcee6da30b73747ffd00df8cae583\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"0c8a858c17af55b4631b9f6b98300281b34d510d84b9ee72110780ccfce0d540ae1401521a13825bd427439e43c68317\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"dfbe83358f924eb424afc0b25c5f44d35a45ceb353446cf976ef9988e9a4147f634df1c8afd8b3661e68de2fcfdffc17\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"818fa92a1fb6d63134d96f73231bd39330c5fecc5d8f5c124f508a4d2a9d7c99ba69c6601218b6647fbcd06e95b84500\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"bbc239e80ce221bd886af2aa739df9ae09c929ae805a21c3f3aa85d32a4ddec38ab6816cb90d4ca22de35ee10ccebf04\",\n                \"eposed-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"raw-stake\": \"6360907090117428571428571.428571428571428571\",\n                \"slot-owner\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\"\n            },\n            {\n                \"bls-public-key\": \"77b4edba0422fd50576782828227cafaca6d0a7d4a333ca58b2f148142b682aee7cb16547d4f8033644288580362b188\",\n                \"eposed-stake\": \"6336666666666666666666666.666666666666666666\",\n                \"raw-stake\": \"6336666666666666666666666.666666666666666666\",\n                \"slot-owner\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\"\n            },\n            {\n                \"bls-public-key\": \"27172b5ac7b5382ab6b3ba3fa39f6904c6b65a72fc4a640b1caf21237e10b545db003ff9a249c8bf135caabfb4a48c90\",\n                \"eposed-stake\": \"6336666666666666666666666.666666666666666666\",\n                \"raw-stake\": \"6336666666666666666666666.666666666666666666\",\n                \"slot-owner\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\"\n            },\n            {\n                \"bls-public-key\": \"b8574b3a38b89d69087d63e3ca03418f94123b7358ae142234379e547b2138083cffe942d4ccaac34522825648e49e90\",\n                \"eposed-stake\": \"6336666666666666666666666.666666666666666666\",\n                \"raw-stake\": \"6336666666666666666666666.666666666666666666\",\n                \"slot-owner\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\"\n            },\n            {\n                \"bls-public-key\": \"cc5f9acbe434aacf87b6059571452c558eb8519f1788dbefc8c589c75580a304fe7e4546166cf7712da37d1aa284d215\",\n                \"eposed-stake\": \"6312311720000000000000000.000000000000000000\",\n                \"raw-stake\": \"6312311720000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\"\n            },\n            {\n                \"bls-public-key\": \"ff64e929ee6bf37983e13f495437665416c0f6e7862b56c0caa84f932ff48fe68c379e4d483e6088198d25023e949b87\",\n                \"eposed-stake\": \"6300991533586425000000000.000000000000000000\",\n                \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                \"slot-owner\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\"\n            },\n            {\n                \"bls-public-key\": \"67d87257f4ca7bb59c189c5c0d06059054d0796024ec3684b8624cdeb1996628d1bb81a63e23f4cbeef622d70b77b987\",\n                \"eposed-stake\": \"6300991533586425000000000.000000000000000000\",\n                \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                \"slot-owner\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\"\n            },\n            {\n                \"bls-public-key\": \"614e8d1344bff19f5e1a6e7886355beba087cdc0947d2b5ad1eec36caa18325e0585534dd20a37546bf11d44f1e31e13\",\n                \"eposed-stake\": \"6300991533586425000000000.000000000000000000\",\n                \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                \"slot-owner\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\"\n            },\n            {\n                \"bls-public-key\": \"290746460c1101eec00d8d51138309e7767edab00cee8fd6b9a7d5389e77331ec139ef1a57ba79e704db4f60e8c22307\",\n                \"eposed-stake\": \"6300991533586425000000000.000000000000000000\",\n                \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                \"slot-owner\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\"\n            },\n            {\n                \"bls-public-key\": \"0e52e6dec93e100a4c4efcb969cb1582072b67f23eaca88969578cc11c214f03ae1615c9d7cd02ec9b5200301840c085\",\n                \"eposed-stake\": \"6276588865654000000000000.000000000000000000\",\n                \"raw-stake\": \"6276588865654000000000000.000000000000000000\",\n                \"slot-owner\": \"one1f7hfpy33pzw27jzpnt77y6ze2srckrhm52j40v\"\n            },\n            {\n                \"bls-public-key\": \"8f797e45b12648c3b9c8e8bb7eaabe7eaac7836d901eb798470cccfb6414e2e54516cbb2de1aeaf7a5d381651cdc5f0a\",\n                \"eposed-stake\": \"6268719035132111111000000.000000000000000000\",\n                \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                \"slot-owner\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\"\n            },\n            {\n                \"bls-public-key\": \"97e4ac35faf0cac6fe497058f6393ee20f4c5cbb9ce11b425150f36a720b98ae0fd718c6a7db246b1774bb78fa4f5a02\",\n                \"eposed-stake\": \"6268719035132111111000000.000000000000000000\",\n                \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                \"slot-owner\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\"\n            },\n            {\n                \"bls-public-key\": \"8cbd3349056be05795b3c7b9f45d4d985761693379f0d34847da4545d0b9c5bfcb586ef8ecd86ef5e04bc77e78eda90a\",\n                \"eposed-stake\": \"6268719035132111111000000.000000000000000000\",\n                \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                \"slot-owner\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\"\n            },\n            {\n                \"bls-public-key\": \"8518ed7c513fc710fdffe9d2929d9a4c7d242c1ee6edcd07402659a01bdb8f1133b42d01b4661dc46d2f633ad2063281\",\n                \"eposed-stake\": \"6239405000000000000000000.000000000000000000\",\n                \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\"\n            },\n            {\n                \"bls-public-key\": \"044676e308214dd178c20ef48b332f70ab7cb4c0f6c489665dcdfcb73717b22ab8ef5806f0f81e01c8b3e63e10ab020d\",\n                \"eposed-stake\": \"6239405000000000000000000.000000000000000000\",\n                \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\"\n            },\n            {\n                \"bls-public-key\": \"278993988a8c07ffac9d0244c59f8b8c7a3f003dcf2d91d11856df6d6aef44f5289aad2cadb863bf6493322de4e9c019\",\n                \"eposed-stake\": \"6239405000000000000000000.000000000000000000\",\n                \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\"\n            },\n            {\n                \"bls-public-key\": \"29ed233600cfa276295a61f5161b6a3e9671c3ae711f8454ad2fa32fa4cc11aedd57a5c8ddf61e3070c154d38bea9e95\",\n                \"eposed-stake\": \"6239405000000000000000000.000000000000000000\",\n                \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                \"slot-owner\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\"\n            },\n            {\n                \"bls-public-key\": \"1f8ab84a6a98cb00399aa14938c0ca3ffbf3b83555c21559254e5a96047394cda67d2c97037a2ae1d44d6c32b3666002\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"356b0732524bdd3a2ac6f2a09aa29da9a71b73167f42c64e5ba2b3322d82f79ade31b56efe61782f25c354c1dec28f88\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"6302b0a03e573ffc8fd6a51ee48f0d1d66d9320a67d40f807469bc6677d678510c8d72fda9cbb170e06a22efe2dc890a\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"804f4659bbd2c3615bb749bdd363395c6ffea3a3bb95364073295585477c17ccb9fdc4b0fb0dc7620a90c71fc4056012\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"a0301ee493e3a78516929e7a89b6779e828962b8516a4dd41b1374e21a179f00fa6c3b75387c357138d5d1eca6c2d312\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"b1cf54323f6285c959ed261f58b0f452d93659ad7a62e1237c1a66c6ebfc3af6a11e76b1c20f26aa9ca86d01ca57270a\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"2864f5f1cd848f2c7302faf6bdfc7456984365226c3d53c7cd63cd1dd316fee75a7ae48560ba5658ab47497b952eea99\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"2992b4fa2d94d3ba42a43c6cafc0436c6bc33aeff346014e637af676c16f1514c8daa7ab5edf7b431acda813332f4505\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"9f68854a0d27f0af2bfc447cd0cc724857ee90b10fe668e8bbadbbd81a6051f593813f15533004a76c2a0ccb25306911\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"d72a260c8325571aa5cda49b44d7f5fefe86b22a2d93bcd2dd3958a2ccc391f38babcf9a8a4571517df3307c65378091\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"c1cc6891a6234bc6a1c711def8a2d15942a4f6c17eb2758583c0bd37ed59df55d7aa0eb26479d3d5b9ef151a762db295\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"b922a394cd8aeb54d35f4aa01ec21179a177f4109bb25a2db6ea3164a0276ec28c2dd047ac8ab7f6b35e96420019758e\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"be166c82632ee7cd22cb4682b8865cc8755abe2b87f2d3e8e2c168b87fa357c8aa274f2b803b16f5ffe40d5b048c3d96\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"f15d1c1e51c9a9051ebf663171ea304b533ef021b2b954d985d9d5b0bf6d237517936c0d4526e4d124b540995bf98c92\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"0fb881ed1d2d8ba0f1ce94a1ff278d934bf2eb0817a3d1de9a41e944b35b2f56da676cf949219e1538554205705b2f86\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"1c9c5b067ef960dec0ace80c2f56a630d63827b98d29c2a7a564d730e01d31f510802980bc5d291bcb7f4adb799e6f16\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"1d920cb4c5c279dc179d39ddeb7d8d4e89f8a375e022a7d68c06e63a10ae460180854054b6c62ff4f99485aa355d0a8a\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"6c6d16bd9e0e6be6bbaf86aaaa27c072dc1a641adc386f38e6f570479329324a511785d00183de360acf97958717ab86\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"23e1fd371b179cd2abc2adac5a9b237ae61c812a3cb8b5e7169dc8841da0d8fadb815a16657f73c8af27256298a7138a\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"52d655352e524c9e018c8fa56868d1650051dc3892a66572b23b516a0e79ce292dcad125ba61c17d4c69c28560f1ad06\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"e85e14d13b584e3cf86e02c131de6a7868f46db418885e0cecff5d0898bafb9deea5824d68681581d8425907e1f08785\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"ebc506a607d843521bc0362c74495ba7166894a7fd1d8bdb2858783b0655f4b542e54b46820ee504a97491a35a354e19\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"fd77e1e3b2db565623d986fc29ae46a620d4e945455cf4ad2a383e30c61aa95c851fbf2f8e774f732dd654de5dc79f8d\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"1d8eadb7653f29928ba01d8ddd83fef588019d1ee125d1ee9d4365c4077d089a7fe9018d32d6af0a86a75a8f452d6b05\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"1fbbb30e639c6fcecf5fbc428f2aed8e3425a52ea6353221bc12d2a68de711f3c84788f2ba20e84d8f2f34fea043e519\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"62937063063c3c8390c86fd406b3155158fe8ecf1e82b0116e1e27cd8fb021c61c39469658d212cb89168ada8ab89a08\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"778fedb1699a7741eae03dbdcbc376c983b1a23aa9da2548c1706442acc3431747a957cf7aee2ae0fa028bc0c83a1684\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"dfca9b0bb41a358023b75136f51882e2b5396806f4287a0200f772c2b7b8a5981730fbc7558b086da8217969518d3498\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"adcfb3af32463919cb1a8d4cd8fde30d7d47442c771a978102f553ec90d84637d26a8b9a201c738dfa0353ebcccfaf18\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"aeb4aafa7d532057357b88ed869a785595b004abef728e16ba082fad875637691f26b63e5f44b6f3195be9e6e96ca580\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"bcdb69af84771f98edcba335e23748695242dc4c4116c24138766637837e7815dfbd2d30e8c4948eff193e62b2e51e80\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"dd505fe02982a929949a5bca34eb9f98ea7201f473a71f189582161b89866880611a37bd27e0f66d5be4b4cfb7f48790\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"15fe75b1df8039ad6d490f36b9207543971df8f645f33a1aac9e6b95b45880228a28a5c0760e56e090f1c501628f638c\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"1e62c58154766ed812630c9a1db3f00f258bf42285d954bf049d36ba75c7c4ce58dcfbd0bfe50e1455d8f60313fbbb94\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"30e724b5656353eaaadf869676c7068c50d85df2509970ba2ba9e20d6606ca56cc6753cef7a58997a3fd9c0217c3330c\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"36dbe94650fcaa1814f0764c5fdc2810defade312a243424ff0053dd6a43cbf9b7907fb267d8848169f1351e8ec4318c\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"679f3054719461eb4808fbc74e9129d557b3279c44b22aa52983bca178a99303f1e54aa9cdb8d2a78f86ec60586d8594\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"86385311e94f22677c74aaf2c8a7da682301f2e071354e3f88dab16d3177f482b8e691716e77b9dfc6df851d94560e00\",\n                \"eposed-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"raw-stake\": \"6237444010096351270391514.947368421052631578\",\n                \"slot-owner\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\"\n            },\n            {\n                \"bls-public-key\": \"53cb821ec3a3385905be1b2319956f6dbf9d023cc59ef50b6a3c9e88a7779aba506741eebb42eda0ca1a76d86ea4d98e\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"42dab286776dee71b918d5d5ab947f43321dfd59c939f77f0936ccc972e3615f3063044de78a1916893d528415209506\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"b92c957e384e890200c59f98f8d0489a9f23a2be148525f20572b2d4d1eeeccdf6190305d6c89536aff695dbd00fdc06\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"0e293e1acda56f1c622ed3d99a4d48d53feff6fa834b2fd3f8d32e49aa15f01b4d1e7d8f3e6e0113779a4970b5a01282\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"1647af99e7a9c71fdec8f2496deaceb5876814388c4090461de3b28231c242570bb7b5ce551c7f07798f9e6bae7c7b0a\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"52b0e9c523aa7f5f989c1610d4f3fb12462a857ad15ed7ba82f88677ce11dd4505d8b13b12d224aa8d725ad9f490760e\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"4fad10de908b4e2eb37f62127a5e4d9fea5f61b062351722d01f5c88aaa6a3584edd1f65faeabc73ee0786b1118e678a\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"cd21fcd82f7175dc4231f47d28338197ff1950b9ac7e8bcd7a6df025cba26708c4e0b215bc2410e42d5cd681cda8be86\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"7bdb0450438e55d56e21e08ce2a881b6fe5cc7c8f3b5b053cde6358af34d36fe53428656ff19a7f7cb757b58ac40f106\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"e18afae1c74f676cf72b8a0f8f3c8fcd87c4ec284b8eb31c70dd9d855bbbae4a736a92e2dc5668201cc9ac2245eb3b02\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"40a3db7ddc08f6ccf6b257cff8537ce629077c922533bf06bd4dbfc02b3d278edcbf77169f4bac31e746c892be307182\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"930db5f31fc1a4d50298d3bfb8799693b856fa2d65c19298a5c0b3d500d7b24d03848a5650f7b2fd069cc8466385b68e\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"2dbbc34c15c05c549e733cb03513f8bd5a6f2b851eb8a330b4042bf932d997112da0e3edd7babbd06a8c18d79a017e0a\",\n                \"eposed-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                \"slot-owner\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\"\n            },\n            {\n                \"bls-public-key\": \"270770ae9b5b0f041e54579989f97300a556a5df40ed8cc93e49400b8609c9b7feba0f5696e1d2632ba0e0b972a85c06\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"c0118989b68debda37f191ce46ec6473a3f3a4b9ef454b459d03af059b6fb180b82fc7fe622cb77e299e1a7a33c0f886\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"97f4fe2ac8d22e53261e118dcfa42511e0dabacb45e19daf74a920320f4990011278c8a7bde278428beb984f8942470a\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"f9f036489ddbabddc3ffa90d2490b7bf144b9df5e0c870b4057a0247255b2c106b27245d41557df905e083b686212716\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"01a381a48ad4840510433cd65eae2191833c4f1abb50b8df8bb412c8ea2b3981b422da4baf50e1278df7741ca3e3b68e\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"8bfc1e7554db8a9e177e9908a98321ea3b0e03c373d8d242dfba7435642eca4973340b40c12b15697bf9872f2ae17e0a\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"d08a410da71e4803475e85da2df27e0e6f3c8be47124111dde467c816df5dd54ea7fcd2913cfee4c85b3d7df11de990e\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"014aba5f2a6ff7e60a6b05eba5d2b8a8b862e3365bee6fef2f740328ce04a6f8d9effd4356c74f945dcf79feaa960996\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"9e32a40615e85c1caaec6528435b354a569666e1f6c4b144698541e1e8c483db4cd547592b17d01c6a4ee36a6285370e\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"0e6f1a87d949df686c7fa2c8e7768fe548f5954cd47ed4faa1d17d143b180d531a17832e45e015eb1fd27433c1b7e886\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"f8500000c59d4967899d60d9e3533cfc039f3da912e7408101d58a2051a905775d0954bd12c94946b7c431316d14cd0a\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"a041f6c328f0cc0da8b3e3e4f786e9b769eb1aefd4fac75e43f47ee4421e0d301d29162b4fa4d36ce3152d1b1efbc292\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"490adcbda4dfceb740486a620ea2d52d57c544b9e3896f5cf522545f02fe0a915637b4ff3ec87497a9f7b92b8ddde10a\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"8f467670e6a92df732d1bc81c3bd85dc472a82aca9dd02e8db1c69658f8093525e65f1587d817cb325e673e86d5faf92\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"457fead0248f80dc8a63afe6bd5b464d2ac846192b7547a72cda0cb69ea485eb7ed31e75ccfeb64eb1a985210948e113\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"51c513a867c026f966e4c1a46676b760029990755727caa0e68a260e59cf7128358bf7bb20a54261d0a7b2f786061e03\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"f1ae282031413945047e6b52361b542ca1c565b6909bc40f4b924ea6ee7e77afbfb755faaf35f40dfe0ea649a926ac17\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"101662ca51b09da1dafeef24844371e2c3e66daab77c07892439e137f0bab143da26361a6b18e665e974f619fd0ce397\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"e1ff573a1291604950b6b7a6bfd5a7608f517224afd2b4afe50f2172f507dcf9081372b03de372d1fe05aa3f89866307\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"b1a0a8631459f7988e7c5ab6bd326f5c60739735698892fd3531014710864890ca8ca9426c22c287186903238703c883\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"be79b2d9fb4b9a56683d40ee445a6597332e298f0ff3f168cbf5c5acfc4a3ae73b20672517ea06ec9b8b9ee4fcf86203\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"62b57cb99dab8121831d5ee3ce6c1a63ffe3b4f0ce75be53b2aec232317bb1ef8b647f8ff62d610000042e45ca99dc07\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"cd3000f11dae857aeb5c36c9021bc5299549df4b74f783018e735817f4f5c170d54066b9f5b9de1dfb7aeebc606fcd8b\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"3dacf918e9fd3d9d160722efb0f851c4da1f47f28566496ccf402719ba6b4bc435d9d52259e80674e71c78b622ea3283\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"686dcfa82b4ea90d7578c7dd3ce806d112c14659335e0b780fcf2768da6e340b78e06156138e500e46f45dc7e18e2807\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"230b046bdf38de5567efdda44d3577918e40b6624e8cb1e7512d25b692f1f8c8615799d6a384ca31dc998dc71dddc483\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"a1c07365e8016aefe0ca4a820c281445d4d5e89bf68ce2b9e9f15de7b973364ac2b9e109464295c8a3d7e124629ae197\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"4777ebcf87fd9516004f92c7f3fb94e3cb9111e6fb4da681d61d790ed0fbf10aa68aed5fd66d2714896edfb708fdf797\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"38a45b90cb3ad2846fab846a8026e8b539f41b4aeac984ff32dbfbf1b857931027eb44e22ddc785f59d6c763941e008f\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"6b2116f918043ef413d95771b56c2f2aec20062872ada45339ad612474acf1b6a2025c27d71d323e8512d0ff87725517\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"27eb98e93936f76113b03e7191c6794621c5e72e6e39a553edf2314af293ca955e2370bbc87d7a911f69cdce55249016\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"f6c38f1a9b256850069aaae5329446c50b72c0f0ffe76bc28cc8134afdd0b40d024a038454fc85409773a6ae2645b487\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"0b1949442d1bd94f4b48499fd39b9ad218dc8a3bde8760fe61465565642948a13f54fff5ebdb6f8c4a0f492552eb5416\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"e3debc5e712557d2143963dd8dbfc6ec607f4fc5683a87a4124b706cf76c7b40b8228e7770cd4e9923848c324bb4d20a\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"0715a9c2e509c5c48ac7b3e93e97c667d575db56a4dc91920845766372026e83114d9c84f879925223f1115ff6bb638e\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"39bccb23d3e59e3cc45b0bd96de484b2be838fbb27433a1306153d880f76c7907a80db982a4a589639b7fb41f6a9e782\",\n                \"eposed-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"raw-stake\": \"6215145066608758434338888.888888888888888888\",\n                \"slot-owner\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\"\n            },\n            {\n                \"bls-public-key\": \"1e09f6ede6b7cca5d2c53a2b6de6ea70a8ca1b4d2fbbeb8758c599afd74cfa8964842de85b7b783b7cc86fb6ccb11312\",\n                \"eposed-stake\": \"6206473145002875000000000.000000000000000000\",\n                \"raw-stake\": \"6206473145002875000000000.000000000000000000\",\n                \"slot-owner\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\"\n            },\n            {\n                \"bls-public-key\": \"3db51e1ab47e33b2eea18327a19ab3ce4e0496636d88c16d08b2e78f6e4d161a5a75e117fd696353ef4be9f67f0e0a96\",\n                \"eposed-stake\": \"6206473145002875000000000.000000000000000000\",\n                \"raw-stake\": \"6206473145002875000000000.000000000000000000\",\n                \"slot-owner\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\"\n            },\n            {\n                \"bls-public-key\": \"42fa89ee6e6296133ac05bbfd8c95976540ef369683864f0aaa3c7f0f5390046d077a3f4156e51654ba8c14234654c12\",\n                \"eposed-stake\": \"6206473145002875000000000.000000000000000000\",\n                \"raw-stake\": \"6206473145002875000000000.000000000000000000\",\n                \"slot-owner\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\"\n            },\n            {\n                \"bls-public-key\": \"4e0f36a24c1df21024587a4ece5b1c57ed20d636f9da0146f875260205bf20eb324763cbda6d1aa70d46baf5d4886a96\",\n                \"eposed-stake\": \"6206473145002875000000000.000000000000000000\",\n                \"raw-stake\": \"6206473145002875000000000.000000000000000000\",\n                \"slot-owner\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\"\n            },\n            {\n                \"bls-public-key\": \"323bd3f38afce4f27e35e5e1c7a6cd4f3f024817fc180fd73e3880e26fdd8824092f9707d216a1c7d278c6bef71b1493\",\n                \"eposed-stake\": \"6167822386082581250000000.000000000000000000\",\n                \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                \"slot-owner\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\"\n            },\n            {\n                \"bls-public-key\": \"0d983a3e3a490412635fa110b577e63909a8b8d6c7b9714d4855373c19f1c96aa8291b911b0ccbee102ce329c92a0d0f\",\n                \"eposed-stake\": \"6167822386082581250000000.000000000000000000\",\n                \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                \"slot-owner\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\"\n            },\n            {\n                \"bls-public-key\": \"379749bc0edc1b539d490be19d2640e049f074d32fd5b8281eaa891998e14155f9dffa7f3de730630f1449f5a61a8893\",\n                \"eposed-stake\": \"6167822386082581250000000.000000000000000000\",\n                \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                \"slot-owner\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\"\n            },\n            {\n                \"bls-public-key\": \"2f78bac8fc8e2dbe67d711ecff25eedb160607dc92db2b079c07a98fcd84a99c2fac0e06fa53705844f2f5af9de1e08f\",\n                \"eposed-stake\": \"6167822386082581250000000.000000000000000000\",\n                \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                \"slot-owner\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\"\n            },\n            {\n                \"bls-public-key\": \"a48c5f98e7060f9c2cd0e95efa6047ce20771ce99041466afc3e417c0c9aa22ad072af95418529e9406fc590c55f0219\",\n                \"eposed-stake\": \"6125281242565200000000000.000000000000000000\",\n                \"raw-stake\": \"6125281242565200000000000.000000000000000000\",\n                \"slot-owner\": \"one1t3tex27l80cs4eltq5t7wymcxwwct6xxuyf7w4\"\n            },\n            {\n                \"bls-public-key\": \"34434474f59a5dc5ff6e1569ea67bdf181b2e6a4771f1dd102b32791023be6e313938d31738fd2c12302ae7360a2c307\",\n                \"eposed-stake\": \"6073064500000000000000000.000000000000000000\",\n                \"raw-stake\": \"6073064500000000000000000.000000000000000000\",\n                \"slot-owner\": \"one180767nt5qzycwl4rzhjaf23kmv30a9uvmlj8vs\"\n            },\n            {\n                \"bls-public-key\": \"52dd617310398cb7cb57ca24afe7fcbe41720c9d3b1423688ae74618315ba53b6baea6b76308200b17a134fbea3e350c\",\n                \"eposed-stake\": \"6025323805377500000000000.000000000000000000\",\n                \"raw-stake\": \"6025323805377500000000000.000000000000000000\",\n                \"slot-owner\": \"one1q83ag25yvxzl753jjunw8rhvz03w2p55dneenm\"\n            },\n            {\n                \"bls-public-key\": \"064a5352bc38accc647cdd10e6b6f091458d2c85a996a27c9fb9dd075920412e07c1db3c6989043d27aebbd86e1d9f98\",\n                \"eposed-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"slot-owner\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\"\n            },\n            {\n                \"bls-public-key\": \"4a017b97577cc281915d97de38d741281c6beda42bf24f9d44bc100e86c7fc749951f87f61ba74a53dcd04409a7f1215\",\n                \"eposed-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"slot-owner\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\"\n            },\n            {\n                \"bls-public-key\": \"be78abe18e82e488afdb76ad93ab5bf7879af26d7100fbcf863a4932da0fa7d635fb92c6e64c6bd6f0516f1d80e72491\",\n                \"eposed-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"slot-owner\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\"\n            },\n            {\n                \"bls-public-key\": \"e6ee4dd21bbafeccfd88c393577d15a2c4dc52f2b78e3582038f40b49c2bac84da4c6959f8a0628372a0dcacd592cc85\",\n                \"eposed-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"slot-owner\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\"\n            },\n            {\n                \"bls-public-key\": \"f0c2ed95d5f41301a689dcf6a3271bdfbeba45e235e71056c1dc67e0b91eafab85a09333441afdeb3b2acc5a5f984391\",\n                \"eposed-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"slot-owner\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\"\n            },\n            {\n                \"bls-public-key\": \"0d5b80dc2ce0212ff0a843b007e7e9a8845ea0ca6702a87a1492e63c99088ef60f08d95f4290cae6ba31e08aee355684\",\n                \"eposed-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"slot-owner\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\"\n            },\n            {\n                \"bls-public-key\": \"4542fda471c1c8fe5b7770a78dd96b927bb3a96c227c31aee258f41a38210c7e459e564c01aaa112616f0bead2288e88\",\n                \"eposed-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                \"slot-owner\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\"\n            },\n            {\n                \"bls-public-key\": \"66ae22ecce040a1705b8caedcef611831b019c66685f136e5124a4afbf5cad346ee8d2c98b22bfdfc98d3d8b13d7b213\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"883b02bd5e72bf44bb478e5018e00ebf8bcba72076409d69436af0b6e74e85c4de1b6c2f2e365a0440b39db65f3a700b\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"277845856fdaa0ab4293ab18e2e8dc43edc5163666025eba00a9fd5c88a3d48b39eada8a9ca14d2c6ab6ee34179d4499\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"ccc797f918528cea5ff7932823b503ff264718d9e4d1797fb8ddb3c57b7c49175d0999290158cd800db399e62d810115\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"40f92aa97fa8e5036b0b49ad17a7a6603a33dd3f98b21f55b10927c90ab27f6c586eb3f0c44beda3458aa6c86e743f01\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"985e263ed18e57aed7913bbb9d6b2dc1e06e27a7cdb1e44b16128068be1f3e3b79338043a33629bbb97dac2ab622c391\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"892b77f0cdd8f37fe9f57cfedb59d5d93b3a247ef11d1d6e3e7f2a25190be95d84239cfb7507d3bea6e0edde5507e50a\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"5f4dd3a7989049bc0701bc05e1d8303c0cd2471790505bd361902b6d15e796ff5b21b1aabb4b7f17ff73df6c50f36a82\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"12eceb4aaece26636d9e6f9fe9e5aa8759ea54d07d0430040aa13f49c8a169f1074233facf60f4f2092a087390813911\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"26a1ef0f3477ed61c7b6c9bbfa2057ce289460457e1ea16b9f7c5124ef1abc0269cf126826212cf73624ffbb579d8611\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"3ad8a62ae7c504280bfc99ed88a3e35f3e490e9c118255d2ce0f617ab003ee5eb557c23fde5c632bf80ac3963923c20d\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"449e9459311d05fc44573e79d394de90a535bb266c31ad8d7c85168231445e111aa2fb0eef24d564ec9e9128728a7b85\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"6af38646737e41bd8cd3a6b4a15584764fd7068f9f205ecf26dec36c64d601acdb871768a77d37259100ef8e36f4a491\",\n                \"eposed-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"raw-stake\": \"5992774800618722710746153.846153846153846153\",\n                \"slot-owner\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            {\n                \"bls-public-key\": \"cfda73a32b8d612aeb5b9a4c963086da8daf44ffde42ec73107ab2dff56f1568d2a9d453fb0c6040995317a3a268b78d\",\n                \"eposed-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"raw-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"slot-owner\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\"\n            },\n            {\n                \"bls-public-key\": \"77310a150e5df07db4ceed3daf98967b70b8156beb7c39a046d505bce3620ec048a24903d9a9432724b6327808e66499\",\n                \"eposed-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"raw-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"slot-owner\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\"\n            },\n            {\n                \"bls-public-key\": \"48427664b04ca99d1ecff349d0a6eab684ce682559f5cb1398716e5bf5288b9d77eaf3d5d9969b1d17bca70a9f633e95\",\n                \"eposed-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"raw-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"slot-owner\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\"\n            },\n            {\n                \"bls-public-key\": \"d3895a8bab3769a8d9bb524b6f824a0a99796ed2bf7ca6487cc524f8ea63ffb0b1f0bd29a194c250a88c5568be459519\",\n                \"eposed-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"raw-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"slot-owner\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\"\n            },\n            {\n                \"bls-public-key\": \"97fe22f0ecb1db616d51d741cbf9afe27ed45ded467f45227b0d837e142d59b49bc84400b513ec2e939624aa4957e181\",\n                \"eposed-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"raw-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"slot-owner\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\"\n            },\n            {\n                \"bls-public-key\": \"997e1cdb546c1050f44d642ab9a137349b66054e588a38e6700cc440eb7106e62951108f55e357e75af7ccb45d56b795\",\n                \"eposed-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"raw-stake\": \"5953593845459918187800000.000000000000000000\",\n                \"slot-owner\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\"\n            },\n            {\n                \"bls-public-key\": \"1f1eb7dd04d6c789c7a5b949063bba2978ee0c0be3a81e873f36ddd2e0b012256cd45d7218205bf44ce7113c01460795\",\n                \"eposed-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"raw-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"slot-owner\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n            },\n            {\n                \"bls-public-key\": \"701b3e515eec515554ccd182d1654b5b9ab2f2420efcc8c22eb269b409a257ce1e12a3698b0d6955b420ec6dbf642b15\",\n                \"eposed-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"raw-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"slot-owner\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n            },\n            {\n                \"bls-public-key\": \"1bdbe548a54e3aeb6598f5618bba513efab205a98f3678c471d956538c74cc39a3070a95edd032671bf1332cd59a5990\",\n                \"eposed-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"raw-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"slot-owner\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n            },\n            {\n                \"bls-public-key\": \"87201cd5b68b8a11bab717ee57c6ba8b586be721517d2b9a48cd5690065dbafc71b10dc85bdf39bf762394ef8add9f00\",\n                \"eposed-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"raw-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"slot-owner\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n            },\n            {\n                \"bls-public-key\": \"75e991e1b581086ae2f97d47db63a07116e8d4f2b705beea1f1165f936f7d5e91d324ab0c10a4704a89e47d7f194ab97\",\n                \"eposed-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"raw-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"slot-owner\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n            },\n            {\n                \"bls-public-key\": \"7961fd0c5713f9db3c6d8e8798673a2012df3d9ae24e868b88a8b2dbe7efae99e908a2445089b2b4909aaa62533aa513\",\n                \"eposed-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"raw-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"slot-owner\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n            },\n            {\n                \"bls-public-key\": \"4b12f2255cde93a0ff6b2bac2965887dd46e96f554c943d760393b7973435128bb7d5c93ae2a17ca757071e4a4e98319\",\n                \"eposed-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"raw-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"slot-owner\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n            },\n            {\n                \"bls-public-key\": \"b66e47b0a02dce01caac7f1425c7589be29096b790d4587302018fb25c7fbbeade90be7ad3fb0d714b5dd0bac49ebe14\",\n                \"eposed-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"raw-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"slot-owner\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n            },\n            {\n                \"bls-public-key\": \"f5121d14baddd774e40ff8c39676b932c3828c2128b1431c5977c3b1c44f7b66d77119c49233589eecb75a6b85eab882\",\n                \"eposed-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"raw-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"slot-owner\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n            },\n            {\n                \"bls-public-key\": \"a8472c1cb4f6a1da3e227646ac5f52817ed91ab8b9177f7483f0d562eb64e9e801b0ed09ffa3be221d4998c0b2580102\",\n                \"eposed-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"raw-stake\": \"5892714867594585630570000.000000000000000000\",\n                \"slot-owner\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\"\n            },\n            {\n                \"bls-public-key\": \"8fd42f4c128a790f11c89f44c8bab27cc47ac16f7186cb8d70ce1f692403502677da9f70e5a1f0dede60fcdaff477c83\",\n                \"eposed-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"raw-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"slot-owner\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"bls-public-key\": \"94253962d70e43ca53ecdd66d71a438dc10a0aa3b97e67ad608c214026b082713d757b6777bbefc32715172f55cb8c0f\",\n                \"eposed-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"raw-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"slot-owner\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"bls-public-key\": \"9483de51dd025c42877e979eff401d1c7cbcfe7865d414b144af3335d73a7839b4bcc74ac8ea5f82b0e286342318200f\",\n                \"eposed-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"raw-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"slot-owner\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"bls-public-key\": \"c4f38df0892305a1f5d17d22050ab2897e5063725ad2a7076b032861f1b666559a06af6c0737ebbadbc2f3b65fa5a385\",\n                \"eposed-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"raw-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"slot-owner\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"bls-public-key\": \"cb053feeacdb08786c04fd4b31e621a929f16fdebd6e2e8ea5687deb6cc756a07e511d8c46ce6cf9d86bee03f4d0aa91\",\n                \"eposed-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"raw-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"slot-owner\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"bls-public-key\": \"d587813837471e974a68fd764127da54e9828e387fdef6ea41e0e8118bbd3083b5cbed568007b99a1c583d470eb58001\",\n                \"eposed-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"raw-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"slot-owner\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"bls-public-key\": \"dc5a72979a6872697feedfb06185db787525db54ec52da51a4ee9be6f3be5d47befa4f4515ef0b5b1bee85f864bbf695\",\n                \"eposed-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"raw-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"slot-owner\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"bls-public-key\": \"e9af74da3a50f586467aac3282102450d7e10e7aa73e5f1fbeec7d89d9512a8047aacb68ab54e47da59b99bfef3ce491\",\n                \"eposed-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"raw-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"slot-owner\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"bls-public-key\": \"4a034d3423a8f70ec406315fa777f081201b28ef94d4b385b4aa4059a657eae806ee228c0d676c855d5fe17f51b71487\",\n                \"eposed-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"raw-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"slot-owner\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"bls-public-key\": \"4cbbf20d0c3bb8f4e2de88040f321bd94cb88c5ec427401993be0be5016fe22cd6543810b4737eb9dcf2739e922a8387\",\n                \"eposed-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"raw-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"slot-owner\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"bls-public-key\": \"a1f03291f3c358caa913e4c14f8b1eb7ff73176da03c9d57b76b9d84be48900a9e50e0626e72b2661571df67513a130f\",\n                \"eposed-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"raw-stake\": \"5877739431820865223818181.818181818181818181\",\n                \"slot-owner\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\"\n            },\n            {\n                \"bls-public-key\": \"3d6a5d62a2277cd465c5c7ff4c3927a537903cf58ace18b9bf025351242043bb9ca76084d593993e05de0d079bf9e00e\",\n                \"eposed-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"slot-owner\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\"\n            },\n            {\n                \"bls-public-key\": \"4ff1796bdb8253078163ab11f64186aee7230b682642b0e8eca4c935e7060223084406ce334474b451410131f0120f0a\",\n                \"eposed-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"slot-owner\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\"\n            },\n            {\n                \"bls-public-key\": \"98ec8e7ba1a44bfaa9051c5dd528d528965ca1ad982a953cba2db9e5ece0eae2719a64dd99572ca6302df2dba3e84906\",\n                \"eposed-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"slot-owner\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\"\n            },\n            {\n                \"bls-public-key\": \"a7f48834e984de758645585d0a481e32044c9f55bfe70119daa63a1605a1c31f66b9dac575ddb9271d7b85848ef6b812\",\n                \"eposed-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"slot-owner\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\"\n            },\n            {\n                \"bls-public-key\": \"5928b3ae2a2b482b830f1030071a0871f81fb15b2d67ac656e141138b60679454cf9a559f9834d1ae226c8e11ca09786\",\n                \"eposed-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"slot-owner\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\"\n            },\n            {\n                \"bls-public-key\": \"989fe76334a392542b04726a3f0088a285a6aa44c7868fbd60dd6b32fd9856f81dfacb2dc0fd4dcc2ad0699e2f3ae302\",\n                \"eposed-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"slot-owner\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\"\n            },\n            {\n                \"bls-public-key\": \"ae4f6380cae8d0ec4d364a8d98bb34d12aca8a42ea9b28925abed150fc991d78a88dce948bb2e79798efe79ab7552516\",\n                \"eposed-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                \"slot-owner\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\"\n            },\n            {\n                \"bls-public-key\": \"395c6b530de2aa32bd0e826dab68ae37a774d9f6d28334d3ac322d61d2a471aadf2a50c81adbdb8a110d0e6850621910\",\n                \"eposed-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"slot-owner\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\"\n            },\n            {\n                \"bls-public-key\": \"18e9f2ad7b95c78f97ad32ea4d5b84128453b364e44a5d1c5f346e246efc27f8f955a64d4ed51576c07da47ac7b89e04\",\n                \"eposed-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"slot-owner\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\"\n            },\n            {\n                \"bls-public-key\": \"7dec5e3f6909666b5e280e71eb6bfc7ace6ee39378e6752447ac2fd9a93cabc79c1309dcce0e670ebd78dda60ca9a388\",\n                \"eposed-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"slot-owner\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\"\n            },\n            {\n                \"bls-public-key\": \"943dc0be8753c7721dd718b749eef9d84ddfaa1e894e3d56ba78a5b496acaa40edc6c3cad7819e5f06ced9ed554c7200\",\n                \"eposed-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"slot-owner\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\"\n            },\n            {\n                \"bls-public-key\": \"092b8f3238fe33bf9a2bca8cd3badae60e138fefdf87ac5061479be2730ee3fc7970e0ab25eba38e693004972fd9cc0c\",\n                \"eposed-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"slot-owner\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\"\n            },\n            {\n                \"bls-public-key\": \"18254f06c00b071310ce55ba3a340485bbb61ea7b4765441e43d0c13eb617954417fef98c8c03937fad8dd9c33ef9108\",\n                \"eposed-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"slot-owner\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\"\n            },\n            {\n                \"bls-public-key\": \"8bfdb9ad1b77ee64a0ac063ccef3db745be87dcf6339ef7c4743ba61c3e98eaaf4955c14198f16b3499c05d2053aaf14\",\n                \"eposed-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                \"slot-owner\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\"\n            },\n            {\n                \"bls-public-key\": \"80e43b7381b0d2405b44a6a6293a5174fe4ef3e32b26a10c4af20e213d6ae17d778eb54e7129f5ac69343eac40fc1b95\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"77ebe15da9054374ec1614ae5aa40acfde825e2b64a6e3f1e0522db9e33f398c8a33ef8a982f3743dfabe4130c22a319\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"a2526ddd0b30d2daff78d2242eff48f8c56ae572f5170df94b18dc86adf01d8f66ab3b6a2e834a3fc9e62b2420e79285\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"aed665af6870561fcb0054832e35fa773a2d8b82b6ed7bed0500c5e7c1015a5a6325042d5e8ef954ad5d45c467055601\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"aef0ce484fcec7227492e55a8d311172cca44bb40d657c44c984a709b0302211761e0f109b4a65d2ee9a8a88fc928595\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"bd2701b5690c0dc0f98308c62cc9fe3327fb1d9b4f18b9252d6d755930e111a8d75cc2f8cc9c47794f40970721c65585\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"d960c67e552dc2c73ee0679cbd3bf501704a001fe5b14ff565d4abc820fe433856f4cacd605e89670dd418d9db160c91\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"ede3a3edb3469c8ab63665cac359af0051956f1c6a036d88c26bdb09885e9dee66f3fc0a78530f948dbfed1a72abca85\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"4433b28696fe69b4bc8c10ff24e0f1ba918f526ed9f3b9e90c616305d7c35038be656936ffe9186c009bead57cae9509\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"15c99e1fc798e09fc83add271955e04b8d9e21628ec091a1ad7cd128a6a406852526196e4b64d7a9345b17c1f139bd91\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"f8162589f9d7075f720e92448b7ba37068d47c55445916a7d7ea87678e1e047de12acf4126eac6b740fdd26a0c25a00d\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"fab871dc783e065e26ac13a8a5576418d714926d83325d8f8c72e975cd74f894b00a31ff18c0c7d20aa094dac1006d01\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"ffc25ae925ff32957eb357fb33f39426d046487fbdc6c104b5ee2c57d967619449c2e15e3785ad58cbaf46adcd068105\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"c4e22e2edf12fc844d1dac366bf591a43d139a74c0c5d32a8995267415d0aa6a29054b557d6a6b5d1726bd8f8c22b395\",\n                \"eposed-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"raw-stake\": \"5817580928571428571428571.428571428571428571\",\n                \"slot-owner\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\"\n            },\n            {\n                \"bls-public-key\": \"0c82ccb9168b017166e838d00b1f6e3f6fd2a2f406b2b490e413f47dcd0bff4c2936af025f29222497b751311c999c04\",\n                \"eposed-stake\": \"5811088922491100000000000.000000000000000000\",\n                \"raw-stake\": \"5811088922491100000000000.000000000000000000\",\n                \"slot-owner\": \"one1ttf4e0tvnuqymuyuzy7clu7gy6za37y326m299\"\n            },\n            {\n                \"bls-public-key\": \"663d4bc56f2755ca00c8dc7a7802d5913a1b9642b87a34f986e6cd56963c590dbdb4c2fcb1fa0acdc3f0b3f399b04486\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"07f91bb48ee0ea1176a9b81ac05172e283bd2123d31f7e0217da201d6e928b2ebdb0be246dae53ebe4455205b169068a\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"75b30e36db669855515207d26c85032b8124e602e230f61af1f83d359652ed2c75fb644ffd5c03414207ef54208acc96\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"d26aba7946b7c6233139c9a3eb59b76f690ae17100b588b7fcf1797b5d6a56194a45d7e1da8452c80b71d454bb7fc906\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"0a62f4f4e25aad7ac77845b5e5242570637d7918768ffc20b69629e918c1bb154c78c196c563b419dcc8070db187190b\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"8a38e74bc302f0cd1a200c2f6edc2184c3af577a6f07456f19af063940994d803012da53a399fc15279682e743bf520b\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"43ba875e76d9cc1b40fae255865f426de64a7ece1b4caaa9954747c3c766894de034f372e825cb09313a9ba588b6d68b\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"c87565824a5046abebf7a4f608d1456a75623177e89d6537de8148c6c4d5793d00f234cafc7ffc9a5ba666f7825e0883\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"887dd858614da4b6f81b3f5039334be0fc7efba7cd2ec3f9f2cc070df734b09b4889092bb0097beafafa581361bbb88d\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"a19ebc874d122fcdd3e809f5e2d08317f96093d96ff401e7a7648641e8ea290539095b8963f67792e01766dc0c82c995\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"3aa1b10f749b926ce116ed55fe87e948a45b748b7450427973f936444f504ce3bb69f74cbb1eb5507bb2949adcac1405\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"f8229098ef64c6412a05623bc9bbe1a8d5788d992f411378add8201da818b0339b642c06b83494cd804fcafb1d365315\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"87724e5c55dc0b0494657d46ce42f934863481aeccb2ee5dff9216b37a0bdf4e92532e20c6b6559f77a4f62a5c4a9797\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"a12729cb8a958ec2ee376f223b47f04bfe7b002e180a4aecddbdb2023ca3b59ba3bcae1c58fbdab18cf45dae3c1a5697\",\n                \"eposed-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                \"slot-owner\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\"\n            },\n            {\n                \"bls-public-key\": \"3346dc4f8d994567f8635971552ca16645fbf98dcb5f0f021d4d41ce87428d7069440085dca0d9e24c7d3ed07b40bf05\",\n                \"eposed-stake\": \"5799590080333333333333333.333333333333333333\",\n                \"raw-stake\": \"5799590080333333333333333.333333333333333333\",\n                \"slot-owner\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\"\n            },\n            {\n                \"bls-public-key\": \"988db9687986411eac53e47ae111d43a8207450bc8c9da4b81ac912cf771801c973cded575fd03889f30d9a261649989\",\n                \"eposed-stake\": \"5799590080333333333333333.333333333333333333\",\n                \"raw-stake\": \"5799590080333333333333333.333333333333333333\",\n                \"slot-owner\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\"\n            },\n            {\n                \"bls-public-key\": \"b06e9dd188cccf5bbad858cae1fc63fe55bb92103dd7aca9622f8f28568bc74b498ce306dc5f0dc5c09a0914e1e20a91\",\n                \"eposed-stake\": \"5799590080333333333333333.333333333333333333\",\n                \"raw-stake\": \"5799590080333333333333333.333333333333333333\",\n                \"slot-owner\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\"\n            },\n            {\n                \"bls-public-key\": \"1efe44ddb21ca28cf2d15e357a0ea292e57bea000981f2f467163030cf70549412c0529a3cf774d9eced7e61526ff402\",\n                \"eposed-stake\": \"5784371585306796610750000.000000000000000000\",\n                \"raw-stake\": \"5784371585306796610750000.000000000000000000\",\n                \"slot-owner\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\"\n            },\n            {\n                \"bls-public-key\": \"202770994a16d8bf6ed5d8c11985302352e5a9739588236c0d4d1a2a99c2dc97a74542b7cd30a7f6515b6e36a44f8c86\",\n                \"eposed-stake\": \"5784371585306796610750000.000000000000000000\",\n                \"raw-stake\": \"5784371585306796610750000.000000000000000000\",\n                \"slot-owner\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\"\n            },\n            {\n                \"bls-public-key\": \"056f26c7d3cfcb67a696918196a696ec1b77a6cccca0b5ceabd7e974a52cf642ab2d4fa57f63d1850d689f3772d1980f\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"1d58c7643cbed3008def6729e3eb6c1e350a3034589c6086d616c2ec34ec44f77069df41f8db92203328ce4d4184d10b\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"36e590fb7218eff19874c8c9b9cdde42f93ae823780b031370d2fa711f544ae00ec8358fb9e715a52e222c3e9e05b787\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"51340ad73311fe90e6e19b9550d75d876e70ecc8fc2c12974f8da362793fa03f808984d79b13f93164f19a4a8f53910b\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"efbaa34fa66af2525ae1c26b2db7663a96a7b4d67bd2324494d144dec8475ec7c532f36ef770acf5aabf239f01052207\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"22efab66186b73cf535e8fe03c8ef339facb91c8ba65624d91957024cdd90e1e073d5793f0ea17f15d7a9c00945a0d0d\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"31dae09c17577e345c4bf205f220807e2f6a0f680e49d00d8fd9b9ef04034b1ad5249fd890fb0f67fd1adedb85a3420d\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"8c8698dc1ac6697e0bfd29eb3040a992c8eaf9c2ba60559731309e3b2fa472b3948752e1fdc09219d113700aea63df95\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"c065cc740976c58af76994c01d91d4c3135897004f86a4178769fd107145ecd27b7ccdb58f9317156a3fd37b9b5dfa01\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"efad1c33a977ab6587fe2b6023a241a4d239128c5d8604e548acb8720d813009a42b0c06f849a9700c7ce84abe11fe02\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"ffe60855e10c485185573d018ea635efee2887faaf7f598ce703a44068d23b310fd549a1dd053932704845739a1f6c8e\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"bf8977539a2ad43d42ca73c46e4a363f60dadcbdccf1de105dd3fe06e32f8b95e0fa1c371ca88d96f515a320b7a8598a\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"960e0536729697031f7656f05a13b7eca9d5b6cbcff0bca3e7240967477586da5c83f0d3a3c3ad00759227e5905d320a\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"6de75322ebfaa0954863ac66047fa39bf03a8af92be500a18c6b2610625e2b122bf46e85470cfbf6cb4e8803747ef20a\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"653b5e6c6b33d23b243385ca2b247ed8a9bfc83b71a4f3959d914d7f105f2eed4da6dcabd72f94682889856a9ffb640a\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"2cf79ace5a9a85483d69f19ebe92c1fed7509fcf528250fd162315586a97149b67159ce4a4332d4dbb72a4c4cdb47482\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"35d2d5d9f93c2260e976215313f3221cac528415e61c3c231a1e5e6219f8c6bf65fe482bf1bcb53f013dc92329d51792\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"519a4a3518b7c5e677586f4294b2af46f18b791f574fa11386f022c1c40bd5c22cb43545dd768fd9822bb91c5c1a7b87\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"59802bbf83b191bac69577dd8e85eed62b195702c41401499fe5a24025a45855b60108432858c8a79a9c243ffb36a887\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"5c2ec551f85045ca67864eb9413ada94cee75bd3bf2b27eb7b53303fdb67f95a7695dad48087fb541955209a3c587a0b\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"62e25aeaf7a575bc33507d2d0807218b9cad622c06b2887d7d9645c8341a83dd49f1868169672004df2db5b29fd0e707\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"aaa8db05503a6578916af15f5c55e9c1f541dbf38979e6d5f6be6c2502dba836bedcbd14b1e11e241302a8ae0bfe530f\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"ad53fbe4f397ec9536d2b859bcb4e728f5ad6df3a7cba92f7d611c6bf894b0a89adfc8aaf1fa9694a0719782c5fdbe0f\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"f846837dfb601eaf18ee7760e5bc1360663cdbef04f6e713bcc5aacede14afa51fd55793c603f132a7c652ecbf76d707\",\n                \"eposed-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"raw-stake\": \"5779428518139866041758333.333333333333333333\",\n                \"slot-owner\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\"\n            },\n            {\n                \"bls-public-key\": \"79dae4be1cc8dfec7d85b0bc13f77cb8b2ee5d423f0bfc56e057998547d1b588edf7966a3365a9cfe1c9ea225d279590\",\n                \"eposed-stake\": \"5751194906753550649000000.000000000000000000\",\n                \"raw-stake\": \"5751194906753550649000000.000000000000000000\",\n                \"slot-owner\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\"\n            },\n            {\n                \"bls-public-key\": \"0bb30016dcbd8ef90e657c93f9babb26112f6554c960e7e9de7638788b1e50746e41261d8f3fb133f2278dd1f507b00c\",\n                \"eposed-stake\": \"5751194906753550649000000.000000000000000000\",\n                \"raw-stake\": \"5751194906753550649000000.000000000000000000\",\n                \"slot-owner\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\"\n            },\n            {\n                \"bls-public-key\": \"14c883aeebae0a438747353dd48cb5a9b6236052e0da04f364cb4f2ae499c2a8a9b6f0ff3af11225306890a7c2a87610\",\n                \"eposed-stake\": \"5751194906753550649000000.000000000000000000\",\n                \"raw-stake\": \"5751194906753550649000000.000000000000000000\",\n                \"slot-owner\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\"\n            },\n            {\n                \"bls-public-key\": \"ab5fa18cfe0e59bcafaf2cbcdecd009b62d77c2b67535fc143714b11ff544f793b0b700e45856e7b1633e380f7dcfa99\",\n                \"eposed-stake\": \"5750858207176333333333333.333333333333333333\",\n                \"raw-stake\": \"5750858207176333333333333.333333333333333333\",\n                \"slot-owner\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\"\n            },\n            {\n                \"bls-public-key\": \"6791ed00d62bb5b90014dcb2a6852fd4f1a6763dc5d28e822da8371c4168eaf64b627ef96d6cefd544bea24ba56b4915\",\n                \"eposed-stake\": \"5750858207176333333333333.333333333333333333\",\n                \"raw-stake\": \"5750858207176333333333333.333333333333333333\",\n                \"slot-owner\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\"\n            },\n            {\n                \"bls-public-key\": \"f41c4e124f7d78ca0c6205f2ab45fa0d5d96944623c1c376cf86aab07ca1b4b14238121d0850a951c74907d23c25af05\",\n                \"eposed-stake\": \"5750858207176333333333333.333333333333333333\",\n                \"raw-stake\": \"5750858207176333333333333.333333333333333333\",\n                \"slot-owner\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\"\n            },\n            {\n                \"bls-public-key\": \"289eb7f7c6b601dc83534734f500365f4fcf2189a5813b806b9ef6a777183c697d5fb22c07a26d19b63f1e10fa88e50c\",\n                \"eposed-stake\": \"5722925145534874999666666.666666666666666666\",\n                \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                \"slot-owner\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\"\n            },\n            {\n                \"bls-public-key\": \"ada4422e36fb53fc5098eed8fd4bc6a3d2e24c06ab0fc7a06bf755d72180cec56cd0977ccba6ee19038d3f839c9cb180\",\n                \"eposed-stake\": \"5722925145534874999666666.666666666666666666\",\n                \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                \"slot-owner\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\"\n            },\n            {\n                \"bls-public-key\": \"25f199bef86ed7855f2a980925bc35d7209ebdaa686fed791b9494403268a22b8daea8cf84f7071315840e66964baf0c\",\n                \"eposed-stake\": \"5722925145534874999666666.666666666666666666\",\n                \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                \"slot-owner\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\"\n            },\n            {\n                \"bls-public-key\": \"0c7a28e86f911493cafb4fb7325a08f763d5cd4cdd627971d4e09e7ef2471634b21e32ccb57b13ab8cdf68c78287c314\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"070d3e9aed0dd70d8a28d3974f39cc535ec2957f0ce2ab61eccfde53dd5777648ab8f666f582319e6ba3e43c97ca568c\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"5124782156094cf9aaccbcc5eb0f79d25db882352cf21b490c8cf70136d20405520659fdb4961396d3bb363ec4d80e14\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"c27e8e691c26104d809022a33226fc9df0ead19f35d030054dfb847f06df9277a44b60d64bb8616ce2b911b76a7e2498\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"0ba26722c41987f55796edc8baf049f63e48e2f044675f70adcde17a94247bd2333ecbce6c1b9cba6ff770dacbf33500\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"20d0791f77c7e82988628d05948655b9a264df9a6f1d4ddbda8a22a28622aa97a6fb6f16f46b16dbcba633165b091304\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"3659fdd8668677830bf2ff054c0e58ff46fc174c19112cc7a5c761b9a4ef8c031dab18793ae0cc03ca7a6eeab1b2d60c\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"f82e45094a111e9c85321e6779598b122bab7584f584be1c667ae5a186bc3eb14784ffdf3b78cdbb03b3c3dc788dea04\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"65876ec707a3ddb5c5ddae8e9e954cdb8e9913806df683109d8a4cee24f03bf32db85199859241c7f0b221c8b00eb394\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"8b76663e5fb776bfb89ed8c118d56dfb4ded0517aac66ab20ba942a22cb3284a916cf01a8a6d0a9cd6a2f88aeb26d000\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"a53fab665af692aa971d8f43752c347fefc2a2b5e83d5dcbad8d28ff7e629d7891291712c7721dd0e1d4fd6665b97388\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"a79f863b7e9a77b599c82756e4a635661223de7166ecca7d2549c9c5457b6e2c3e4ca3247de1259cf4fa920646bb980c\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"5b993e01879f8bc389a42f6ddd22430681937bc34dae44b6660afa944b2888c3e23dd2321a3b11c58b02c245261a4697\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"6905e31b0a8c2b5890f0af8dd6f81931e893120f0db983ce1406fa742161db12f9e28b7095fe43aca3c6a6d9b24c8897\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"58e71a7b7de2ff603b62c8aa36686e89626404b6388279929a3f96a6317964df9a8cdada09421a38cc859bc428009910\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"164fe2da87e1e07700e93ed752924dd9243b1e4f1dcb437ab2826f4e381cfcb14035a24ce4f464d24aa3f4462a9ee815\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"a79b037697b9f7d3c0e0334d9faa249abd3b4f32e525da18cabe275e102869a24f6e6321e3dd9b2347a9591d00d8b70d\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"bbfd933a7c834f1fa71c9437dc78764478a7459f888f63a09fac489b6f5e4ef14cf9a912206abc960c0f9ee3d295da18\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"c44062315f968d707543b41882793ff7c945a0fd53f6d08ec355c261a327a368af7d1dc60da392b150a3ebfde4964708\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"dc0be4d95496d741547821ed34271dde5e5f072c1672010f75fd052af44ff592d5f07c75a8c4328913a0b4a7cec17195\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"b6cea881ce7ecd6efd223874e509647454ce2c96ddd25955bb7e00e9e72cde34a3f31e66fb61c97003f60d261298d191\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"9f28121f54bc1619b0f2534b3fd7b4c14837e385b76e28554a706c042f38d8ba075a3e2e46b8d5808b3b0d7cd7d0a80b\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"c44709b345924d9e39c9a6a087ac205b0f8daec3523362e47bcc1cf88eb8f035bfebd0552a7e1c2c10b84ff6cf2f5017\",\n                \"eposed-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                \"slot-owner\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\"\n            },\n            {\n                \"bls-public-key\": \"858b2be4b3118e3cf0b6167a4f7b9283a5b0079006fbead0074b1444759ac5c281822c86265aadf4e4a9452765bf3009\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"7335f5c266cc3d4223004af9cf13ad41bb69a7748359ea115e58ace47ccfae64a2e9d2e9e6e9e06a2f5c78465f8a2489\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"fad66c30983f8a7e5bccd3ccd237e8443c36fb07f50abfd988793ada2270c1db717a33730a8865ba0da5132f6c15750d\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"743fdce65c15a85da507535ceeeb2ddea98931dd6afa2d748e742622710d95094bb4c6157eb65dfc9c1c1d550d360911\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"bff7b508f8c1ff32b633cb4585e7fe6fb468acca9b141a87e081fd1a1e6c4b55d1faecc726beb4c6a4b36d0daacb9c8e\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"d0c5083510829c72bd84b46cf35c1daf98bb11af492ded14503e10f857e29e0589d45c2f05d678f73d95d115b865a816\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"21a94c1f5d0913e0e0471e5b4d4e2b476a1070411e9d98944821ddf1c933bf63f9f4c876213fc33a07fefb93ff401316\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"e2c5dd827855c9cf75c9ae81f6d98f4227bc2069f9d8a047852df975fad9ca36956540557b18b537d37d5b9e50729306\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"0f0bd671199fb1b2ad42647cab032cb6edfd77c65a042fb8165aa2a31336373a514e8846b521b2ccf4ac3b9802341e0f\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"a80cdcf67bb376bace4d031d86d80c99c5eaa280438c3af70cbb0d3bbb7dc7bf3438a9ecf028bdc6692b7f7ba89ec503\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"b03e54fd1267d5b94ef63d755cd928517d3cf4719837014c37d120a7de2c5fbd6d87f9387e591810a35960e4963d7a83\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"f772638b2125262f47fe20bd658508c1739c9c6d2be3dae9eb30670b6a04b09679bbdfabf88f1e134e1736538885a313\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"c1e5df086ad98ada37ca3075125f91aac090ef13487551442d3692c326c6d85351d86f9953171bebe8d562142c5f6f17\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"c47283b4bbb2cbf18c6ef0575f487c330841801cd756634c6b1444d4e9254d3e63c08cfc22d6d992ee1f82bb46a58087\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"87cb22352223067db94c29e67917b4a0824e551c06b7baf9f15cf96a71ca58cae64c771b43cc222ba6d1a60a178cce93\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"b9d80fa33835f8795b43046f393aa956f3eb010c908d5c23e5f42317bef40070f6deb9956f3f3717683b4116a797f603\",\n                \"eposed-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                \"slot-owner\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\"\n            },\n            {\n                \"bls-public-key\": \"7857d57c31d1904d50e8c678db57372f5d75cc13a136e6750523f881017c64d3efb83f2fb992ce55f80e51ec103a4682\",\n                \"eposed-stake\": \"5570568035333250000000000.000000000000000000\",\n                \"raw-stake\": \"5570568035333250000000000.000000000000000000\",\n                \"slot-owner\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\"\n            },\n            {\n                \"bls-public-key\": \"af019886714fad9215add0f578bf2b989df75bfc6e9b46b00c33a41e2c6a2f7a396270148e549b8d96ac20d27a8fd50e\",\n                \"eposed-stake\": \"5570568035333250000000000.000000000000000000\",\n                \"raw-stake\": \"5570568035333250000000000.000000000000000000\",\n                \"slot-owner\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\"\n            },\n            {\n                \"bls-public-key\": \"bc2dacfaea70130fd69d18c08b691e7a3fccac4835240211f9853aa0bfebcccd325d33904570f22fbaa6c2d7a58ba08e\",\n                \"eposed-stake\": \"5570568035333250000000000.000000000000000000\",\n                \"raw-stake\": \"5570568035333250000000000.000000000000000000\",\n                \"slot-owner\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\"\n            },\n            {\n                \"bls-public-key\": \"6d1c51044ecda0c4e872d19c3cb00fdac157c0f70460c335e450291c29d3a5ab450dd4a54c7f22996ff0e476fcd2cb12\",\n                \"eposed-stake\": \"5570568035333250000000000.000000000000000000\",\n                \"raw-stake\": \"5570568035333250000000000.000000000000000000\",\n                \"slot-owner\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\"\n            },\n            {\n                \"bls-public-key\": \"dfe6a6381ab0c2f0c37a9acf5952f22c1a74f34c75b21b1354a53d215de7c55abf365184cc51f0e63891f73aa53bdb10\",\n                \"eposed-stake\": \"5550219253079850000000000.000000000000000000\",\n                \"raw-stake\": \"5550219253079850000000000.000000000000000000\",\n                \"slot-owner\": \"one1mx5mz8fh0v27kvjwyujh4s697z026yexqp9fyu\"\n            },\n            {\n                \"bls-public-key\": \"7be5a3cccaf391b49424f48a538f0375c403ff85995f62d74c7c40149a57954227545db8f4f07ccd9584348d9e232194\",\n                \"eposed-stake\": \"5550219253079850000000000.000000000000000000\",\n                \"raw-stake\": \"5550219253079850000000000.000000000000000000\",\n                \"slot-owner\": \"one1mx5mz8fh0v27kvjwyujh4s697z026yexqp9fyu\"\n            },\n            {\n                \"bls-public-key\": \"847ba7e5422187c2c0e594efa31840d117641d9a156ffc076d9194ab71f7ce95b59f2c00a822312da60f39f2d6437583\",\n                \"eposed-stake\": \"5507005885079950000000000.000000000000000000\",\n                \"raw-stake\": \"5507005885079950000000000.000000000000000000\",\n                \"slot-owner\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\"\n            },\n            {\n                \"bls-public-key\": \"a47dfdc18f6118de254649ef09c356372eb8b34939c10e8f32cbe17363d01fa7694f0ca409de478c21233b3402f0638f\",\n                \"eposed-stake\": \"5507005885079950000000000.000000000000000000\",\n                \"raw-stake\": \"5507005885079950000000000.000000000000000000\",\n                \"slot-owner\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\"\n            },\n            {\n                \"bls-public-key\": \"9d5f3a3464b1cd835417837400af8b31bdd9e47de11cb131c4f7024a52df8329074b11d54296d8ba26d57fe7b0bf9197\",\n                \"eposed-stake\": \"5507005885079950000000000.000000000000000000\",\n                \"raw-stake\": \"5507005885079950000000000.000000000000000000\",\n                \"slot-owner\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\"\n            },\n            {\n                \"bls-public-key\": \"fa39249e9fdc2c7d2f05134ae3767ad2422b6796b56c0e1e1b64a170d5ffa90778736a403732c37e701cc6306d4a0e97\",\n                \"eposed-stake\": \"5507005885079950000000000.000000000000000000\",\n                \"raw-stake\": \"5507005885079950000000000.000000000000000000\",\n                \"slot-owner\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\"\n            },\n            {\n                \"bls-public-key\": \"149b64db1423d6ff7ff8e192ae39cc836ae06bb8b8fc45c1aba84dd87329756ea0041bfb62535d082312a6fcca988b87\",\n                \"eposed-stake\": \"5505476325605488888666666.666666666666666666\",\n                \"raw-stake\": \"5505476325605488888666666.666666666666666666\",\n                \"slot-owner\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\"\n            },\n            {\n                \"bls-public-key\": \"1f3ac5111ed5768a2dd10ab5e600d414ff8f27f6305280f959f0eff06727b3436a416223eb4676ce5ed4710d7539900b\",\n                \"eposed-stake\": \"5505476325605488888666666.666666666666666666\",\n                \"raw-stake\": \"5505476325605488888666666.666666666666666666\",\n                \"slot-owner\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\"\n            },\n            {\n                \"bls-public-key\": \"b300c9649d2ac7c7669543fe9bfa9b52afd0853d32928cbee765647a94db5a11b68a6d8c71bd4ba0e476fcae968d3e13\",\n                \"eposed-stake\": \"5505476325605488888666666.666666666666666666\",\n                \"raw-stake\": \"5505476325605488888666666.666666666666666666\",\n                \"slot-owner\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\"\n            },\n            {\n                \"bls-public-key\": \"d57cd6de45014b79f81a7752deb0c385a324b0efaed86a8c06a1b5d4212430d21a7361f2f799f434967d5558aea85e8b\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"6d14b744ddc346f422d50d9df92e885732fa4963192cec2023390056f04afebe7accb5fdb8a17deeabba46b0d055a802\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"7c5ca6fd99109e79b2ba94caabba3e8b0e40785fc15e9b62a6804ed7ec6ff04b3a954172290b1e2dd9e26edfefd8ab02\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"1781c77e68eb73118dc75cbaa5c3531f76434462463b2e6a07a91ed5c0a6cc85c14491f64a8bce7165feaf619519ef86\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"f2a4539f1251cc5b173d43d52ffc41f95da5999e782f8c3f82bdd76d2f85fc4ce35ebca5fd6130fb018efd3bb140b78b\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"cb6a52fd791c3afb7a0243fa1b5388ce451707ecf94ef7262905929db69588d68ad027c8736d6a868195ab740a459c8f\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"59cd2977ef1f46ade77b8dc56d26883acf9f1e8b05eea76f1a35f4ef636d241d4d63c35a7aa3873ce64bcca76018e213\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"c1fdc6946494e5caf6590c04b8e38172b481cdd570b884628dec1a1e4c8a553b697cfa5c6ae678003b6b73e5903d638a\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"907d2fcf1857be1d1880f86af693e0def624a2d886eb19ab6002e2aa0965a06b0bdcf065ef768da4ff7d0fa5f1977d0a\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"d2f6b1c9903d38fde61a77a293ec8c9107255ff7867bcfd8e9189b1fcb1ea220fc55a35c81bb0ad1a32cd39ee06f8683\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"38f4891a6abe036c75d1dadcdf8c19f8769d0ba01c421fe1b8fc2c5b681416251ccb77abc51c336228bd74bf345bc407\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"9756abbc889d65aa2739fecc1bc7188640395c003de39c4704525136764d5b607750fb86f8d6b93a784ff52456147b01\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"e3750661e4996422239dbdc369793e3cd248c6f4ad54f17145a5396347af67abc8fac82a5e51a45055b483874b9ac691\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"fe809303969f91a644580f1515e6d3029802c3a964a5eb6413ec2a72c1e17c70c795ae72d8647af9aa68538b368ac009\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"2a2091d221e02a0982a4c4501f94d88980ccff0a447b3d47d0f78aa1e77504daca95cc35698ceaa1c984b819af5a160d\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"417c2b9d293c24c03cce180d279968855abcd8407a56ad3d38ee41f7231da51adc90f9afb1f6f054c28cac4465cb9296\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"8a8baf28a1aa17c58a30a8472ddba616e9b5c37105f2d754530850927722144f4b5b263de9339aa13a07013654559586\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"365ebf1f7867198e2c3291e515717e0caa0b8eb65dc181a178dfe5dde0cdffc354d3c40fd5cedff9e192cdb6ffdf350f\",\n                \"eposed-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"raw-stake\": \"5497375670577985714277777.777777777777777777\",\n                \"slot-owner\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\"\n            },\n            {\n                \"bls-public-key\": \"01af43ece70486159d0fcbde2986037dbd6466ada58ae584c8a38f5f4caafab86835c9643b3380fe357dc19d3e97fc8a\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"038ec53f77c4f8d58a81d9c13cfff5f1f0d57eea309bb0632fe76687a8f663c5ba83faddd23845d20ba25a359dcdf592\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"050569b98c2fe451e981e964c13d65e0b922825d0570c51f2f8883b849c32fbc15415e71045544f803c1286037abbe8e\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"0b70c31a49b53761b2259674a2bb28034aaab0dfdabf3cceb8ea0bdc451333b712c2d897a32578ea877a4195847cef86\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"133acf05ac9701c81ffd1150ec12dc016b2f6083a979aa90b1f8c63619700b8d8fc85661d186dee6dbd4bbab465c5392\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"06f8dc945fb93c437d8896ae5cfb4143c065bf525eb3c9ba1144b1c542098fee332e2b9b543d028df7bacbda0fd5868b\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"08a261d6b9a0e5eabbf07335605a97917c35158379a3a00da1065402ef7ef49759e5bedc39561182509ec0b3c171b003\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"0a2b57cc2a8574f56033ae74aa4e597012218bfeecaa3f3801a0dc3179b60b92cf99bac581f6b1ab8e6fb00dcc496617\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"11c43fa0691d6f706c57f8cc85f094388bd0f6b7edc95b5167fc3eec61283dcc20c92e92d5377e37eb28bbf00c154513\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"1471e1ec34c64eed9df5640f4c517d144395e45a2cc373dafec3ff9e7064b969faab23309f1511873419c1cce8382513\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"0090a1b348eb265400f6cece55967e3f1acc626b1c401c75ba0c85584811ed941d0ef997b3c349549a7cb4a8cd5a3e89\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"00f97b06aa7b67db2dbcc7f3ddcb05cfb9e128de3c672597fddd102b827424d183865178dbb8759a098fe8b274cca405\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"0643b03e4436172ae33a0bc3bb385152e1493f50475331753bbd58568cce3a334e79b9e4996b469fab2cc274ffc79885\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"0beeac0101c221ad63ff79835e52dbb4b3679dfe5132917f57480a62e212a672853129bf96a38632b06a2eb47f0c370d\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"0c64925d32333c570fc42d8d059c8d51c0c6891b7d01949839924b9406af82f3e0c67f7ea8d613013783ef378509ef0d\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"01907faf33066dfd001fa0ccccf0dbf5bac13c45a06677fd476e4a5e88b0bfe68a36bef81b9439092762f6dd053fbc10\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"0742d2fb9e19f3956255c4b866fe2c80b37a32a9c08eab25db88ac58c7f883e1a05faa7df005b5b102d361fad272940c\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"102fa26fee93a03582ff5dfd459d73b1ef155918b17681b2d9882ec6a541addf0dca42ab6f7b5aa298498a59befe7990\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"1280a5222b63bc66c31176a1b321db7a5207d7a37226ba25b769a776ddbf2f50ef90d7da28fe8feed3882355c561f910\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"0cd4f33a299dd068042d5423bd1fe00f572a44d20137c093c6f636a069c0913e76cd04131554a8f4c4a91d892f161419\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"1a846c0d8c648c4c029093e21d3e5d64179ac94e74b422cbd8a157b760fbbd8b556b0c4cc2eb04f155ff22f38c288b02\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"1aa713611e2496a7136b9bcddeea0dba78ed1f8d7f2d67cf1c6f3cedab549a00e2dc45e7dd8a58eb0f81e93f2feff507\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"10ad4173cef1909c35ce7464816b9f6809e336e8b70d92bca64b11311722bcbf33b9578a60e96d305b3a9f013c297c8d\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"1f4d1ca9f1ecde65af73e44e4ae7912f91ed2aa7ccacdf11a660d172200b06fc509b4f5fb879cb364269a547bf72548e\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"1f2efeee18134f78a2ce7d483599358ed228eb45e1124e8eb3cc741486d6eac76bdf6dfa2450bf54cb75a71a2835bf83\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"11a4a7b7323dc3e5e6bcf64cd97b65662bdd5cf516ee85dc72647e22f7fb983c08b01906d7e8fa0d9a638bc5d691e711\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"244170fb2374a10997f4f39b0540d98a4fe30c4325ff84ce7812f6e0e7660a4b3583bf4214a9defdbaad3db3ef76938e\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"226dd250b580edbed2239bfdd268cef37fa5e8ec5f323cb0eae5a830c1e17fb8d2e45dbb0ba90e383ed95f10ed9e5593\",\n                \"eposed-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                \"slot-owner\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\"\n            },\n            {\n                \"bls-public-key\": \"19a42db0ada7e82134f72dd17e20d2d3ba2e36a33dc8a93c5fc4e40d472403538af282b1a427abfa61371c4814818e13\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"2220759df1bd1d68d40fcf746c894283e80088df83bde4618458dc6adb9f180dc0ae361e0d554a5a0f61d3d86d57ba97\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"8047e6aae13b6c4cba7707529d32ffd66e935fe0a624a0b9b744898dcf5e8ea84877f1809cad5d7d9e5dd5eba2ef6189\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"e5ea8826643e9962b21abcbf9ee087137ec336a8828600726fd1acce369417a40798b0c52f0cd18d21200768e793aa09\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"3a483fca6153214c083b944b69a65eab16aa58b94679ff80151dcd6447541390ae1d0fa176179fc9973c20568abaf88e\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"8c0f977fc49b0b5741c4c4d25c8db148f401c7e14d9bb4b829931418b47349e6079aff8bda5e1e5976fa0c0bf4162802\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"9b33b36c5d82e80d45fd49f136d76da580b77a21eb68692b0b44accaf8cea8647ad75086f3f872385bc8d25236fe8312\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"dafd8989fd7dcc29ccbd5e38f90f27c990488b7875c3a83bc51268d60f1651ade03bf4c990278351ee4835dcf9234007\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"4c20bb0b2837e06c60e7a377798987a66f216c6d6c466b31d024d174a120267a65cf91d25308c6d9206bba1a37073b91\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"b7c1e4947c0133e786360d605eb8bfb15ef5c39022de9f89546a9fa3792f333e1e50e03436e831571fc9e9fde3d04197\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"433bd1eb567b540d1cf324abc83b3fc33d4a96d7daf9644901cb339bc393b0f300cae82c800f04590cc74bc5f35c6d02\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"d7f3aedc704744bbe78a2e85068c2307e6c3c7a3b8bc6495a1a39dd4f2dc503170b3d0e4cb40943d41fa8e795a363e85\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"a472acf4f4f3faecb283217b4bf0b99eb019c55dc079afacea88695b63a1b7f3371074981db77929e3859fb2929e490b\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"f9e741cb120862af08828345fb967e66eb3fc5e25b7a6688074b80cdd2acbb898af484110eacdb7ba300da9d39ed2b8b\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"66ab282fbb88b2dddb564dee12064f61cb11041aa18ed553338867b0ab8a3f4ea7f48a96ef98a81fbb10bb853188a78f\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"3af3cc91916bebbc240a5ca9c7aa478a0ffb54ca6d1e6c09089271d48a62072bf769676de303403c3465c45c7ec24e15\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"575fa22442d33042bee0760b72b2cdc4c9d8f81164a19a190d9923bcfffa750c8e7d10c1efd34553444020e76105e585\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"c7f6d67cd32103215bdeb574bac7576f553a9dd3028afd138dd8627d200b8c3b09c34e0b2178d3bb85d1ff13bcf30919\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"fdf618fbaab9588f74ac1b681018f474459afb047afec0dc9df9da8381cebe85a08790bf49f121cba75c2939da9cb68b\",\n                \"eposed-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"raw-stake\": \"5476479607953505764389473.684210526315789473\",\n                \"slot-owner\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\"\n            },\n            {\n                \"bls-public-key\": \"bb9ebc1cc84331ddfcd16aee4fc361de910b7a30a931b9c10a14d069ea308e85717595e915a8536ca78931c88f1a2b98\",\n                \"eposed-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"raw-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"slot-owner\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\"\n            },\n            {\n                \"bls-public-key\": \"4eeec0a689bcef30dc3916f20400d94ade5fd5cb10abf5a866301d430cad912e26e3621edad95cec194fb43bbea4d610\",\n                \"eposed-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"raw-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"slot-owner\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\"\n            },\n            {\n                \"bls-public-key\": \"742e7f9c7981dfd9040dec06014c8f0dbbb1f117871ed97b0dd5f497e264aaedf9673c835062e26793ff4c0438978e94\",\n                \"eposed-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"raw-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"slot-owner\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\"\n            },\n            {\n                \"bls-public-key\": \"c84875782fd5dd9bc92a57b7d516992e2c3a6408b3f6dc8c3f5c188ab7dd1878007f18b748cb51894b38ba13f3404090\",\n                \"eposed-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"raw-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"slot-owner\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\"\n            },\n            {\n                \"bls-public-key\": \"a1db364436316e10329d311c3bb538a2ac676da43c222e6c16dc147375b34be00000c0872745b2cb33d11c58ca478c10\",\n                \"eposed-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"raw-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"slot-owner\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\"\n            },\n            {\n                \"bls-public-key\": \"e14c69d87d586a3285de3c9c7c345580049d2652080210878cce1535076183fd454ae2a3e85461a513db6b7c1d471c04\",\n                \"eposed-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"raw-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"slot-owner\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\"\n            },\n            {\n                \"bls-public-key\": \"440bb29c6c3669419befd3de2b53c69fb51ae916b9b023384b557ac5163ae8edbceb0b73e79be904ded2de879f609d80\",\n                \"eposed-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"raw-stake\": \"5471888340812368025671428.571428571428571428\",\n                \"slot-owner\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\"\n            },\n            {\n                \"bls-public-key\": \"5e30eacccec0a503b8df9ffe97df69e82c2137f83ada86e62e11cc79a931ea99d64565799b83c498bf3c775c990fb40c\",\n                \"eposed-stake\": \"5430959729636522978700000.000000000000000000\",\n                \"raw-stake\": \"5430959729636522978700000.000000000000000000\",\n                \"slot-owner\": \"one15mf5amj7nc8c9zpp0e2wr48em0r2vm02k9m8h2\"\n            },\n            {\n                \"bls-public-key\": \"7ec92621a6cf99e7cf236f9c218a6fc6120696d1dfe8687cfbf5b0d1a0b7785a9c6e7633b0829078d77ceb00b7d8d109\",\n                \"eposed-stake\": \"5430749328674000000000000.000000000000000000\",\n                \"raw-stake\": \"5430749328674000000000000.000000000000000000\",\n                \"slot-owner\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\"\n            },\n            {\n                \"bls-public-key\": \"ae5a7f0981b71b588df866bbb7457c42549824f8688743038c7c0c8a5a181be0747373d690989c09265d7b4802a6d30d\",\n                \"eposed-stake\": \"5430749328674000000000000.000000000000000000\",\n                \"raw-stake\": \"5430749328674000000000000.000000000000000000\",\n                \"slot-owner\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\"\n            },\n            {\n                \"bls-public-key\": \"f1558e3fff2d89c37acec3d055bf0131c864fb222574bef27ca0af13dd3fd73173d8e818d842b117f5c6d5bcd545250d\",\n                \"eposed-stake\": \"5430749328674000000000000.000000000000000000\",\n                \"raw-stake\": \"5430749328674000000000000.000000000000000000\",\n                \"slot-owner\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\"\n            },\n            {\n                \"bls-public-key\": \"2826b297f1c212b89e510d7fafd7979de781116b44277e3c879286088be7b4d26cf4e4d439d99ff85944d9e0266c528a\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"298a240c89c51bb025d613d240c7d9ac7f25efce5e78dcf709cee013b67fbb6703a961d7a5e8c561560fcb07218baf8e\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"8133ed48cc607ccfcb890d8780dc8610b038a0e0e09c05f8f61981cc53486ea6672293cb9c249ac86fd2aa50bdc19b12\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"028e33a20bdb4c3badb5b32107899b3e6abef57af2f9d330e47c1318c439938164fb9c4d6eda4c133089648e33400987\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"8778aef9a71ae1cac71a8c86e07df5e0764d0b1287e03f92cbe0bb4ba4fa278ee8584d33048e69425dd6b7d732f9f887\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"16c76b244e7cac2017f505234579991d68e40f6be0989e501da98e6adc271526a69b4ffaf232b1e137a85ade615e740b\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"74a4274fa9f794536921cb84ef4c6644a278a1bb8778da6c6c694aac1c12bc618a78c2eab321662b1a5976339c20c402\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"949e0e2fa9643fac1ddfe01c91254ca2e53cd29aa8a37dbf52df804a02a6f58bd34f9f7b2f7c84eeece714715459df83\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"5b13791fa1787deaefb5edaa4c614865660f041ce6f99017bf26b28fe6734b564fcf3f1827706dd11a729fbf58a8780a\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"55d36ffc75e6be957415dcfb8bdf3235f6e95167d644bb6d50ddfcc868594f852b7ef520140a5d44f3a0723a16d0d417\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"3dd79d723b8aac2182660a12cc173dd76973c1f6c459ce4f3b797cfa0d9114924f12cd211d36d7356318c75026afbd13\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"9b413252ce0cf2f289c1838b3e35a4b70ec6ef659bd23c606b8e93be3c2e4e065400310cfdbb299ea65bd357c7c9da0f\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"a60da09df9a6aba6754d2a2541ee41274d00e991ef1b14d7d6d889227a5a437d0b9f201f155e0e1ed535770b1f8f2a83\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"7e2ac7bea191b33fd9efe9326e727c4a0c357cc7e0019a41085cc5cf2d01aae6c2ef98746185aa99ee2837d2d079638f\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"e1c465d5d4b654b6d9a4244fe62dc417adbffb1536c6adc179d0d60ab584869ca5c653175ffebd9dda8c374a1a25c90e\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"70a36816c4d0c0b97f352378cc22ff7e0d337322c89962867b5017cb0565197899cc0d4b151985d7ab25e047d8563502\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"c86a5171077eed06fd29e5add5561e649f60af1455130d15fecdd2784ba7ed87fb68c4e72ef01f4f64c0c4e51b3e3c86\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"bcbe661d60d81334dcc30881f18ff6f4c64f8071f0f21d62d99b992ed28d6051aea58c691cbfaee674c98355c1de5182\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"16e3d373df7e5c01c2dd21be40cc04e5036b259cc3f28844659501d06e46b1f223891c7eb1f6c2eb41eec8eb606dd604\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"1dfd33e1ba1f48640d64bd0a878b21840758f44c6d5845d9e0e804997d3207aa2c40d04b2eee3dd03cdd7a6453395508\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"3c9ff839972f68a9179d90211d086252ac66f04d975934a6e91e45f805ce746b8b59156bd79cfac414c9a77017c11680\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"4d4aa3f120cc3cf27edac2a29029dd640e712f92e47ee751a20839896a0ff5bb185c33d7c832961c21df070ac2d85314\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"ce72a574a4ad4b116314c82162250211476066e1403f65f83baac852c378650d4796fb34c39a1012a632ff5f7f508b90\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"715f484e66a6c6e4597dacea5fedbb318414c73c6e82b092a7d3399f5410a5b1afd5ebff47ea58e08a0012fe6eece98c\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"43ad254f6cbec380f5f99df0369f96fb6ba7c7518d89241939faf6d9d69c5490afeef05b421fffbf926b479390fa0b90\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"a7d5341af7a9cb69bcc366a41a98d0eeb3e9bc68e2a73d9e3799825738bdfd6b183d0bbbdf4448d6bf064b6e0e16f218\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"6d1f4132b9beab5ad84b9038bcbf0ab9a6d23ca739f1bdaf8d9020fec83b7eaa741b78b66c00a09ce7a7c906bc18310c\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"61756a1a3f55ac33cf86a884ddc0795a91ecb05ee4486b89da20c7c0ecd8977a7225a789b91e02d52ebed33ddbc31f94\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"fcd49de42863a6059a8a60a1565e4616a7933a5f918b8eac986da5594fa3b0f0177e66f01b5f54c453c4adfda836c913\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"d4eaeaaff529c66ded783947df40503622ea653bbc3bcf7d2f6165550b76a053842a18acec09a230babb3579f6444683\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"00b6377e7d3eb5c8d7e88fcb82754f45c89e21bc4d65ddf8d68b9d9646f779bcc010318a5f943d57f8cd0e06629e320d\",\n                \"eposed-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"raw-stake\": \"5429627614137833135729032.258064516129032258\",\n                \"slot-owner\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\"\n            },\n            {\n                \"bls-public-key\": \"a911bc83a580cf27c4db1e9e337571eb4a9a57e1a20683db4b2458d566a4486869085c7173e8d28b89743b4ab1ec9113\",\n                \"eposed-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"raw-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"slot-owner\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\"\n            },\n            {\n                \"bls-public-key\": \"cc5d617fc09fe51e17c662161d31775939f5d2c697281474470a4a93273083f702a384bcaa9cb2abe80b9a1921335a13\",\n                \"eposed-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"raw-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"slot-owner\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\"\n            },\n            {\n                \"bls-public-key\": \"727560b71d3913af37761f21905eeaae5e789e4ba6eea5343b84727aa125e8730486ad4cda9d162d2595edff55593297\",\n                \"eposed-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"raw-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"slot-owner\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\"\n            },\n            {\n                \"bls-public-key\": \"0c625906b4a10a9772ad58099ab35cb0e959e5e7231a05a5bda30141b5448b4e8cbc4f623d4def4633f8845b48c09183\",\n                \"eposed-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"raw-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"slot-owner\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\"\n            },\n            {\n                \"bls-public-key\": \"527d82b5fb83572c02c8f19565d6eb73da8bde325e2fb1ab2c9d961ef5f7d32dd4156064d882f40a762eccf93775d197\",\n                \"eposed-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"raw-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"slot-owner\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\"\n            },\n            {\n                \"bls-public-key\": \"596f3d0e70be4958cf1279e59ff3630c425ef3a0ac9016a53f41bed463acbf4cd5e5f5f9d8dc8810239c8dd761f6b58f\",\n                \"eposed-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"raw-stake\": \"5425482889653688888833333.333333333333333333\",\n                \"slot-owner\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\"\n            },\n            {\n                \"bls-public-key\": \"1181a673448c0b135574063249f0754b9a521c31d5955441bd975f33291c214731c57308176877af57e801d3433b9409\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"73c059d291361151de45f3b34c9eba861fbde72cff5a00c24526d017a8414b577ab2b72291eee615501b1e336e54d891\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"a7d0040ac7c79df54009fd3dc7ceaaae6dbf33cd2c144f75c2558a614032fa846a54d8d779bdeb6ae63590b19c533382\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"dd16b9e77c883093f9481a84ff96823a5aa4b09f5a0dc6092b8db98ade5302c9b4074c8028f3347dc522c9686592cf02\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"4d56f8d3f0e254b61f1fd0987f93e0bd66850f37bcdb6fd90d812d3ae0f44c4272356a42e7af289f8497096dddb4518f\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"179c14684b1d39715563d3cb0565782b37a231c056886fe5cc0c7547a7e95439f5feab4199ae25b8bb191ba4b4d93397\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"adefd13f109aa759825fec4741aef8df56fa6808c9600da42b7c7e7a29688bb9855cf13abc2e562d80dda58d05546417\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"851e2ac1306d867851b618f0343bb1ffe2ca5d6cacc642defeb603c807138320bd7f33d83184e7865cf5ee0cba242a87\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"3faa1e4d144872bbf6d3168aaa8c2d30b000fbd889f943da2a96edc54ee50c08e7208416f494685ba521b50d0295fe06\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"a6898ff36da875376516e205f687a7590e124337f0cfad968624e05a1a3f472e04ff0da9bded67922a2beee748136b09\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"17d4c9cf214edad944f13ee8b52dce377c1043842d14c74673a3dbc79ed63420171a3a66d1b10a6a0278db5405320318\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"64bf95a58cecb76b90d85f0729b3bb411ae56ba11753da991579eca8d3f72bd6749592b567637d53035c3cfc9a57ea00\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"935e4e9c467c60646c7acf7a30156b410bdd1aec52403344e964ae33c35e635aa9c1976aa7f1606437bcd2853568db90\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"880106b3aa920518e46ad26ee3a13c7a13426235f3d5ded0c19f75e113628d1807bfd9d8cc614e114dab51a51c9f3719\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"88a5216174e026b45a4be63b17ed2c6cb25fa4e41e397b88d765cc49412d9b6c14d0e7138b7cceb0d2f5957d7ba8a305\",\n                \"eposed-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"raw-stake\": \"5424227494355742857133333.333333333333333333\",\n                \"slot-owner\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\"\n            },\n            {\n                \"bls-public-key\": \"2ca7cb0362db342d82d51fed78ba24c88fd061ddccc929923cb7443ff99ddfaf5136e14adf2068cc3d1e1653d11f5b88\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"4b4c85ced3f516d101022dee1c728823f900356d50dddbc2b47e4d8c3d7f91c501748ecb9c494178703b262f76fba790\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"4c65f90e6354e10d190f213a8665c77d97f52b3d5223047f5ce1d8e8dd783c32d3d2e70a307661ba32241cae513d6994\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"4f50f328160160d3773f434b7f769c7eaca25e08daa717bc4062be94237da4d0fe973087b68c3e13dfe198682266c218\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"8d14f8242ee01fc3ba63bce5f6d789bb5dde518930406e1d8c21d2ef5acc3659482aaec12eb32ab21292a11796a6028c\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"3122d1a0c32421c267cfa8c3994357608c9868a3460a5d325c70d5f7c5b2e87626be14c50262d6fe56cf80ed735fde8c\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"5366ee770e6bf00cbf65d683bc0aa00ce600adcd644ac6ba078f0f825fce10283bcf19fa6c08ebddeaa23a8e2f63a108\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"00b3f69f0e90d2373555dd6827794945d7465b067fe4b1e8a9bc695508f9071af2ffba3b330fb42617534f23ece5c409\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"0b12ee68ad020e4a72cd302c1ba112b51b631221917a0862485bf9520af2ec60bc2c9ee387964811c5e009bbd258b191\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"0fbce1adfb35da5d812f795f5acbfff10651309727271cf68cf6f8a21b36521dbac758ac874f7d5e3a01b7dcd41efb17\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"3cc36b809ac60b2aacf1c8a4e989c6f8d3a389d5d0a6940e36275ab7a359572baa8fae0d03e50a37d7ed27c4318ac10b\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"57320cc0aaeb7090f8fcfd4d4670264c086e541591378a7b2efc58c1ceb43e7f22630401b3ae53d15e96561f50d2b68c\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"087472b5eb52a05589341d95d009e9bcd0c22f314842d824b496e321d642a7f7cd71983bb8a4a81f3d9006e8155f4494\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"04cf6b75d961be22599741dafb25394a1fed85e0232744e645a8720acbb9b8f2f7a46909b1d70935e500e4ad0f940d8f\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"4d668e1c2ac9bfb632ceb654042eee79ff927de2b290440b0c55d8b323130b911caa2599772f69d2c0d823ac2d6d2a11\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"7a3ce87d76839d870f2c27bd00fbe3731323a24c3142ee32470783e792a03adb6e7487d09d85aa118fb4c44c73b70009\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"08aca306ce6f5b79f0f58c8fd9e91f4a0864ea7354646a5c0d38f8266f93902ac43691ee73d0578d707fc364d6655987\",\n                \"eposed-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"raw-stake\": \"5364281394775361475249875.294117647058823529\",\n                \"slot-owner\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\"\n            },\n            {\n                \"bls-public-key\": \"304254dd9e216f9014bdb75e7acdf17760b7b3a70bf2e7da751728f8ca66f3bad26c971c8775803d0d2a80bd84402e94\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"67449764648f0ba4ba0f7d689278fb36a3f81d2c65432a9372ca75957aec3a456b35c89315fc9dff46e31cf257beac98\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"7c07906423d06c8b4f3d30a1b139e29880cc7b1a39e150919308d8b321985740fc0a2af4b85cb17685442241cad34d88\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"59d956935972502209c7c3ca629227cc13beb7b53f9be02bec04d35e7a2165144d0fca23293f60c3d15c3ab178e1a804\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"33a3d789c0ae207be83019bc6211f8d0f4b2351d4227abc5b2c63a8bd079a19389936556f1cb750debc32b7b024e650c\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"86bc72330c7698f2e439a3fdbd0c2ee4cdbbd1a5ec862bd57933e0fb228f8089548f94877b305a16d3e24610e8c4da18\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"70c68e596625ec8804d6e6b43f8c1964adb674b5bf897582201714bfc309b6fa67915390ccf382f8cd58a4c851111388\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"ab9098928a35c724dc2b11be0eacb6bc86a4613b069ff6396415f6a10e6265b710394d9077db7070945d45cec7fac484\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"dc277e5aa25ebc0a9092f514964338e66048fd3c952a3652b8aa64c8dfbfd2024a43070cd07c6bcd5682375ec4c0b898\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"382cb200d415c25b527e6fe2772c093de9af6fdecf596aa03a35026f2766f550b5a16be316aee427341214f1b7d3b00c\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"385cd756a60348191576404ef8e60817225160c5806ed54c9997286b55e6526dc304c6f0f92084e31ecff8cde36b7d10\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"1737cd597cd9aba25154b71ea5281aaec3c4f89920548a1af8eaff6e4f2cc1e60613bc3666ab5befed3a90b5c5ca5d10\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"ddf5bfb62d7d7065634220828ffbbc4340a121c477e5a0ce558200f5216279be8b1788d78b427ea1a819fe37ad92d388\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"a330d62e144606695d5fe66385a0120cecb3e5ab71cc33c0e1e4a034cc37e1156f12a34f3c91158638618589804ccc80\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"375347947f93314b12b13ccfdc8b6f95651459e99b42deee0e3855ee94294c4f3bb5be3f87c034e859514e3f3dbca988\",\n                \"eposed-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                \"slot-owner\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\"\n            },\n            {\n                \"bls-public-key\": \"dbe838331c502c24366bfae521c30cef2c118c34f8a53b383c9c80d57acfc2ceb1fc979d046063bb1929d7d1d0803a84\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"fe0593f9a38821750623a189db19294eaa288b86efa46b0fc2c9e100174a51717e3695fc143dbba963800acd9dfa4010\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"a7fe02c4f789c053f8061cfa72ab6fb41c58eac7bb17c0d1c699e6c49182ef95c0d72a4be51b828870c6b4c279ce9f95\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"e1cac822f129fe47fb636a0ca3575bf8f979dd5c353abb1a8441a5b5f486be4df286b1b6ef01916734ee2e8f27a45b0e\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"70ea1ba2963116dd3e8c30795a5cca98c7271cc1e39bc3fb074cc4419a83b8d56b8ac3734e3252af35b97d84a68a1a03\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"b68713738f5385048ca97b5188f331b0763937330b0ce306548f07d5401065538d7d1cbcd4bae5ed2d0eb1c9c36cde8b\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"6d1ecb3757073c7886cf13562230900dcb1b63210816806ffac92b323bf28f1ea08f6ed1a6db37669adc044f05be9f8b\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"62b08e5b27033432965a81667acccc127b9e709d243299ac0d961edf7f0f90055c43c9c7ae55ee830d782cf32f711207\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"54c3cabec33735721eef52bcfe94282d19919ccb90b9675bee8a8425cc15bac27b9dac5fcfbe560eb39ec619efdda386\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"6a924159a7082d438cc1b8176bbeeef57f107ce62eb0a63cfbc92d2cd85b2544126dfe7d01302d578689f9b956fe828a\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"4af3740a2400c6eabbff5db46e214c6aa6e2c288210cbfbedad40f2672f7359b101fe102f8bb3ab4a4badc4f99f58e92\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"8c166b798f14ee72dbbfe73c759ec6571613114933f2d82ca7dec67731e3ee57967a9da98822e5345f78f38a4c58a710\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"5074d8e57293ae73a10ce2f9ebd970872ebe972c377ae8fefd4f29da42d8cd4941c7a27831f7d31e3b7c4881ee31e711\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"4d90f1bd3d6fd2803b5a68917c1917579479a4f24a59eba93c729175e26a5adfa6dd596273136c1be24f4b0d35bc1003\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"5d0f9e2e4b97dd567bfb5e486d4d32303eff1bf36a1b484dbb5a499c83e85d6c3656fe3a3a56187e032de612355e9419\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"860b2ccf90c6177f3684720ad63f61467d32f7fbda63bab4eb4955235bb84f71408a5c53d393e04e20e911f5bfaf2e0a\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"5be15de52c6f3ef44947437734e1d9c8f2e16d71ef1eaac70cefa58e2de5dd950d35edc624d69f11625c01d3102af085\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"4d5dcc9d7b3f4c973a3f91e85b77ede091fe3fd2e494920a1c4026355998694864f7731b8c3630379adfbeaa17849a09\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"7a0af4d7e6f2a82f1afff03bcf4b59457b3db0c1a582d42e4c4d15a2091ff175eda5e194e4142c856e28abc5cb2dfa90\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"6cec58349cd971eb0d5c65937b3c0a98c449a601e08cbb2c881577c5475491c17610531c19e660a461d3ea9cb2bc808c\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"2e935bfa72ad37e549100c95d0d2b153c0fe5786589b2c853eb91049c95fef9bdf80a4ccd2fc0f0b1431ff2dd248eb8b\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"4ace32c030558cfea4b215615a2225d379e6a0c3f5c0bdf11a694b88bf7477c308e9617298e6f836853523af63cd6602\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"5ea4a8c13bbc364b869c9f7c6b5933a106c5a062e1ccaf83d0650d25ab29dfe6875cc2e5b2b5cbd2712417b46cfe128c\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"2d6a4c4c21a67c9ed0b729ab12bbdfec058e54348d0721906137afc22f2400958c42793ab7c4dc890f9cf14896ac4082\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"2aba11e4239383c631fcf0796c95241508a2a60be7302080e356638141bc01144787b68cf75d130ca596ebd01b57b107\",\n                \"eposed-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"raw-stake\": \"5349922797187211935846479.360000000000000000\",\n                \"slot-owner\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\"\n            },\n            {\n                \"bls-public-key\": \"0a551033f14306b088545b07ee0f8919b6bbe41d1fe220dc37749b8fdc71ae01dc520f786c8dd3af4bc9cf1fc4b4168f\",\n                \"eposed-stake\": \"5318795759410811666600000.000000000000000000\",\n                \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                \"slot-owner\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\"\n            },\n            {\n                \"bls-public-key\": \"9f9249854bacdd414da45d2934cdfbed122a12fc34d8722616ceaa4633112bcecadeabfc8610f95aabbe4af5014a520f\",\n                \"eposed-stake\": \"5318795759410811666600000.000000000000000000\",\n                \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                \"slot-owner\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\"\n            },\n            {\n                \"bls-public-key\": \"960d35be94f9915fb5e6f9127726ea6bc1ace83e34923b0157328ad4e85cec2463b36d0e4950ec645ef2d03f01c7db93\",\n                \"eposed-stake\": \"5318795759410811666600000.000000000000000000\",\n                \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                \"slot-owner\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\"\n            },\n            {\n                \"bls-public-key\": \"7d9b1e9fcf190e3f201fd7a7df3b86d669001063884152c3ef824859e25c9e45fa0b00f59d81c62b807ffca0f8f37c13\",\n                \"eposed-stake\": \"5318795759410811666600000.000000000000000000\",\n                \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                \"slot-owner\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\"\n            },\n            {\n                \"bls-public-key\": \"651f1e3a45a54e2a046f9c038fbd21e990bc911169c16e4518f235fb28c7a36e83e7a70f3eedf2bcf83637973f63d291\",\n                \"eposed-stake\": \"5318795759410811666600000.000000000000000000\",\n                \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                \"slot-owner\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\"\n            },\n            {\n                \"bls-public-key\": \"879230eecfe6297b0bd6d2f2dbf23c367b54bfe1ce2fd3591a00820d06c83ee31da6c70560251955ad5e542e16aac38a\",\n                \"eposed-stake\": \"5275184843546800151200000.000000000000000000\",\n                \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                \"slot-owner\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\"\n            },\n            {\n                \"bls-public-key\": \"ee7f6c0b27b74b5963f10cf0a8ed41dd08df9d415cc3ce829aba9eb73c8fa47a167ffa996eece94c759c4c8014d1900a\",\n                \"eposed-stake\": \"5275184843546800151200000.000000000000000000\",\n                \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                \"slot-owner\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\"\n            },\n            {\n                \"bls-public-key\": \"32ac4f9e3fdd48b1f98266624e6dc91ffe66119ccfbeb87ff5c0c8ea37b66eedadc88e85aefd6ac8e70a767e52c04502\",\n                \"eposed-stake\": \"5275184843546800151200000.000000000000000000\",\n                \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                \"slot-owner\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\"\n            },\n            {\n                \"bls-public-key\": \"8ab17ea9edb91b841a25475e1ca4d4ae57af9f01586ab870895b1be0560bcae7b3629a28d6770f431db3461ca327e806\",\n                \"eposed-stake\": \"5275184843546800151200000.000000000000000000\",\n                \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                \"slot-owner\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\"\n            },\n            {\n                \"bls-public-key\": \"114c651af75381bca51c11c613a553ab622d1708001bb0f3e56d7f69009f5a9c611dd1e2576e345802766b064c3cea03\",\n                \"eposed-stake\": \"5275184843546800151200000.000000000000000000\",\n                \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                \"slot-owner\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\"\n            },\n            {\n                \"bls-public-key\": \"a52bbb39d1fcac96f538ce3bbd75537134720ebb98b8076b2b9eb3b0a47de2e81d666fd930fabeac6c015b39d427de80\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"e8b723de3c01f2b62942321c32293ba3498e6c4dbc4e16ef7ea503df107a8c0301375a0d601c5306b062ddba3628ca88\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"f963fd2b67f315843c01d8f91c9c34132fcba3476169a5766d6583c93cb1262673ba3cb6acd3d089e31736fdc1537104\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"ed8aec2b23c22fbefd20a8dc53f2ce38d24c6cca03834ac55d0ee39b75cad5a323b8aab9be7b2a3615b820d64fa3be04\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"496f3bf9c80a4e1ce0525e2854435139486e77cbb0abd280af4389c0535a0cc5f3a6c9be0e6e498348c8224d3f918988\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"29d31f3f888359f1a01011db65a0685b3e9d74a33a346fc7cd178cdb5384372f33a541c3c6526ff3e58ea5c11db9be14\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"de0cb19717d7652a91d8678eed96ccdde9f97a10b134df6e21dc849c20da22b1d300ff5d0b10bd2c2b2be92f39612884\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"5f0645fe0992c70793693d261b3bb9ba32cd3d64cbb70273e2395f85f0d953c40e1529dc40358f8cc1c25ccf8b1b8090\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"82585333306c11090db50c2dc3a81d990ed7965d951e34574c6d4f8bf6ec8eb90cc0ea9ed283606544fb9bef9da66984\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"b7e3288b3b06d3cf7a42cadd23f81e57c23e40ccb0dd31e3fe02685a49070dbe37634b1cfc1567c427cdaf5cd2f42590\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"f4d3a519e90e01812ae51eb25d2cf6acbcfc1a7b0fd2c85816876b49d89649549f20a3c93b5e5f0d34cd0d4b7039dc14\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"d0df50839455dfb62abf044123c4db6fb697ed44e68d843deafb8e549a554489807d8cc379f9ddd77134e45e48c28814\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"d88bed02d72629ace3ca2c7faf7f53be1fc0bb8948df7eabd1f79ec2124b82023fe46569a8f19f476f2c095b46aeea18\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"70a9da95478349f15537174471a202454f62e038b42e2cfe668a2c09c0a947dc157fc5637704e4bd4ced329f9b257c08\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"030d960525fa382549ec9ce33f31018f902368bc60ad74d9c62ee0e870f6cc78514ed61c46d107db4f3324b6a5d6680c\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"6446b0305715cea4f6615e2a685a7489f36e886acd56e9a889e17e3a0f963d163208ee3c8e8f348b2ea12210b0803090\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"330d5bdd896ed7c08f39475881d96fd21baf4a4b81abb2d2c8009e33ffec56398166a2b5e2c814d8cb0c18c792b06e84\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"6bfe56ba0a591b8f1001b201571561e0cf9e682bec8f8a6d8ee2c68ac7daf56bfa40810f1f00855c38d10a0127f46104\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"7f6caea9935bea624504e0b56e530f609752d476bcaeef5bf755a52b95f1193baeeadfad8db27f41546155902e967304\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"a2a26aec4321e583695ad776e4362f751bbacc73596aa95a1e0d1fe728f9a4c4287fc53e32b103d6000be6d4f62aaf0c\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"ea0ad7e0c1548ecf714619900de11947e46018b965dbb23a4d8b6232b9e8bfa6c460e2e383a937e1cee7a8ee47873498\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"8e70e202d35dc53372d24a69571852f8aeab67d7f0cf614272e6d94e42da02313fb9505a12d70f60a8b9b9b6a098cf84\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"c90d5c4253e7ca83fa837c5b065227fe06629d6c1fdb6ab1b68c2afd7454f1bccd24ba4779431ab1fa8a77ddd739d288\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"630a2b02aa7f83481f1c83c28b6a9b177401b457796fd63b1d1c53c81310b8f20174e17683aef21dd8a65d34ec026914\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            },\n            {\n                \"bls-public-key\": \"acc845bf1aa0d93a505154776e11b01321e6f0d2606636af3214d8143400407c64c54b3be0648015a3748d63e313c20c\",\n                \"eposed-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"raw-stake\": \"5230565246570626373615384.615384615384615384\",\n                \"slot-owner\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\"\n            }\n        ],\n        \"max-external-slots\": 640\n    }\n}"}],"_postman_id":"bef93b3f-6763-4121-9c17-f0b0d9e5cc40"},{"name":"hmyv2_getStakingNetworkInfo","event":[{"listen":"test","script":{"id":"42ae5cee-8844-462d-a713-dda11a708363","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"4a10fce0-2aa4-4583-bdcb-81ee0800993b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingNetworkInfo\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>total-supply</code> - <code>String</code> : Total number of pre-mined tokens</p>\n<p><code>circulating-supply</code> - <code>String</code> : Number of tokens available in the network</p>\n<p><code>epoch-last-block</code> - <code>Number</code> : Last block of epoch</p>\n<p><code>total-staking</code> - <code>Number</code> : Total amount staked in Atto</p>\n<p><code>median-raw-stake</code> - <code>String</code> : Effective median stake in Atto</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"04d0445a-ef3d-46c2-bf97-de2415d60696","name":"hmyv2_getStakingNetworkInfo","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingNetworkInfo\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:58:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"202"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"circulating-supply\": \"7206135176.470582800000000000\",\n        \"epoch-last-block\": 5603327,\n        \"median-raw-stake\": \"5809875578600392857142857.142857142857142857\",\n        \"total-staking\": 3.884482879162322586808737252e+27,\n        \"total-supply\": \"12600000000.000000000000000000\"\n    }\n}"}],"_postman_id":"4a10fce0-2aa4-4583-bdcb-81ee0800993b"},{"name":"hmyv2_getSuperCommittees","event":[{"listen":"test","script":{"id":"568c7485-849f-4af6-ad82-494ac0ae2344","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"8eef2fc4-92db-4610-a9cd-f7b75cfbd080","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getSuperCommittees\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<ul>\n<li><code>previous</code> - <code>Object</code> : Previously elected committee<ul>\n<li><code>quorum-deciders</code> - <code>Object</code><ul>\n<li><code>shard-X</code> - <code>Object</code> : Shard of committee<ul>\n<li><code>policy</code> - <code>String</code> : Current election policy</li>\n<li><code>count</code> - <code>Number</code> : Number of BLS keys on shard</li>\n<li><code>external-validator-slot-count</code> - <code>Number</code> : Number of external BLS keys in committee</li>\n<li><code>committee-members</code> - <code>Object</code><ul>\n<li><code>is-harmony-slot</code> - <code>Boolean</code> : If slot is Harmony owned</li>\n<li><code>earning-account</code> - <code>String</code> : Wallet address that rewards are being paid to</li>\n<li><code>bls-public-key</code> - <code>String</code> : BLS public key</li>\n<li><code>voting-power-unnormalized</code> - <code>String</code> : Voting power of key</li>\n<li><code>voting-power-%</code> - <code>String</code> : Normalized voting power of key</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><code>current</code> - <code>Ojbect</code> : Currently elected committee, same format as <code>previous</code> above</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"df3378f4-42f8-4ecd-94d0-6408cacd7b33","name":"hmyv2_getSuperCommittees","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getSuperCommittees\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:59:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"current\": {\n            \"epos-median-stake\": \"5786620563641565630570000.000000000000000000\",\n            \"external-slot-count\": 640,\n            \"quorum-deciders\": {\n                \"shard-0\": {\n                    \"committee-members\": [\n                        {\n                            \"bls-public-key\": \"29d31f3f888359f1a01011db65a0685b3e9d74a33a346fc7cd178cdb5384372f33a541c3c6526ff3e58ea5c11db9be14\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"c90d5c4253e7ca83fa837c5b065227fe06629d6c1fdb6ab1b68c2afd7454f1bccd24ba4779431ab1fa8a77ddd739d288\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"d2173075cda0ae34a76b2407b2b6b7b87f42012b313be63cacb41fd5115f31da7bc3f77c09de396badc48b122be4a216\",\n                            \"earning-account\": \"one10t76e65x7m0pfkhmpwm4wgr7u3xu3t8qndvq5e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a53fab665af692aa971d8f43752c347fefc2a2b5e83d5dcbad8d28ff7e629d7891291712c7721dd0e1d4fd6665b97388\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"49c69f426110466721d9dc4fa2f0b4808c546088ccfecf77e42f1d60719b7932c44e7c18771057f164e03cdb6486d000\",\n                            \"earning-account\": \"one1s3vgvw85j4055tq7ky7say5n80hy2vws8hgvfu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"375347947f93314b12b13ccfdc8b6f95651459e99b42deee0e3855ee94294c4f3bb5be3f87c034e859514e3f3dbca988\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"20d0791f77c7e82988628d05948655b9a264df9a6f1d4ddbda8a22a28622aa97a6fb6f16f46b16dbcba633165b091304\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"dfe6a6381ab0c2f0c37a9acf5952f22c1a74f34c75b21b1354a53d215de7c55abf365184cc51f0e63891f73aa53bdb10\",\n                            \"earning-account\": \"one1mx5mz8fh0v27kvjwyujh4s697z026yexqp9fyu\",\n                            \"effective-stake\": \"5550219253079850000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5550219253079850000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001955304093476632\",\n                            \"voting-power-unnormalized\": \"0.006110325292114474\"\n                        },\n                        {\n                            \"bls-public-key\": \"6cec58349cd971eb0d5c65937b3c0a98c449a601e08cbb2c881577c5475491c17610531c19e660a461d3ea9cb2bc808c\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001885853020917827\",\n                            \"voting-power-unnormalized\": \"0.005893290690368209\"\n                        },\n                        {\n                            \"bls-public-key\": \"bb9ebc1cc84331ddfcd16aee4fc361de910b7a30a931b9c10a14d069ea308e85717595e915a8536ca78931c88f1a2b98\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"voting-power-%\": \"0.001875855469187936\",\n                            \"voting-power-unnormalized\": \"0.005862048341212300\"\n                        },\n                        {\n                            \"bls-public-key\": \"742e7f9c7981dfd9040dec06014c8f0dbbb1f117871ed97b0dd5f497e264aaedf9673c835062e26793ff4c0438978e94\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"voting-power-%\": \"0.001875855469187936\",\n                            \"voting-power-unnormalized\": \"0.005862048341212300\"\n                        },\n                        {\n                            \"bls-public-key\": \"4011d03567248f5ffef3a82b9b5ac94f327bbff25f955123371ce0c1a90cdb469e8ba200e24a5e552a0efadce58c1e89\",\n                            \"earning-account\": \"one1vg5frvtn82thc5vv0rytysdwtl6qcsjpessvst\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d320742fbff3aa1877aadb9316a865edbdecb0fb74fc973272d73ec1deaff131b653c3ab7a2b26753c717347f450a00\",\n                            \"earning-account\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8354225889561732707889521.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"86385311e94f22677c74aaf2c8a7da682301f2e071354e3f88dab16d3177f482b8e691716e77b9dfc6df851d94560e00\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"52dd617310398cb7cb57ca24afe7fcbe41720c9d3b1423688ae74618315ba53b6baea6b76308200b17a134fbea3e350c\",\n                            \"earning-account\": \"one1q83ag25yvxzl753jjunw8rhvz03w2p55dneenm\",\n                            \"effective-stake\": \"6025323805377500000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6025323805377500000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002122680161624117\",\n                            \"voting-power-unnormalized\": \"0.006633375505075365\"\n                        },\n                        {\n                            \"bls-public-key\": \"bbfd933a7c834f1fa71c9437dc78764478a7459f888f63a09fac489b6f5e4ef14cf9a912206abc960c0f9ee3d295da18\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d1f4132b9beab5ad84b9038bcbf0ab9a6d23ca739f1bdaf8d9020fec83b7eaa741b78b66c00a09ce7a7c906bc18310c\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001852764104661027\",\n                            \"voting-power-unnormalized\": \"0.005789887827065708\"\n                        },\n                        {\n                            \"bls-public-key\": \"89ee8d5bc9ff2db7315525264c13c133b91516a78516d9574c347b08d5f8761dad4e1a8d3a8ba58e003e250a8c804490\",\n                            \"earning-account\": \"one1ktud786d0w6ww8gt8crra4mg6zyl7xf7xr47u6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"30e724b5656353eaaadf869676c7068c50d85df2509970ba2ba9e20d6606ca56cc6753cef7a58997a3fd9c0217c3330c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"b8574b3a38b89d69087d63e3ca03418f94123b7358ae142234379e547b2138083cffe942d4ccaac34522825648e49e90\",\n                            \"earning-account\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\",\n                            \"effective-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002232364111643861\",\n                            \"voting-power-unnormalized\": \"0.006976137848887067\"\n                        },\n                        {\n                            \"bls-public-key\": \"11195b7f18410482ef8d8484a7ecabe391fefea6f4b10bfb79e6251af6299f30a62640e6eaf99ac77fba100316908a10\",\n                            \"earning-account\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8354225889561732707889521.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"d01b2602aed09580fc73a56cf9bdbd19e14a7bbcf4fee71154cc5068ca7e2765d7b7750d8409e0b22d060afb89b9ee88\",\n                            \"earning-account\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                            \"effective-stake\": \"6358700076952000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6358700076952000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002240126330640932\",\n                            \"voting-power-unnormalized\": \"0.007000394783252912\"\n                        },\n                        {\n                            \"bls-public-key\": \"ca23704be46ce9c4704681ac9c08ddc644f1858a5c28ce236e1b5d9dee67c1f5a28075b5ef089adeffa8a372c1762007\",\n                            \"earning-account\": \"one1gh043zc95e6mtutwy5a2zhvsxv7lnlklkj42ux\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c7f37568afec98cdd729e6f33b6b095284a96eea59389bf88239f640145c4285e342b6936968b17b9881ebf306546f17\",\n                            \"earning-account\": \"one18jsru7gjz8tex8nux0xe4agffwz2mvq62xjp2x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a2219d19d547f78fa04282f1e3d55d28d7b8f04ea6f347abf9e009d2eb4ba63ba43c8a657a72023dfcd92b3fe36fd612\",\n                            \"earning-account\": \"one19lp6lj7j5efhtv6f4mjwyu3c50ey84ajnfntsa\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b66e47b0a02dce01caac7f1425c7589be29096b790d4587302018fb25c7fbbeade90be7ad3fb0d714b5dd0bac49ebe14\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"voting-power-%\": \"0.002038586650285188\",\n                            \"voting-power-unnormalized\": \"0.006370583282141211\"\n                        },\n                        {\n                            \"bls-public-key\": \"ab9098928a35c724dc2b11be0eacb6bc86a4613b069ff6396415f6a10e6265b710394d9077db7070945d45cec7fac484\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"a330d62e144606695d5fe66385a0120cecb3e5ab71cc33c0e1e4a034cc37e1156f12a34f3c91158638618589804ccc80\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"5ecf182ef0cfe449470d900dbe4ce312d534c882765e639c59525f2710d9f96a04abd871e4f0afadc1bd4b07a54ea106\",\n                            \"earning-account\": \"one1nn2c86kwaq4nk8lda50fnepepqr9y73kd9w2z3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7e5f9270132f34b5c9dc6c79644bf79a790a42baa1bebe76b6477aac912a9dc1f0251f57c2a06306ef7fd7d7684d9483\",\n                            \"earning-account\": \"one13ar9c7czmg5j26fcpwqckj5kx5kyk02j0nqvjr\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"458e57f12ea9c1a92c237baec06a0d0335ad458d894f8d6fed29a1fb54948327096e85d196c240ef4178f2d2dd6cee89\",\n                            \"earning-account\": \"one1lml39n0qemt2gg7r6kwl0gerue0q7sr4u6rqjq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f82e45094a111e9c85321e6779598b122bab7584f584be1c667ae5a186bc3eb14784ffdf3b78cdbb03b3c3dc788dea04\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"dbe838331c502c24366bfae521c30cef2c118c34f8a53b383c9c80d57acfc2ceb1fc979d046063bb1929d7d1d0803a84\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001885853020917827\",\n                            \"voting-power-unnormalized\": \"0.005893290690368209\"\n                        },\n                        {\n                            \"bls-public-key\": \"43ad254f6cbec380f5f99df0369f96fb6ba7c7518d89241939faf6d9d69c5490afeef05b421fffbf926b479390fa0b90\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001852764104661027\",\n                            \"voting-power-unnormalized\": \"0.005789887827065708\"\n                        },\n                        {\n                            \"bls-public-key\": \"5ae80464819a6062b2c93f2884dd3400aab970a0e70dc58bac7d5b394971c338598e0ee5aa8812adcb0b40898a08a590\",\n                            \"earning-account\": \"one1ssctny3j3hs92wnetqgkrncwfatq6er6rhede9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e4060b4bf6fc2bac221c0ae3de202bbaaf18a66c1b840383096151815b6f6dde0ac33b9233191e41ab1f425471f0b394\",\n                            \"earning-account\": \"one1gum0zqu2zstptk7fdl8v2wsdrfdtl054qx8jar\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0bb30016dcbd8ef90e657c93f9babb26112f6554c960e7e9de7638788b1e50746e41261d8f3fb133f2278dd1f507b00c\",\n                            \"earning-account\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\",\n                            \"effective-stake\": \"5751194906753550649000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5751194906753550649000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002026106434861482\",\n                            \"voting-power-unnormalized\": \"0.006331582608942131\"\n                        },\n                        {\n                            \"bls-public-key\": \"5e30eacccec0a503b8df9ffe97df69e82c2137f83ada86e62e11cc79a931ea99d64565799b83c498bf3c775c990fb40c\",\n                            \"earning-account\": \"one15mf5amj7nc8c9zpp0e2wr48em0r2vm02k9m8h2\",\n                            \"effective-stake\": \"5425959730136522978700000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5425959730136522978700000.000000000000000000\",\n                            \"voting-power-%\": \"0.001911528317640440\",\n                            \"voting-power-unnormalized\": \"0.005973525992626374\"\n                        },\n                        {\n                            \"bls-public-key\": \"caf70afcb26d571d355140182cb8e22215abd27f6e833340c88c080eb8bc2e8d61fbc95b46cc99cfdb64825d1ab21595\",\n                            \"earning-account\": \"one17fth44p5a89fyck8sxxz767sqzt35frxj9f0lq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0995dce1f64701c2502fc8b627df9e57d10ca49875022b8a7a7b447c9672be04a7771fc97eb8190df8002536f93ca78e\",\n                            \"earning-account\": \"one10urht2e6gfeq4fskmnwrlxnx4vqhaxzz3d00em\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9683cf11fea4c31ca1f1d295d8526a60405b555785ba152f740ee9d8213fe55faf9a2d75f68b7972cce87a6180896e98\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"935e4e9c467c60646c7acf7a30156b410bdd1aec52403344e964ae33c35e635aa9c1976aa7f1606437bcd2853568db90\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001910807677701739\",\n                            \"voting-power-unnormalized\": \"0.005971273992817934\"\n                        },\n                        {\n                            \"bls-public-key\": \"0110a0a1e55cfbe6928e1997f26a0cc8264c61e43a76c66ded32a0ca40b610656b20d4677175f80df055669a50390c03\",\n                            \"earning-account\": \"one15jv9h2rwtczgmre923nde50jfz0sjs8c9gnwpd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b42b39da95826568dbaaec0fc7cf0d6a8e5b270ef2091aa15f9efef8bed4f510bba51ba11195da855d44b3bd25803d85\",\n                            \"earning-account\": \"one1wjqtk2krrlsqxcr2jgau7s58vuf2fepdu3cwnu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"818fa92a1fb6d63134d96f73231bd39330c5fecc5d8f5c124f508a4d2a9d7c99ba69c6601218b6647fbcd06e95b84500\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002240878682414476\",\n                            \"voting-power-unnormalized\": \"0.007002745882545238\"\n                        },\n                        {\n                            \"bls-public-key\": \"adcfb3af32463919cb1a8d4cd8fde30d7d47442c771a978102f553ec90d84637d26a8b9a201c738dfa0353ebcccfaf18\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"4b4c85ced3f516d101022dee1c728823f900356d50dddbc2b47e4d8c3d7f91c501748ecb9c494178703b262f76fba790\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001889488368484368\",\n                            \"voting-power-unnormalized\": \"0.005904651151513649\"\n                        },\n                        {\n                            \"bls-public-key\": \"67449764648f0ba4ba0f7d689278fb36a3f81d2c65432a9372ca75957aec3a456b35c89315fc9dff46e31cf257beac98\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"ad009861e1389ed152b8a5ca48f9a095f4d29701ada0ef126f6bb6ae01995e38b0c527fa1c479e77bb9fb61171dd060e\",\n                            \"earning-account\": \"one1x0sm3y8e2cgql05spqc2y20xwgx9m9trpfn2pq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9a7f7d02338bbc8ae41f1957d349a30301cca90ba4886f4cb23b0a71e8b4ee9f13a5ea7081c6a5bc6617278e3a650213\",\n                            \"earning-account\": \"one1yu2wdsl7x5k58zecsdh5p0ucapfe74mrydwks9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3659fdd8668677830bf2ff054c0e58ff46fc174c19112cc7a5c761b9a4ef8c031dab18793ae0cc03ca7a6eeab1b2d60c\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"f963fd2b67f315843c01d8f91c9c34132fcba3476169a5766d6583c93cb1262673ba3cb6acd3d089e31736fdc1537104\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"927d06aa9bc1334ef5c2cd08b6138574509ff0e62aa0bc5b207119e75aaec13e1e81df367a648c74cd15f40e63634485\",\n                            \"earning-account\": \"one1xgk5rmygeuh5p4m2uhp048dfucr7avf7tzj6w4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"38d7ecfd350b40b51408392a7d589a6aec2315053c94226fe8aafbfcf9575497b55e3a90e3e1639c09fcf4db34c7d503\",\n                            \"earning-account\": \"one1curhrds59j26ldue4x8sx3glf6dxnfkk3lqa53\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4046263a8404c6c4099b81861126346b890437c6eee2c943399a3399cbc71a455ddd3583b2cbd1f184bd909fc9777418\",\n                            \"earning-account\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                            \"effective-stake\": \"6358700076952000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6358700076952000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002240126330640932\",\n                            \"voting-power-unnormalized\": \"0.007000394783252912\"\n                        },\n                        {\n                            \"bls-public-key\": \"f9d624113a56ef8ea08119a0162fa81b6e644b98af6c1029c98ca72e1fd79ca4c36dd1a2b4ea2ac916d08a3740c25c19\",\n                            \"earning-account\": \"one145zhxlug79wjwlf9wrx5vh90u2t7nfu562rdlh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9792041e8264bfadf82ac62dbd7ff22c0681fb4dae9a111dd528aacb0bcae4ac8bd16afa2874f86d4beb9cfea69bb30e\",\n                            \"earning-account\": \"one1xlnx308wrvfjxxs4h8v894vwz35tpcfyex63um\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c9cb0f47b232c26422435f32132b665d8d7489d7fef92d4d37c4072ca5dd3106a0f688afc8443de30c0bca87477fe00c\",\n                            \"earning-account\": \"one16f3f9y4sqtrk3eq7gnagr4ac8p25rf08u0pxxp\",\n                            \"effective-stake\": \"6382123000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6382123000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002248378065433486\",\n                            \"voting-power-unnormalized\": \"0.007026181454479644\"\n                        },\n                        {\n                            \"bls-public-key\": \"14c883aeebae0a438747353dd48cb5a9b6236052e0da04f364cb4f2ae499c2a8a9b6f0ff3af11225306890a7c2a87610\",\n                            \"earning-account\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\",\n                            \"effective-stake\": \"5751194906753550649000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5751194906753550649000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002026106434861482\",\n                            \"voting-power-unnormalized\": \"0.006331582608942131\"\n                        },\n                        {\n                            \"bls-public-key\": \"58e71a7b7de2ff603b62c8aa36686e89626404b6388279929a3f96a6317964df9a8cdada09421a38cc859bc428009910\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"64bf95a58cecb76b90d85f0729b3bb411ae56ba11753da991579eca8d3f72bd6749592b567637d53035c3cfc9a57ea00\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001910807677701739\",\n                            \"voting-power-unnormalized\": \"0.005971273992817934\"\n                        },\n                        {\n                            \"bls-public-key\": \"e8b723de3c01f2b62942321c32293ba3498e6c4dbc4e16ef7ea503df107a8c0301375a0d601c5306b062ddba3628ca88\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"030d960525fa382549ec9ce33f31018f902368bc60ad74d9c62ee0e870f6cc78514ed61c46d107db4f3324b6a5d6680c\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"a52247e43b6abebf86b8c8697e7c6fd8994ca343e4311c0f6acf6c8a1738a96ab2c09d86edc3729a5e911149347d5689\",\n                            \"earning-account\": \"one1gugtmrxusqk2j7xce3sltnc0sgegnnfuv6hq80\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d26eb416ab1003578cb8fc6cc73dd0fe6362aba6b255658f3b9e9fd5c7b3bdfd02692bb0aed6c2b7d932176145717888\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c7a28e86f911493cafb4fb7325a08f763d5cd4cdd627971d4e09e7ef2471634b21e32ccb57b13ab8cdf68c78287c314\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"440bb29c6c3669419befd3de2b53c69fb51ae916b9b023384b557ac5163ae8edbceb0b73e79be904ded2de879f609d80\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"voting-power-%\": \"0.001875855469187936\",\n                            \"voting-power-unnormalized\": \"0.005862048341212300\"\n                        },\n                        {\n                            \"bls-public-key\": \"092b8f3238fe33bf9a2bca8cd3badae60e138fefdf87ac5061479be2730ee3fc7970e0ab25eba38e693004972fd9cc0c\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002062987917684844\",\n                            \"voting-power-unnormalized\": \"0.006446837242765139\"\n                        },\n                        {\n                            \"bls-public-key\": \"25f199bef86ed7855f2a980925bc35d7209ebdaa686fed791b9494403268a22b8daea8cf84f7071315840e66964baf0c\",\n                            \"earning-account\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                            \"effective-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002016147192296099\",\n                            \"voting-power-unnormalized\": \"0.006300459975925308\"\n                        },\n                        {\n                            \"bls-public-key\": \"7c07906423d06c8b4f3d30a1b139e29880cc7b1a39e150919308d8b321985740fc0a2af4b85cb17685442241cad34d88\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"61756a1a3f55ac33cf86a884ddc0795a91ecb05ee4486b89da20c7c0ecd8977a7225a789b91e02d52ebed33ddbc31f94\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001852764104661027\",\n                            \"voting-power-unnormalized\": \"0.005789887827065708\"\n                        },\n                        {\n                            \"bls-public-key\": \"8c48db351942443c6b91e03c27fe612d34c6cb3d1fd108428f04df762a8acab8d14a6d0456543be4e4dd56d49ddf6e80\",\n                            \"earning-account\": \"one1khln4errq87hnpjs9zqxmll9slwxwywtxy0y3d\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bdbfe3ebd8ce4146a62353f7554e404c8a61c5ff5ce0f90a93406e878302f5f8a975ff51d5cfd59d27e1fae7d9e9ff80\",\n                            \"earning-account\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                            \"effective-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002312781602882852\",\n                            \"voting-power-unnormalized\": \"0.007227442509008913\"\n                        },\n                        {\n                            \"bls-public-key\": \"1737cd597cd9aba25154b71ea5281aaec3c4f89920548a1af8eaff6e4f2cc1e60613bc3666ab5befed3a90b5c5ca5d10\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"6bfaabe3a12ebb4c8991f1221a995fb0a2756b2d48ddfdfd2fc3df42e554187d473634cee58159dd81ecc24989b5d38b\",\n                            \"earning-account\": \"one1m4909gjt2g4fsl2jw95kxmjmja2ka4cc6d4sgs\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"18254f06c00b071310ce55ba3a340485bbb61ea7b4765441e43d0c13eb617954417fef98c8c03937fad8dd9c33ef9108\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002062987917684844\",\n                            \"voting-power-unnormalized\": \"0.006446837242765139\"\n                        },\n                        {\n                            \"bls-public-key\": \"943dc0be8753c7721dd718b749eef9d84ddfaa1e894e3d56ba78a5b496acaa40edc6c3cad7819e5f06ced9ed554c7200\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002062987917684844\",\n                            \"voting-power-unnormalized\": \"0.006446837242765139\"\n                        },\n                        {\n                            \"bls-public-key\": \"1bdbe548a54e3aeb6598f5618bba513efab205a98f3678c471d956538c74cc39a3070a95edd032671bf1332cd59a5990\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"voting-power-%\": \"0.002038586650285188\",\n                            \"voting-power-unnormalized\": \"0.006370583282141211\"\n                        },\n                        {\n                            \"bls-public-key\": \"382cb200d415c25b527e6fe2772c093de9af6fdecf596aa03a35026f2766f550b5a16be316aee427341214f1b7d3b00c\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"385cd756a60348191576404ef8e60817225160c5806ed54c9997286b55e6526dc304c6f0f92084e31ecff8cde36b7d10\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"ddf5bfb62d7d7065634220828ffbbc4340a121c477e5a0ce558200f5216279be8b1788d78b427ea1a819fe37ad92d388\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"7a0af4d7e6f2a82f1afff03bcf4b59457b3db0c1a582d42e4c4d15a2091ff175eda5e194e4142c856e28abc5cb2dfa90\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001885853020917827\",\n                            \"voting-power-unnormalized\": \"0.005893290690368209\"\n                        },\n                        {\n                            \"bls-public-key\": \"0383b668cf36b3887e48004734ebf989d5547b5c153e8eae1ed568a4fab1972e4bac08e4985e15bd582c9f6d28941c0b\",\n                            \"earning-account\": \"one1mvlwv0wjp9u6yv2v0ema3qurlnxkp5ftekegm8\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9b384ec4abe732cc2855faa80e02e47159b35ad23819631bb0e5562a51f4ddf45da81b2a09e0782b3bd0e94a6316a817\",\n                            \"earning-account\": \"one168rjtx20cyyqjygt248gxpcqqcw7a08ga93kvh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"630a2b02aa7f83481f1c83c28b6a9b177401b457796fd63b1d1c53c81310b8f20174e17683aef21dd8a65d34ec026914\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503913\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"dbee77bce2f00706d226cbc89f085c7bee45e0b11cfce8c5654636ee8c1a5a635b27c0c010b7ddde266ce44ea1435b8d\",\n                            \"earning-account\": \"one147x8wxytztf80avpy4s4f99t5u3ksfr7h02j4x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"77b4edba0422fd50576782828227cafaca6d0a7d4a333ca58b2f148142b682aee7cb16547d4f8033644288580362b188\",\n                            \"earning-account\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\",\n                            \"effective-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002232364111643861\",\n                            \"voting-power-unnormalized\": \"0.006976137848887067\"\n                        },\n                        {\n                            \"bls-public-key\": \"fe0593f9a38821750623a189db19294eaa288b86efa46b0fc2c9e100174a51717e3695fc143dbba963800acd9dfa4010\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001885853020917827\",\n                            \"voting-power-unnormalized\": \"0.005893290690368209\"\n                        },\n                        {\n                            \"bls-public-key\": \"d0df50839455dfb62abf044123c4db6fb697ed44e68d843deafb8e549a554489807d8cc379f9ddd77134e45e48c28814\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"2a7416c9b57cb1e34978ef473bf9bc2acaab509fd9cc542056aa60fe0780a69cbd49f5a91129fd6c4f98ae7312495499\",\n                            \"earning-account\": \"one12q6kh768sn3m2dwf5vhn7nfuxstp6xvtf35m4r\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a1d2c2c919682772190ed2d0d5fd592538964ec8d5ac066c03177b2a840e1ff5c81418473169fdd9017591209979df15\",\n                            \"earning-account\": \"one198as6uj8p4yucttkkhzrtpu9z8nfwqrgh7d3g6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f296c15a7015503a346f542a9da87eec2fe5c06036c12fca7b182c2183484848d4f8b1edf0c5d71be59ce52dda9fe190\",\n                            \"earning-account\": \"one1g4g72jk5cumlmnkzzslzhlv9vwp85clx2mmzau\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ce72a574a4ad4b116314c82162250211476066e1403f65f83baac852c378650d4796fb34c39a1012a632ff5f7f508b90\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001852764104661027\",\n                            \"voting-power-unnormalized\": \"0.005789887827065708\"\n                        },\n                        {\n                            \"bls-public-key\": \"4a3cb3bf33c5133e5fcf801a52db000b62ef82fefa98cd90f8d12eb807dfcdc87d12a5c28bd6b34a6a228863ed05b190\",\n                            \"earning-account\": \"one1t0y5jmv84cu4eqeev2cczpwr63flrz22ptmnf8\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0d5b80dc2ce0212ff0a843b007e7e9a8845ea0ca6702a87a1492e63c99088ef60f08d95f4290cae6ba31e08aee355684\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.002111424984824620\",\n                            \"voting-power-unnormalized\": \"0.006598203077576936\"\n                        },\n                        {\n                            \"bls-public-key\": \"225065e248691c59e004808b45733e3a84b53b977580e193057c337dafc43bbf39963bb37b9564ea39d72361c78fbf0b\",\n                            \"earning-account\": \"one1zsk49ypjc540vy2663gpn76d8z0mg577d8x5kw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"dd668b34d02c53c8db16a14749365edeff51ea6edd91e4bdaae9e738a8dbf5ab9f6d226852a814df1576b311a376f198\",\n                            \"earning-account\": \"one15wh83u4p54dfrjmmk79t4e2dgn0fw6c54ml0vz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7be5a3cccaf391b49424f48a538f0375c403ff85995f62d74c7c40149a57954227545db8f4f07ccd9584348d9e232194\",\n                            \"earning-account\": \"one1mx5mz8fh0v27kvjwyujh4s697z026yexqp9fyu\",\n                            \"effective-stake\": \"5550219253079850000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5550219253079850000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001955304093476632\",\n                            \"voting-power-unnormalized\": \"0.006110325292114474\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f3e059b9ccea9b9f5f223a04fb0f28c890039d20bc016173e4f8c60af00e0e0d547893b9ecc2e22a6ee204e8dfeea83\",\n                            \"earning-account\": \"one156pcuu77dxef29cc6nu5wsjndmk9cw4ta7crpx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"356b0732524bdd3a2ac6f2a09aa29da9a71b73167f42c64e5ba2b3322d82f79ade31b56efe61782f25c354c1dec28f88\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"57ca05a5cd653662f4004dd409a057831a79a4d7ee0b03a402c92db90ce687f8ec6caee0c3c03778e1deabb623c18f10\",\n                            \"earning-account\": \"one1w70ts3l3ehdws08sdx7n639lxp4fgg4ztxxp4s\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"679f3054719461eb4808fbc74e9129d557b3279c44b22aa52983bca178a99303f1e54aa9cdb8d2a78f86ec60586d8594\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"1dfd33e1ba1f48640d64bd0a878b21840758f44c6d5845d9e0e804997d3207aa2c40d04b2eee3dd03cdd7a6453395508\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001852764104661027\",\n                            \"voting-power-unnormalized\": \"0.005789887827065708\"\n                        },\n                        {\n                            \"bls-public-key\": \"a7d5341af7a9cb69bcc366a41a98d0eeb3e9bc68e2a73d9e3799825738bdfd6b183d0bbbdf4448d6bf064b6e0e16f218\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001852764104661027\",\n                            \"voting-power-unnormalized\": \"0.005789887827065708\"\n                        },\n                        {\n                            \"bls-public-key\": \"70a9da95478349f15537174471a202454f62e038b42e2cfe668a2c09c0a947dc157fc5637704e4bd4ced329f9b257c08\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"22721801c98e71190bc64eddc04b2d422f5f0fff4b939654e00e4063754d2ef0921627fd6f96f1db112724e139c05318\",\n                            \"earning-account\": \"one1uzsl45tzdn652xkqdc60w42hehrc0nrd7lj7zu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3cabd9bc1ac865ce5b3655a1f15e4657a99b56cb29984d00e21142b9b8dfc69d96b8bec5071272966989d711a8e32617\",\n                            \"earning-account\": \"one1t03xpg9f6tgguwke23e56k3chd28d2d37ttxqw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"623718098929bb558b9a46ee2aa32402f9c8e5ac959ab7a0a5241ca69d704f50fad168efe6f363fe1a19ff7c33405299\",\n                            \"earning-account\": \"one1ycdxxqd4x5wgu3wjc26edsjkc3cztm99jpnfry\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"738cb0203a6c01c64031e22a76b117061b85f499faa446e0b7f0bf81804b61302626729afa0b6b2073dd77c044b49093\",\n                            \"earning-account\": \"one13j7h7mmlmlypxa2aefuuf5xrw0vjn5ahp0zfr0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c83de3a015e1727a3683b487ae46ec6ed7137d59c8d001f493f098b4402e39833e794a2fd7f482ed90a7c0ad274ec50c\",\n                            \"earning-account\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                            \"effective-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002312781602882852\",\n                            \"voting-power-unnormalized\": \"0.007227442509008913\"\n                        },\n                        {\n                            \"bls-public-key\": \"aeab90cb890d1419bd6d215e65f473b73efae07a9686bec906e300e223abeaffb7da06a6fb42abf3dee9e828ebbfec12\",\n                            \"earning-account\": \"one16dllsrjr04uhzsuw7raaq4cszpkt3g997yev2s\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"514c26eb13b9ac9902dcd6516cb086d366ba6cc7415d79a227eab1c7517791ffcc53d0f8ecbd1c6722b18c17f9f3a590\",\n                            \"earning-account\": \"one1uwkgzutlp76qhvuhtlvhpd77gyuxlm0w3nj0fx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2ca7cb0362db342d82d51fed78ba24c88fd061ddccc929923cb7443ff99ddfaf5136e14adf2068cc3d1e1653d11f5b88\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001889488368484368\",\n                            \"voting-power-unnormalized\": \"0.005904651151513649\"\n                        },\n                        {\n                            \"bls-public-key\": \"304254dd9e216f9014bdb75e7acdf17760b7b3a70bf2e7da751728f8ca66f3bad26c971c8775803d0d2a80bd84402e94\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"e90c79600e596ff981d872d812b0644fd928eb556f369476db86b02be3143990d734e69aa8e0c6b6cf29003ab697bc19\",\n                            \"earning-account\": \"one1tvtrynm5rp8gsxf69hhy7mx0uljlzguxwxgtjy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0742d2fb9e19f3956255c4b866fe2c80b37a32a9c08eab25db88ac58c7f883e1a05faa7df005b5b102d361fad272940c\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935043352438606\",\n                            \"voting-power-unnormalized\": \"0.006047010476370645\"\n                        },\n                        {\n                            \"bls-public-key\": \"077edde9fa10c8c1663bb50ac4d28ceb2d58283c759341963683ba6d43a73fbc31cc9145107abf0ef82930fae6440994\",\n                            \"earning-account\": \"one14jntfqa47hatag382uaxkp2zddhwwgwf3wl33x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"cedb69f6dde95d8464fc81b053eeb9f377b47458c83d0a5cd837b978d5e1a1fc2a1ac4970c3606c576cd1074aef12112\",\n                            \"earning-account\": \"one1445u8kcryuz98d0husyrn0dnudfs77fuzdtqfm\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d347b60a226fb55e3f3624b5a40d08b5958f8a44c3c89274105108c2afb3da9156d4bde1ec16ea33b409a980d4efd293\",\n                            \"earning-account\": \"one1pey5w5wjv03acwwj0rwhft7wr6dulesjkrl4ah\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"289eb7f7c6b601dc83534734f500365f4fcf2189a5813b806b9ef6a777183c697d5fb22c07a26d19b63f1e10fa88e50c\",\n                            \"earning-account\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                            \"effective-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002016147192296099\",\n                            \"voting-power-unnormalized\": \"0.006300459975925308\"\n                        },\n                        {\n                            \"bls-public-key\": \"c27e8e691c26104d809022a33226fc9df0ead19f35d030054dfb847f06df9277a44b60d64bb8616ce2b911b76a7e2498\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"e14c69d87d586a3285de3c9c7c345580049d2652080210878cce1535076183fd454ae2a3e85461a513db6b7c1d471c04\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"voting-power-%\": \"0.001875855469187936\",\n                            \"voting-power-unnormalized\": \"0.005862048341212300\"\n                        },\n                        {\n                            \"bls-public-key\": \"a27eeb7976954d052078c8a3512449b61886418677131bde005441dd4738c90a783474bffd91023631a4a62286563b96\",\n                            \"earning-account\": \"one13fjjymcva76vzn6e4ykde77wt5j4jyr60u778j\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"11c3606099680455db309cfa732e8e362a139259e1b89418662577a4d8a0851cdec0488acd8d8eee6adbed4e4cd68d88\",\n                            \"earning-account\": \"one1nsu6n9sv7ztgcrred3lnml7qxmr3la94ymsrw0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"007282a93589fa2522e3e9c659ebd1629ef6fe98921d888414818fe88c3043aaf1619a8960edcdca48928c8fce51ff88\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"bbc239e80ce221bd886af2aa739df9ae09c929ae805a21c3f3aa85d32a4ddec38ab6816cb90d4ca22de35ee10ccebf04\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002240878682414476\",\n                            \"voting-power-unnormalized\": \"0.007002745882545238\"\n                        },\n                        {\n                            \"bls-public-key\": \"f88e94c51aeb58cd7f23c9c3b406cf086daa725e30f2c39bf8fe5bd2251dda7c5834bd2da8f6ca2c4f8dc706869b9114\",\n                            \"earning-account\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                            \"effective-stake\": \"6358700076952000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6358700076952000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002240126330640932\",\n                            \"voting-power-unnormalized\": \"0.007000394783252912\"\n                        },\n                        {\n                            \"bls-public-key\": \"102fa26fee93a03582ff5dfd459d73b1ef155918b17681b2d9882ec6a541addf0dca42ab6f7b5aa298498a59befe7990\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935043352438606\",\n                            \"voting-power-unnormalized\": \"0.006047010476370645\"\n                        },\n                        {\n                            \"bls-public-key\": \"a9a83a4842dcaa3133f34e333764d3e33062a5669f75e9faac6e734360781984a3a99367f995dfda3faafb648236a991\",\n                            \"earning-account\": \"one1uc3xg782sslsrkyffvaakmy8dw0evl0zzq06ts\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f770f6870b1bf4da303e792009741d6c930ddb70ca2783f1bef640cffeb54fce1b359937943c076ae09b3fda5c35d198\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"0ba26722c41987f55796edc8baf049f63e48e2f044675f70adcde17a94247bd2333ecbce6c1b9cba6ff770dacbf33500\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"01907faf33066dfd001fa0ccccf0dbf5bac13c45a06677fd476e4a5e88b0bfe68a36bef81b9439092762f6dd053fbc10\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935043352438606\",\n                            \"voting-power-unnormalized\": \"0.006047010476370645\"\n                        },\n                        {\n                            \"bls-public-key\": \"4c65f90e6354e10d190f213a8665c77d97f52b3d5223047f5ce1d8e8dd783c32d3d2e70a307661ba32241cae513d6994\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001889488368484368\",\n                            \"voting-power-unnormalized\": \"0.005904651151513649\"\n                        },\n                        {\n                            \"bls-public-key\": \"fcd1036b8c7d59006ffcf8e1ecd3faf567ddb25155fa505eb2082ca886c5fe0f8b62556a78438b526777ed9692ccfb0d\",\n                            \"earning-account\": \"one18pymc7sn6e3jk07xx3gagrfgmkcmgtuxa428s6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"36dbe94650fcaa1814f0764c5fdc2810defade312a243424ff0053dd6a43cbf9b7907fb267d8848169f1351e8ec4318c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"d88bed02d72629ace3ca2c7faf7f53be1fc0bb8948df7eabd1f79ec2124b82023fe46569a8f19f476f2c095b46aeea18\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"f82ed7e0ba50226342e714de452dbf9404702d670ed08b43d022acf00ad3dee18e5ff8961bafe4692de5e220d7694704\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"a52bbb39d1fcac96f538ce3bbd75537134720ebb98b8076b2b9eb3b0a47de2e81d666fd930fabeac6c015b39d427de80\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"a79f863b7e9a77b599c82756e4a635661223de7166ecca7d2549c9c5457b6e2c3e4ca3247de1259cf4fa920646bb980c\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"57320cc0aaeb7090f8fcfd4d4670264c086e541591378a7b2efc58c1ceb43e7f22630401b3ae53d15e96561f50d2b68c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001889488368484368\",\n                            \"voting-power-unnormalized\": \"0.005904651151513649\"\n                        },\n                        {\n                            \"bls-public-key\": \"4eeec0a689bcef30dc3916f20400d94ade5fd5cb10abf5a866301d430cad912e26e3621edad95cec194fb43bbea4d610\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"voting-power-%\": \"0.001875855469187936\",\n                            \"voting-power-unnormalized\": \"0.005862048341212300\"\n                        },\n                        {\n                            \"bls-public-key\": \"c84875782fd5dd9bc92a57b7d516992e2c3a6408b3f6dc8c3f5c188ab7dd1878007f18b748cb51894b38ba13f3404090\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"voting-power-%\": \"0.001875855469187936\",\n                            \"voting-power-unnormalized\": \"0.005862048341212300\"\n                        },\n                        {\n                            \"bls-public-key\": \"3c9ff839972f68a9179d90211d086252ac66f04d975934a6e91e45f805ce746b8b59156bd79cfac414c9a77017c11680\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001852764104661027\",\n                            \"voting-power-unnormalized\": \"0.005789887827065708\"\n                        },\n                        {\n                            \"bls-public-key\": \"a9c788233dda857bd19233cd4b547bcafc4211e6cc6cfe43ef2ccd0ac576ae944683b27a003fa95d246b71579164e00c\",\n                            \"earning-account\": \"one1su2vsv854y639m0qlst580ctx7sm4zwsy60xq7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c82ccb9168b017166e838d00b1f6e3f6fd2a2f406b2b490e413f47dcd0bff4c2936af025f29222497b751311c999c04\",\n                            \"earning-account\": \"one1ttf4e0tvnuqymuyuzy7clu7gy6za37y326m299\",\n                            \"effective-stake\": \"5811088922491100000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5811088922491100000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002047206684924828\",\n                            \"voting-power-unnormalized\": \"0.006397520890390089\"\n                        },\n                        {\n                            \"bls-public-key\": \"330d5bdd896ed7c08f39475881d96fd21baf4a4b81abb2d2c8009e33ffec56398166a2b5e2c814d8cb0c18c792b06e84\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"7f6caea9935bea624504e0b56e530f609752d476bcaeef5bf755a52b95f1193baeeadfad8db27f41546155902e967304\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"dd505fe02982a929949a5bca34eb9f98ea7201f473a71f189582161b89866880611a37bd27e0f66d5be4b4cfb7f48790\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"1e62c58154766ed812630c9a1db3f00f258bf42285d954bf049d36ba75c7c4ce58dcfbd0bfe50e1455d8f60313fbbb94\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"aa4ee9698743ec6114251796861422de7dcd182ccebf6aafe65e9bda48577330061e2880851437f4d054b57fcb74ca10\",\n                            \"earning-account\": \"one10jg0a2wv5fk9042us876xt57ej0lqm6xvm5vxu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6f05a4b70df21c5ab7d50ae639dfa879d50b26f01cb7ac47f098ca4e81df2767ff63feacaaafc3d0eb61b99f5782d384\",\n                            \"earning-account\": \"one13n974xtdzxu4uu2ugz8e2ml5p8t94d8x3tep3q\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7858003787207954545000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d179bf6082a2436540c5fe1d84cdd2868377af042ee18e17876d5f8e22ad1aeb8ef4480271d5b29d15bc8c9228f7611\",\n                            \"earning-account\": \"one1qt8z2h76unuz4jh60hupddlct8pes30hfclm4h\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1aeb918501c4657b175d90527b67edd8844bab6977e9630d1fa73b373a1ed88a1c44036ccfbb83792673554ff14da599\",\n                            \"earning-account\": \"one19hnhhs2dkxl0v0gr0h755y6f9l86emt0z3zuj7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e611da8fa8887d160ce8d76b0d50d45f18b89e6652b2cbcddf8d2bcd48c1758654c5c8cb907138e6a3fc51847d3c6918\",\n                            \"earning-account\": \"one1hhf55rl0jzjyshlw4ftlm25ylxhsc5rrq7rznd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"479b35fc9b04c2027d9818fc42133eab872ad89c1e4d434523e3ee06f434601e3c52de77a0fa1989bb0ff4e0fb9a0c19\",\n                            \"earning-account\": \"one12su07r3rk8hgg8e36gds92z5370t8yhjyxpp0h\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"87201cd5b68b8a11bab717ee57c6ba8b586be721517d2b9a48cd5690065dbafc71b10dc85bdf39bf762394ef8add9f00\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"voting-power-%\": \"0.002038586650285188\",\n                            \"voting-power-unnormalized\": \"0.006370583282141211\"\n                        },\n                        {\n                            \"bls-public-key\": \"070d3e9aed0dd70d8a28d3974f39cc535ec2957f0ce2ab61eccfde53dd5777648ab8f666f582319e6ba3e43c97ca568c\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"5f0645fe0992c70793693d261b3bb9ba32cd3d64cbb70273e2395f85f0d953c40e1529dc40358f8cc1c25ccf8b1b8090\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"6350958f98fad3d2aa3d8655d11f60acd67a8f9574f580b5f09bd602c644365c548484a0d2a06714124b9f6e01dcd794\",\n                            \"earning-account\": \"one1u7jzpkd3sr40kzw62vjval85dkzeyn3g2shz83\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"11a25753e8d36f97580e6e15790ea47e22ad84a8b638e880e42bca765d9587cacf3ac1fedb3cef6f4087b071bfc1278d\",\n                            \"earning-account\": \"one1cfq2v4kysk3vdrjtjju2q7d2k8qa204cqcsqsq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"395c6b530de2aa32bd0e826dab68ae37a774d9f6d28334d3ac322d61d2a471aadf2a50c81adbdb8a110d0e6850621910\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002062987917684844\",\n                            \"voting-power-unnormalized\": \"0.006446837242765139\"\n                        },\n                        {\n                            \"bls-public-key\": \"16e3d373df7e5c01c2dd21be40cc04e5036b259cc3f28844659501d06e46b1f223891c7eb1f6c2eb41eec8eb606dd604\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001852764104661027\",\n                            \"voting-power-unnormalized\": \"0.005789887827065708\"\n                        },\n                        {\n                            \"bls-public-key\": \"ea781dff5e22998622b7b19c189b8bbf4050384238853fe3b8f2f0a80401364589b5e67ff54f05878fff42d7b48aeb00\",\n                            \"earning-account\": \"one1uevxtwdqehq7k2v5jdm6mz4m492f3qpja4e36q\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"066b6a59ac20487f17a3e9d459b723e5241ddc259e689f177e31d1a81cb38ab75520130c875560ba648457e4a03d4a94\",\n                            \"earning-account\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                            \"effective-stake\": \"6358700076952000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6358700076952000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002240126330640932\",\n                            \"voting-power-unnormalized\": \"0.007000394783252912\"\n                        },\n                        {\n                            \"bls-public-key\": \"27172b5ac7b5382ab6b3ba3fa39f6904c6b65a72fc4a640b1caf21237e10b545db003ff9a249c8bf135caabfb4a48c90\",\n                            \"earning-account\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\",\n                            \"effective-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002232364111643861\",\n                            \"voting-power-unnormalized\": \"0.006976137848887067\"\n                        },\n                        {\n                            \"bls-public-key\": \"087472b5eb52a05589341d95d009e9bcd0c22f314842d824b496e321d642a7f7cd71983bb8a4a81f3d9006e8155f4494\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001889488368484368\",\n                            \"voting-power-unnormalized\": \"0.005904651151513649\"\n                        },\n                        {\n                            \"bls-public-key\": \"7f5eb00ed4b061ab486ab66c28ec70ee3bd3f88b3348f9b4f6ad9ad820daef4b5242a780737021b5a5f675ab78f53e8c\",\n                            \"earning-account\": \"one1pq9zk56dsapwracyx0z7lgz32603hzfk7f2t2e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3411cb61f965a14544de8891e6447bd308f01e59d5eea82d4a48e3e8468acb0a30b90adc55780c48b1a9796b9f96480c\",\n                            \"earning-account\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                            \"effective-stake\": \"6358700076952000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6358700076952000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002240126330640932\",\n                            \"voting-power-unnormalized\": \"0.007000394783252912\"\n                        },\n                        {\n                            \"bls-public-key\": \"03a3431e0d925662bc4da71966fe34933a50d29388327d608f8ead841132c970b8d22244f0c8fca157c08c04e8751787\",\n                            \"earning-account\": \"one13rtrd09sxez76efdqhmtamfclt44ew02auyhwa\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"50b20b4eb89041aa4715e87e4aa6430e674658959d8be657d43e4d3d4c35d7507d6a40aec5188218dcbb5460e354fd12\",\n                            \"earning-account\": \"one1jyvcqu4k0rszgf3r2a02tm89dzd68arw5lz9vl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5282fa73531fd810ad854be2bdebd09d1efaa463564c6bf52624968be6b707e76672bdc3efe6e7761e8ee7bb8e5e3b92\",\n                            \"earning-account\": \"one1kgyntj9yg6vvasmt06g5w7x8e84z84hnlx4eda\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"af0bc63711223af48d1627943ab803da15b36cbab111ed538745024071305a698c837f4df735c8027e3f4c2775dc8704\",\n                            \"earning-account\": \"one17nfgz8rtgpl3nlws5q9tdk9y3puyqf847az6ne\",\n                            \"effective-stake\": \"6376324000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6376324000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002246335117592862\",\n                            \"voting-power-unnormalized\": \"0.007019797242477693\"\n                        },\n                        {\n                            \"bls-public-key\": \"778fedb1699a7741eae03dbdcbc376c983b1a23aa9da2548c1706442acc3431747a957cf7aee2ae0fa028bc0c83a1684\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"ada4422e36fb53fc5098eed8fd4bc6a3d2e24c06ab0fc7a06bf755d72180cec56cd0977ccba6ee19038d3f839c9cb180\",\n                            \"earning-account\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                            \"effective-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002016147192296099\",\n                            \"voting-power-unnormalized\": \"0.006300459975925308\"\n                        },\n                        {\n                            \"bls-public-key\": \"a54fdb9bdb8fd96ff9c58002ab528e2b1515be0dcf45a92ac03b47c0995d93ee41901d611cf13d92c20fb03d6abddb08\",\n                            \"earning-account\": \"one1tfrpfvrgj5tnxj029xsdkl33hmrsry056nrpvt\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0a186205b9ac93d83d1d474c3e548715e8c3dbdb4882d60c8ff69b01e950b6c4f3db5b680377701299345f17a509570e\",\n                            \"earning-account\": \"one1g2rm7ay0htx5tlkgqwvvwk4sq2tgm5wratfzq2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"496f3bf9c80a4e1ce0525e2854435139486e77cbb0abd280af4389c0535a0cc5f3a6c9be0e6e498348c8224d3f918988\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"f4d3a519e90e01812ae51eb25d2cf6acbcfc1a7b0fd2c85816876b49d89649549f20a3c93b5e5f0d34cd0d4b7039dc14\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"5b38c8854996464cd60656ac0afec5b460f9451124fe576229aafd8775e217e0e6f783ce56235957adb137c7e7caa30e\",\n                            \"earning-account\": \"one1el39ku64kkdpmrv598d8g63r9ftd25nc8ppuly\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"70c68e596625ec8804d6e6b43f8c1964adb674b5bf897582201714bfc309b6fa67915390ccf382f8cd58a4c851111388\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"dc277e5aa25ebc0a9092f514964338e66048fd3c952a3652b8aa64c8dfbfd2024a43070cd07c6bcd5682375ec4c0b898\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"c42479699f74dddc90caf2ec5f8825fad746826797948c299f7a64ade7c8b37a9ecfdc8cc714204e813413073ac12d0c\",\n                            \"earning-account\": \"one1w4ekumvg88ex5txjrzk9qgfx3xheua4djrphld\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"78c409907db47d0872eaa7ebeb35f2ffcc9c9a69b1179676f9783b39fcefe66e96060305419561ac7cd0b0d70f950007\",\n                            \"earning-account\": \"one1jyzcklsqmr5r5qvvyh0r0e2436ss6vteap69kv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8e70e202d35dc53372d24a69571852f8aeab67d7f0cf614272e6d94e42da02313fb9505a12d70f60a8b9b9b6a098cf84\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"7818a1a592f321279dbc1f53732de2fe7640b5294e38ea895bf4cc53e90d61015bb0fe0e9b76ea5bbde9863a51ccf899\",\n                            \"earning-account\": \"one1a29x52lelvelspzx9scdml3nhy9hrau9k5mvdn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"064a5352bc38accc647cdd10e6b6f091458d2c85a996a27c9fb9dd075920412e07c1db3c6989043d27aebbd86e1d9f98\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.002111424984824620\",\n                            \"voting-power-unnormalized\": \"0.006598203077576936\"\n                        },\n                        {\n                            \"bls-public-key\": \"c44062315f968d707543b41882793ff7c945a0fd53f6d08ec355c261a327a368af7d1dc60da392b150a3ebfde4964708\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"1280a5222b63bc66c31176a1b321db7a5207d7a37226ba25b769a776ddbf2f50ef90d7da28fe8feed3882355c561f910\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935043352438606\",\n                            \"voting-power-unnormalized\": \"0.006047010476370645\"\n                        },\n                        {\n                            \"bls-public-key\": \"d1a74426b887744b32f62b2f070f0b8ba8010fba4581189c35a51d241958ce93239a0c1a749495573003049f59f1918f\",\n                            \"earning-account\": \"one1jegwvj0vpkncgsw9p3nuyt36dp94erdu79kv5j\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"15fe75b1df8039ad6d490f36b9207543971df8f645f33a1aac9e6b95b45880228a28a5c0760e56e090f1c501628f638c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"514e2df4d945d40f873f8b4b77de13a9128377a142aa30c6f3ef2554622f708a30cb0277a17d7d5babef7d79ceedff97\",\n                            \"earning-account\": \"one10tu906wspjnc3mn5kvzlr36882swkwf9s8e5xd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"17d4c9cf214edad944f13ee8b52dce377c1043842d14c74673a3dbc79ed63420171a3a66d1b10a6a0278db5405320318\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001910807677701739\",\n                            \"voting-power-unnormalized\": \"0.005971273992817934\"\n                        },\n                        {\n                            \"bls-public-key\": \"cfdbceeeb2bfe61ae2bb8c5743f7c51cf8767945f66f3701d8350f319d6a487470d8a871e21279172944c0d06070eb87\",\n                            \"earning-account\": \"one1fg0nrc7djkm2p47tjsuhd8n9435mz9ed57dj8v\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b885040f11b742de68d121cb8da133099afb876658ab7cabb5624794b37f48b00e438ad447478343375dba7b3099a991\",\n                            \"earning-account\": \"one1sdrc3dla7zzd5pdqjagywfdumnqsyl57ql7sj2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3122d1a0c32421c267cfa8c3994357608c9868a3460a5d325c70d5f7c5b2e87626be14c50262d6fe56cf80ed735fde8c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001889488368484368\",\n                            \"voting-power-unnormalized\": \"0.005904651151513649\"\n                        },\n                        {\n                            \"bls-public-key\": \"82585333306c11090db50c2dc3a81d990ed7965d951e34574c6d4f8bf6ec8eb90cc0ea9ed283606544fb9bef9da66984\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"02bd0857e2cf224d5f4a7cdbccbce0ece8eecb560e49f5955f28d98e22e60b6975d5cd890ad70cc557b7c1879da44a82\",\n                            \"earning-account\": \"one17fn65sgdnp9hphg6vn58h90k3ujt07xtqrnn3y\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"13d936398c988a598e96db9ef5980da9347dcb1a34e87f4a403db8901c33dfea76433c7105890c9ffc44fdcecda10c04\",\n                            \"earning-account\": \"one14hrttmv9xapdkj0auuwlgpvmmhfz2mp4a2c8ey\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ed8aec2b23c22fbefd20a8dc53f2ce38d24c6cca03834ac55d0ee39b75cad5a323b8aab9be7b2a3615b820d64fa3be04\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"18e9f2ad7b95c78f97ad32ea4d5b84128453b364e44a5d1c5f346e246efc27f8f955a64d4ed51576c07da47ac7b89e04\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002062987917684844\",\n                            \"voting-power-unnormalized\": \"0.006446837242765139\"\n                        },\n                        {\n                            \"bls-public-key\": \"59d956935972502209c7c3ca629227cc13beb7b53f9be02bec04d35e7a2165144d0fca23293f60c3d15c3ab178e1a804\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"6bfe56ba0a591b8f1001b201571561e0cf9e682bec8f8a6d8ee2c68ac7daf56bfa40810f1f00855c38d10a0127f46104\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"172793ea5eec637a28bc210df85acb932683c38b37b8a8e6ca8e75b0f8c00c0a9195d55ee6bcbdc36e57137681378005\",\n                            \"earning-account\": \"one12h79f9lmyyrzfcf08a2zzuv4mct72e0vsyfcax\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bcdb69af84771f98edcba335e23748695242dc4c4116c24138766637837e7815dfbd2d30e8c4948eff193e62b2e51e80\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"295d06ba7b2b58896bb68ad324f58399553e3d5e774a80170ff8673b3b9fbb7e5604bdacf381b7d598cd471a3a49b190\",\n                            \"earning-account\": \"one1ekllcv39gdpac9497gc3894ddsehkzlqds7ewl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"aeb4aafa7d532057357b88ed869a785595b004abef728e16ba082fad875637691f26b63e5f44b6f3195be9e6e96ca580\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"f1db95e67a4f1baf48a2dea65a5172a402d1369bc9d05422fb9539eff5dfa2537c2112513736ad626923092bdc0b580b\",\n                            \"earning-account\": \"one1vfy349h4y44244zf3zm47jwc7z4jdwpgsgdtm3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7ce51c0b6a7f532ba775f189f9700df7c5341fa7e976b42489a469acf79f83c8b7e88a7e35080477a9bdd7cf3449be0c\",\n                            \"earning-account\": \"one13n974xtdzxu4uu2ugz8e2ml5p8t94d8x3tep3q\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7858003787207954545000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"8bfdb9ad1b77ee64a0ac063ccef3db745be87dcf6339ef7c4743ba61c3e98eaaf4955c14198f16b3499c05d2053aaf14\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002062987917684844\",\n                            \"voting-power-unnormalized\": \"0.006446837242765139\"\n                        },\n                        {\n                            \"bls-public-key\": \"86bc72330c7698f2e439a3fdbd0c2ee4cdbbd1a5ec862bd57933e0fb228f8089548f94877b305a16d3e24610e8c4da18\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"a1db364436316e10329d311c3bb538a2ac676da43c222e6c16dc147375b34be00000c0872745b2cb33d11c58ca478c10\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5324700733669510882814285.714285714285714285\",\n                            \"voting-power-%\": \"0.001875855469187936\",\n                            \"voting-power-unnormalized\": \"0.005862048341212300\"\n                        },\n                        {\n                            \"bls-public-key\": \"62937063063c3c8390c86fd406b3155158fe8ecf1e82b0116e1e27cd8fb021c61c39469658d212cb89168ada8ab89a08\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"7dec5e3f6909666b5e280e71eb6bfc7ace6ee39378e6752447ac2fd9a93cabc79c1309dcce0e670ebd78dda60ca9a388\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002062987917684844\",\n                            \"voting-power-unnormalized\": \"0.006446837242765139\"\n                        },\n                        {\n                            \"bls-public-key\": \"5124782156094cf9aaccbcc5eb0f79d25db882352cf21b490c8cf70136d20405520659fdb4961396d3bb363ec4d80e14\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"65876ec707a3ddb5c5ddae8e9e954cdb8e9913806df683109d8a4cee24f03bf32db85199859241c7f0b221c8b00eb394\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"4f50f328160160d3773f434b7f769c7eaca25e08daa717bc4062be94237da4d0fe973087b68c3e13dfe198682266c218\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001889488368484368\",\n                            \"voting-power-unnormalized\": \"0.005904651151513649\"\n                        },\n                        {\n                            \"bls-public-key\": \"33a3d789c0ae207be83019bc6211f8d0f4b2351d4227abc5b2c63a8bd079a19389936556f1cb750debc32b7b024e650c\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001888628709616732\",\n                            \"voting-power-unnormalized\": \"0.005901964717552287\"\n                        },\n                        {\n                            \"bls-public-key\": \"6faad32b862cd7b52ca315cee857de8aab3d4b6b04e5b6c46223b8f4a49b6420019abab977378bb0577ca8ece8f7e604\",\n                            \"earning-account\": \"one12p85puccq3h6fgdtvhvmu2932yutv8xgk3lynk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"dfca9b0bb41a358023b75136f51882e2b5396806f4287a0200f772c2b7b8a5981730fbc7558b086da8217969518d3498\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002207366226231842\",\n                            \"voting-power-unnormalized\": \"0.006898019456974506\"\n                        },\n                        {\n                            \"bls-public-key\": \"715f484e66a6c6e4597dacea5fedbb318414c73c6e82b092a7d3399f5410a5b1afd5ebff47ea58e08a0012fe6eece98c\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001852764104661027\",\n                            \"voting-power-unnormalized\": \"0.005789887827065708\"\n                        },\n                        {\n                            \"bls-public-key\": \"a2a26aec4321e583695ad776e4362f751bbacc73596aa95a1e0d1fe728f9a4c4287fc53e32b103d6000be6d4f62aaf0c\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"a3ea8b3d50a96ee130d7bc213450018d2ce2bc61380d93c249cc0265ebdb6abf88f79589c524650b243b3cc641669b04\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"8d14f8242ee01fc3ba63bce5f6d789bb5dde518930406e1d8c21d2ef5acc3659482aaec12eb32ab21292a11796a6028c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001889488368484368\",\n                            \"voting-power-unnormalized\": \"0.005904651151513649\"\n                        },\n                        {\n                            \"bls-public-key\": \"b7e3288b3b06d3cf7a42cadd23f81e57c23e40ccb0dd31e3fe02685a49070dbe37634b1cfc1567c427cdaf5cd2f42590\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"ae02cceb71c354576b7af662695a24def1f646f71e1fda19b541cded3fb43076d68f03e1160009414936b434035f3911\",\n                            \"earning-account\": \"one18hmhzhfnm47sjwcaz73tjhz09zay4jrc2stagj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6446b0305715cea4f6615e2a685a7489f36e886acd56e9a889e17e3a0f963d163208ee3c8e8f348b2ea12210b0803090\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"ea0ad7e0c1548ecf714619900de11947e46018b965dbb23a4d8b6232b9e8bfa6c460e2e383a937e1cee7a8ee47873498\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"98452fd6a94d63c8e3a20e3514f38fbc043a7290ce1a7e93711d06eadb4e5296ead92c63105f8287cd45c9f0b8725293\",\n                            \"earning-account\": \"one1chxf96l9c0g0w55703j0q37gtnedg424zlmraf\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9749b71a42cf13ef035b676553e2926c815be906c4173bde249ac76423e2dd6ccee1b8244a25f667bbde1c4ef87ef500\",\n                            \"earning-account\": \"one1y82p9rex6ezqenjze8yxe5a0nhskvamcgn8rqc\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"54e176df47fdf17c32c996ed028bf50ccd1e4d7c051dc73131b0541f40ee5169c1cf64f530b5e4c590c2188686590f0c\",\n                            \"earning-account\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                            \"effective-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002312781602882852\",\n                            \"voting-power-unnormalized\": \"0.007227442509008913\"\n                        },\n                        {\n                            \"bls-public-key\": \"39accf250b555fe249c838b5a969f49c7f9f69c55387b1b830daa4e8e72c28f5a7e7029c9a5916e474adef933162fc97\",\n                            \"earning-account\": \"one17jzfd3pwu4peerl26yxr7rkynv8385dczppnnc\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"60de05a9fc29a07778323ad5f5bc3036499d579801795b02f019109840dc7f6ec68b8f52b5e4b8ab0dd3a3c6d6296018\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"79dae4be1cc8dfec7d85b0bc13f77cb8b2ee5d423f0bfc56e057998547d1b588edf7966a3365a9cfe1c9ea225d279590\",\n                            \"earning-account\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\",\n                            \"effective-stake\": \"5751194906753550649000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5751194906753550649000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002026106434861482\",\n                            \"voting-power-unnormalized\": \"0.006331582608942131\"\n                        },\n                        {\n                            \"bls-public-key\": \"a845c999642fb6ff96ab50cf0de871b9ccf9bba3471e69a7254c5b3dfabd62743c4d2a63dffb480554a78de7429e858a\",\n                            \"earning-account\": \"one1pegk36wh4dnyv29dhe5s3faveenhl60wcef9y2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8bab9efc3a1468735d9cdbc526fd3032b9c335a9716a2fdda001616950464cc96def3b8f41262143bc53f5b2fb34f880\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"5366ee770e6bf00cbf65d683bc0aa00ce600adcd644ac6ba078f0f825fce10283bcf19fa6c08ebddeaa23a8e2f63a108\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001889488368484368\",\n                            \"voting-power-unnormalized\": \"0.005904651151513649\"\n                        },\n                        {\n                            \"bls-public-key\": \"ae420cc03a18543fb2e57e1434b52fb65981465265b60dfd375fee68c910a893e93db23b258da658449ac055d8a7eb0f\",\n                            \"earning-account\": \"one1h3ztpa75txa2ng20jzzekqzcfmxx9v83lpeuaz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1c193e6077a36d290a29d4d6c45ad2cb7163ba98f29029b3ef968a5e464561806ef0d86ed0c81e98d83ae4f87d0f7309\",\n                            \"earning-account\": \"one1rs666h8mfgm33kqdkzzq4s6klem4d0hk9lldc4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"376b54621b144654dba41295e76d413c222688c12ac4cfdb1379260cea4870344db655e72e16c388cf59ef6e0de39288\",\n                            \"earning-account\": \"one1dzr9ruh47we0lmtkaxk4an7hxe8qp2u6fqsett\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"53be1c32403da5a866ed6122655ff70b938c511d0eb340309baa414f98fbad61f6b232ca10ad792d01e4c8fcd5b15388\",\n                            \"earning-account\": \"one1xrksyam05h78f47l70rtjsk5njy8u9f0ty995h\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7503134874470000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002344374647827966\",\n                            \"voting-power-unnormalized\": \"0.007326170774462393\"\n                        },\n                        {\n                            \"bls-public-key\": \"8c166b798f14ee72dbbfe73c759ec6571613114933f2d82ca7dec67731e3ee57967a9da98822e5345f78f38a4c58a710\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001885853020917827\",\n                            \"voting-power-unnormalized\": \"0.005893290690368209\"\n                        },\n                        {\n                            \"bls-public-key\": \"5ea4a8c13bbc364b869c9f7c6b5933a106c5a062e1ccaf83d0650d25ab29dfe6875cc2e5b2b5cbd2712417b46cfe128c\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001885853020917827\",\n                            \"voting-power-unnormalized\": \"0.005893290690368209\"\n                        },\n                        {\n                            \"bls-public-key\": \"deec63912e755be51ad225d9feccc89a97dcb02b4047cc04c8c9312b8e9076aa21b0a96c0ea2ca904213ca349b253d93\",\n                            \"earning-account\": \"one1tmxgqudfnzuy5y9wf7gsntwv6f768878r3q8q6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4542fda471c1c8fe5b7770a78dd96b927bb3a96c227c31aee258f41a38210c7e459e564c01aaa112616f0bead2288e88\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.002111424984824620\",\n                            \"voting-power-unnormalized\": \"0.006598203077576936\"\n                        },\n                        {\n                            \"bls-public-key\": \"8b76663e5fb776bfb89ed8c118d56dfb4ded0517aac66ab20ba942a22cb3284a916cf01a8a6d0a9cd6a2f88aeb26d000\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001986151608574269\",\n                            \"voting-power-unnormalized\": \"0.006206723776794590\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d4aa3f120cc3cf27edac2a29029dd640e712f92e47ee751a20839896a0ff5bb185c33d7c832961c21df070ac2d85314\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001852764104661027\",\n                            \"voting-power-unnormalized\": \"0.005789887827065708\"\n                        },\n                        {\n                            \"bls-public-key\": \"de0cb19717d7652a91d8678eed96ccdde9f97a10b134df6e21dc849c20da22b1d300ff5d0b10bd2c2b2be92f39612884\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001842678521503962\",\n                            \"voting-power-unnormalized\": \"0.005758370379699882\"\n                        },\n                        {\n                            \"bls-public-key\": \"5a34b281d855a854ac7eef415a51c632d5de84a63e5500f4929bc9860a552a36034b7a318c271c87c8765b4ae4528413\",\n                            \"earning-account\": \"one135nj2r8jd88uffht52q4zs88h6vpwmy6f88vjr\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9fe2ce7d413b0b2930d8f00c99e8500780541aa5d72f9b0d19ba6364d8dbadc30e14ea2885f6d65bf7272158ba113307\",\n                            \"earning-account\": \"one1v525e2ddyq5xpecnq9f3gtpz6dlggg93l2uac7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        }\n                    ],\n                    \"count\": 249,\n                    \"external-validator-slot-count\": 159,\n                    \"hmy-voting-power\": \"0.680000000000000040\",\n                    \"policy\": \"SuperMajorityStake\",\n                    \"staked-voting-power\": \"0.319999999999999960\",\n                    \"total-effective-stake\": \"908334497386341336089880405.142869804848536799\",\n                    \"total-raw-stake\": \"919211465717413292522137947.142869804848536799\"\n                },\n                \"shard-1\": {\n                    \"committee-members\": [\n                        {\n                            \"bls-public-key\": \"6480fdc6e2c7f03c9cc419aa9f3ab79b0ad5279cfdc7c45363a17de3832d97d2ff280487c9482ba4622768d5ed208681\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"d4e9a9e708070791c0f9cac4b91cc3c60b6a97cbc38b36b1778d74d7266cad68731f36a471359bd513e9b77e76a28c91\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"8518ed7c513fc710fdffe9d2929d9a4c7d242c1ee6edcd07402659a01bdb8f1133b42d01b4661dc46d2f633ad2063281\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002085308663969071\",\n                            \"voting-power-unnormalized\": \"0.006516589574903347\"\n                        },\n                        {\n                            \"bls-public-key\": \"0cd4f33a299dd068042d5423bd1fe00f572a44d20137c093c6f636a069c0913e76cd04131554a8f4c4a91d892f161419\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001835750691525404\",\n                            \"voting-power-unnormalized\": \"0.005736720911016886\"\n                        },\n                        {\n                            \"bls-public-key\": \"843f409bbd76af738342d111fee0017fd5fea404bc1cd646a5c4992f551a16238d7d53a6fa8b2a6b1eada235c2eae285\",\n                            \"earning-account\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7749703184439000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"5945bbafb90bfd39eb39d5ff78e7ef193aca0bfbde7d56360ac9750d82935758cd16c0b0df446e2837ea90d131e51c15\",\n                            \"earning-account\": \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7705518108147600378500000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"9cdac12c6507e3405edd521d5cc892840b5f79b140ff3c71b6e7c9a4010b886608fc3f83709e1a60232fee0bb2b00209\",\n                            \"earning-account\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                            \"effective-stake\": \"6521433223504999999000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6521433223504999999000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002179566994364162\",\n                            \"voting-power-unnormalized\": \"0.006811146857388006\"\n                        },\n                        {\n                            \"bls-public-key\": \"6791ed00d62bb5b90014dcb2a6852fd4f1a6763dc5d28e822da8371c4168eaf64b627ef96d6cefd544bea24ba56b4915\",\n                            \"earning-account\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\",\n                            \"effective-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001922028533919892\",\n                            \"voting-power-unnormalized\": \"0.006006339168499664\"\n                        },\n                        {\n                            \"bls-public-key\": \"b021214d1bc3719324cdea55a2291e20822866758add096e823bd2cf0ebe8161b86ca5dd098265c82f8dd59389f87808\",\n                            \"earning-account\": \"one1fhwkcx446gxn46gwaz9zpkpddlqs8xwhrqgxad\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d269d3fb01d5a3a1c615f8904aae5cabc71e725eee3486f567e14d14bcd5e02c1e54e4e9eb5accc2b774b05c1ba2f119\",\n                            \"earning-account\": \"one13vpshpmcfdm07hqzck03wwzfrfepaslyjm3ys5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5803fbe842c877ded50b91facc10b781cdd3b0fe4c7d3ba88293d1cf7f2f61fb2ea0c58ee3cb32bb635a3f4e15b95615\",\n                            \"earning-account\": \"one1tz49z0wk3yta2tu60twac7q8x5gj8dl0qqfl4x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3d95117eff84aa5e20b50b0bc9f7321e19dbb991d45396a227711ee9ab55aa7e2057216516c3612b6a9444118f356199\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"97fe22f0ecb1db616d51d741cbf9afe27ed45ded467f45227b0d837e142d59b49bc84400b513ec2e939624aa4957e181\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001989624591384244\",\n                            \"voting-power-unnormalized\": \"0.006217576848075763\"\n                        },\n                        {\n                            \"bls-public-key\": \"c4f38df0892305a1f5d17d22050ab2897e5063725ad2a7076b032861f1b666559a06af6c0737ebbadbc2f3b65fa5a385\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"voting-power-%\": \"0.001901085030601973\",\n                            \"voting-power-unnormalized\": \"0.005940890720631167\"\n                        },\n                        {\n                            \"bls-public-key\": \"c9d8c73e69151bc5020d22a6e0be30def18190aac28e2752e6759530adbb5ef715ce783f617ec8bba29b5a064e48a502\",\n                            \"earning-account\": \"one1fwg40dmtat2pq30p3a707qz0vu726l6tr4e0lq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7c72c90d54ea5498e14098bc364b7ddb991b5f2aa0f926c328c6ac61351ad18f70d453373f5518107b71c587814f2005\",\n                            \"earning-account\": \"one164n7p8jhu2s97w4zc9cpx3tvzwta2u7eeqth7m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"521e353fe292742571c6617db1a1c992e21ee5b1e604110f958ed016d718f6d4de4dcf36217f7dbc492d0066206c6012\",\n                            \"earning-account\": \"one1zjmecl2we3vtkf9g2a36n2793y8sp4s7mzxkn9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8adf7db7a7e82fffe5ddceb3dc3798fe3129665391ee195cc6413851a805b43351dffcd9311397a2b13ca1a50bf6c18d\",\n                            \"earning-account\": \"one1yq84hen4gunn6d5q7wmgptk45z5pum9x4lg3g7\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7817211035362950000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"04905b31875575fb2c51d75261efe27c61f9181eac69d4617e678a954a1ef9f987c3c22646be919097e5d5f8250c8009\",\n                            \"earning-account\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"7a4644791083742c77bde9197ffed2bf693a8277edf366a8f9e5bd36f9c43b98c7c1ba0f6a3ff397ee0278398d7dcc09\",\n                            \"earning-account\": \"one1yq84hen4gunn6d5q7wmgptk45z5pum9x4lg3g7\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7817211035362950000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"164fe2da87e1e07700e93ed752924dd9243b1e4f1dcb437ab2826f4e381cfcb14035a24ce4f464d24aa3f4462a9ee815\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001884236435488433\",\n                            \"voting-power-unnormalized\": \"0.005888238860901352\"\n                        },\n                        {\n                            \"bls-public-key\": \"c9430775294429fa1807195ad3e9de9c23047454d466d218f3c580c7c41ee3bbf58000426edb50202df18af4f64a0f95\",\n                            \"earning-account\": \"one1qje5hy38mq87v6gvjfwgdd77m3hcex32f92su7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2992b4fa2d94d3ba42a43c6cafc0436c6bc33aeff346014e637af676c16f1514c8daa7ab5edf7b431acda813332f4505\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002094099892464031\",\n                            \"voting-power-unnormalized\": \"0.006544062163950097\"\n                        },\n                        {\n                            \"bls-public-key\": \"80e43b7381b0d2405b44a6a6293a5174fe4ef3e32b26a10c4af20e213d6ae17d778eb54e7129f5ac69343eac40fc1b95\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"5ca3a829c80c11bbfc662e522aa385240acd53742c696de3e33812d43403b460f5b032ec349a7e5d09f4e74ace7ba082\",\n                            \"earning-account\": \"one1ku9r7hgzxqdeyeagtezrge0mdw96w6zqd9clml\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"105947b76d98c3a83aed898aee864c0465ad0cb985ebbe60f196ddb208fb197f587c242a66d67d486f44c6b7d71a9b12\",\n                            \"earning-account\": \"one1yy7pluu0dl263gey5n2yvwqdf6ka0aq2gt85zw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"449e9459311d05fc44573e79d394de90a535bb266c31ad8d7c85168231445e111aa2fb0eef24d564ec9e9128728a7b85\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.002002786247157524\",\n                            \"voting-power-unnormalized\": \"0.006258707022367261\"\n                        },\n                        {\n                            \"bls-public-key\": \"3af3cc91916bebbc240a5ca9c7aa478a0ffb54ca6d1e6c09089271d48a62072bf769676de303403c3465c45c7ec24e15\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001830309239651507\",\n                            \"voting-power-unnormalized\": \"0.005719716373910959\"\n                        },\n                        {\n                            \"bls-public-key\": \"01912adee0e1f3809b63fdeb86cbbf944aa23e649e5fc4a34c259cacdac6dcb3643c66e1bafae41e611ab0466a70cf90\",\n                            \"earning-account\": \"one1dadw84g7vlfxgzddpa2rpne4pvlpfkaknl5rst\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a110d8d1a3626e6b23d61a012bbfec6536c5f2c93d395a2345354f17ffda220e9cf0b4a3ac7a5e4009b80c0453a0dc82\",\n                            \"earning-account\": \"one17h885c4jrxhp97k5vrvp09trt5g9ajg23fnvf5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c0cf1af7bb162b8b9c4e6496cdbfffadcfdc11ee98235637624b9b338c9fb15853961ed163da9677df2e1a1c8a977299\",\n                            \"earning-account\": \"one138p2807r9ywy9ux82kk3pc0z9mff65ystv3hpg\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7548328671224666666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"861e2d7cb713051e9a2ef95479e9da5be4d192609cb7af95737187abb0cd327aa70cec44ac26dc6844f231ebcbb06081\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"ccc797f918528cea5ff7932823b503ff264718d9e4d1797fb8ddb3c57b7c49175d0999290158cd800db399e62d810115\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.002002786247157524\",\n                            \"voting-power-unnormalized\": \"0.006258707022367261\"\n                        },\n                        {\n                            \"bls-public-key\": \"0090a1b348eb265400f6cece55967e3f1acc626b1c401c75ba0c85584811ed941d0ef997b3c349549a7cb4a8cd5a3e89\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001835750691525404\",\n                            \"voting-power-unnormalized\": \"0.005736720911016886\"\n                        },\n                        {\n                            \"bls-public-key\": \"bd69a3a69b4eea1fd2fae1d8b2195ef6de953bbcaddc2a0a78aaffe2aee60dbe836f649b2f9855722865a08bc38a1e14\",\n                            \"earning-account\": \"one1rn7amacj6qxna4u4jhmnf66644jz4vun5suazk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"eaba02b4c29ad6dce8109579cdc60d89730d2be7ac10ef426f8c1e47707592d223dc069c0dd59cb9f7ece5ce71aa0f89\",\n                            \"earning-account\": \"one1s568nnxwqqjxypx53edk8vg8z29p605qu0j90p\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f1eb7dd04d6c789c7a5b949063bba2978ee0c0be3a81e873f36ddd2e0b012256cd45d7218205bf44ce7113c01460795\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"voting-power-%\": \"0.001933980883828401\",\n                            \"voting-power-unnormalized\": \"0.006043690261963754\"\n                        },\n                        {\n                            \"bls-public-key\": \"4b12f2255cde93a0ff6b2bac2965887dd46e96f554c943d760393b7973435128bb7d5c93ae2a17ca757071e4a4e98319\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"voting-power-%\": \"0.001933980883828401\",\n                            \"voting-power-unnormalized\": \"0.006043690261963754\"\n                        },\n                        {\n                            \"bls-public-key\": \"3a30d5f923cfd0e3f673f62b4161c47b452743e1f50044de3df07c0f51d455385893668fedd75e63248a02f903dc4a01\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"1a675b05b7787b10c0cdbc08a1ed3881a841082ab0b62bdfa7fadec77a02aadedc3d47c096c598d403a2c06410f51281\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"c1cc6891a6234bc6a1c711def8a2d15942a4f6c17eb2758583c0bd37ed59df55d7aa0eb26479d3d5b9ef151a762db295\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002094099892464031\",\n                            \"voting-power-unnormalized\": \"0.006544062163950097\"\n                        },\n                        {\n                            \"bls-public-key\": \"4a017b97577cc281915d97de38d741281c6beda42bf24f9d44bc100e86c7fc749951f87f61ba74a53dcd04409a7f1215\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.002003081673137236\",\n                            \"voting-power-unnormalized\": \"0.006259630228553863\"\n                        },\n                        {\n                            \"bls-public-key\": \"8c8698dc1ac6697e0bfd29eb3040a992c8eaf9c2ba60559731309e3b2fa472b3948752e1fdc09219d113700aea63df95\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001916725477999985\",\n                            \"voting-power-unnormalized\": \"0.005989767118749954\"\n                        },\n                        {\n                            \"bls-public-key\": \"dc0be4d95496d741547821ed34271dde5e5f072c1672010f75fd052af44ff592d5f07c75a8c4328913a0b4a7cec17195\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001884236435488433\",\n                            \"voting-power-unnormalized\": \"0.005888238860901352\"\n                        },\n                        {\n                            \"bls-public-key\": \"27d3591a48b4cac3c7801db17a57d35b04bc2af97e286c7c9f948cfa318bb53124a283b6f49f99d3fbf87524cf41c80b\",\n                            \"earning-account\": \"one1t7nrh7s8zhujl0lt3x5d6tdfwekqy4zkeqx770\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e3ca514b3fdd4680786f565b4f504d5d85a35de326734c2991acd775627737ae0f1808c1ed0676df7c940005305ca08d\",\n                            \"earning-account\": \"one1dy6d7tyrxjdg4z28wkq8ac7lqkq8yn2tfjqwrd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"aef0ce484fcec7227492e55a8d311172cca44bb40d657c44c984a709b0302211761e0f109b4a65d2ee9a8a88fc928595\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"091fdd3b868e9a9966a73236f884c2be8766197800fe3bc5d99946415c1ee27d1db88a6d9d5d345d1a03ff27a4a6be81\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"6af38646737e41bd8cd3a6b4a15584764fd7068f9f205ecf26dec36c64d601acdb871768a77d37259100ef8e36f4a491\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.002002786247157524\",\n                            \"voting-power-unnormalized\": \"0.006258707022367261\"\n                        },\n                        {\n                            \"bls-public-key\": \"48427664b04ca99d1ecff349d0a6eab684ce682559f5cb1398716e5bf5288b9d77eaf3d5d9969b1d17bca70a9f633e95\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001989624591384244\",\n                            \"voting-power-unnormalized\": \"0.006217576848075763\"\n                        },\n                        {\n                            \"bls-public-key\": \"7a3ce87d76839d870f2c27bd00fbe3731323a24c3142ee32470783e792a03adb6e7487d09d85aa118fb4c44c73b70009\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001792533265315788\",\n                            \"voting-power-unnormalized\": \"0.005601666454111838\"\n                        },\n                        {\n                            \"bls-public-key\": \"b7ed2a4cf93689d442165afd9b6a88e15858f22b919cd7aa210d711d03e2b3b7a253bc507b98cd1179cd92c1a77ece99\",\n                            \"earning-account\": \"one1v80qhza089aege2ngxv8xnjv36ga4sxwhajau0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6caf1501cb636fbcec5ff73cd40ecc0c38b2855c8418fa3cb6a006133ffc6e03a84979b87c5ceb991ea3a9157a23c099\",\n                            \"earning-account\": \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7705518108147600378500000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"40f92aa97fa8e5036b0b49ad17a7a6603a33dd3f98b21f55b10927c90ab27f6c586eb3f0c44beda3458aa6c86e743f01\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.002002786247157524\",\n                            \"voting-power-unnormalized\": \"0.006258707022367261\"\n                        },\n                        {\n                            \"bls-public-key\": \"988db9687986411eac53e47ae111d43a8207450bc8c9da4b81ac912cf771801c973cded575fd03889f30d9a261649989\",\n                            \"earning-account\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\",\n                            \"effective-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001938315503159064\",\n                            \"voting-power-unnormalized\": \"0.006057235947372076\"\n                        },\n                        {\n                            \"bls-public-key\": \"31dae09c17577e345c4bf205f220807e2f6a0f680e49d00d8fd9b9ef04034b1ad5249fd890fb0f67fd1adedb85a3420d\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001916725477999985\",\n                            \"voting-power-unnormalized\": \"0.005989767118749954\"\n                        },\n                        {\n                            \"bls-public-key\": \"1c33be6bf798a2b961816f30631c136ef0cc61fea3848a491dd20c15bdace05545d9ded4598e3bebfe1653d9b8142809\",\n                            \"earning-account\": \"one1cdfc2sx50f68v3p4e7xjpg5zta9juyhy7shkfc\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0df729418ab50873f5b266ca2b8abb3d8a0b1a0df89d3893db9cb6d5c441430d11d50d368f9dc5c827d4dbc1dfb49a89\",\n                            \"earning-account\": \"one1rjl48v6v4x3ae7j04qpw46frvjlavxyqnp486s\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"85747fd93d0b91c60c5d2c3f6adcf79708f8330402e2df9096037690d68b91636ff9ebb110abb9b05e0c2c5aa02e5c19\",\n                            \"earning-account\": \"one1cfx2x23um3w2x2rvqcue9vem0yy4p0h5vyzuua\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e85e14d13b584e3cf86e02c131de6a7868f46db418885e0cecff5d0898bafb9deea5824d68681581d8425907e1f08785\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002094099892464031\",\n                            \"voting-power-unnormalized\": \"0.006544062163950097\"\n                        },\n                        {\n                            \"bls-public-key\": \"858b2be4b3118e3cf0b6167a4f7b9283a5b0079006fbead0074b1444759ac5c281822c86265aadf4e4a9452765bf3009\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001873718122112864\",\n                            \"voting-power-unnormalized\": \"0.005855369131602700\"\n                        },\n                        {\n                            \"bls-public-key\": \"ab3fd464dfd476a45fc617ed232173e5b48db87adb75aa0d612cade4493537a4d13a91d6157003fc18e886b296a99012\",\n                            \"earning-account\": \"one1369pd4tu0v9vtp5ltscdg2f6q57fnr9d4dhw7a\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"842a1b74ae7ecb2946bfa5e55a680b444c9cdd3a4a511b8625a6f96349ef7cab0a658f8c7b3e27fe363e9a9b1475a18a\",\n                            \"earning-account\": \"one132yeuy3js36zqhupv37ap3m2mj073qdgrafkxh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"93c3332eda5a0d3e3c481f5320b60df4be663f7df1a365d28e6b26a10d7577102b4f3c1bea575103131750f19a762089\",\n                            \"earning-account\": \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7747952004070000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"2864f5f1cd848f2c7302faf6bdfc7456984365226c3d53c7cd63cd1dd316fee75a7ae48560ba5658ab47497b952eea99\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002094099892464031\",\n                            \"voting-power-unnormalized\": \"0.006544062163950097\"\n                        },\n                        {\n                            \"bls-public-key\": \"ede3a3edb3469c8ab63665cac359af0051956f1c6a036d88c26bdb09885e9dee66f3fc0a78530f948dbfed1a72abca85\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"9756abbc889d65aa2739fecc1bc7188640395c003de39c4704525136764d5b607750fb86f8d6b93a784ff52456147b01\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001822270909657323\",\n                            \"voting-power-unnormalized\": \"0.005694596592679134\"\n                        },\n                        {\n                            \"bls-public-key\": \"6e749ef61bc1d9eaf0a36da6cb4ce7ae5f32615647fbe5a8f074e664359a8be4c45995e6a265339a82ace3d077f6eb8b\",\n                            \"earning-account\": \"one1a4y6qz32f6qjp8p5z30xh4fpux9mlxm6uxgesn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"053c8b40358a70305b1dbb687a701ba70b1746e4fd7ebd9b476356996e858d908072f3fb04afa79b9648061f8c224618\",\n                            \"earning-account\": \"one1hh358aymszej4gxftkq96f8yh5hlpaflvq4rmn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3aa1b10f749b926ce116ed55fe87e948a45b748b7450427973f936444f504ce3bb69f74cbb1eb5507bb2949adcac1405\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001941753080724479\",\n                            \"voting-power-unnormalized\": \"0.006067978377263998\"\n                        },\n                        {\n                            \"bls-public-key\": \"dc5a72979a6872697feedfb06185db787525db54ec52da51a4ee9be6f3be5d47befa4f4515ef0b5b1bee85f864bbf695\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"voting-power-%\": \"0.001901085030601973\",\n                            \"voting-power-unnormalized\": \"0.005940890720631167\"\n                        },\n                        {\n                            \"bls-public-key\": \"00b3f69f0e90d2373555dd6827794945d7465b067fe4b1e8a9bc695508f9071af2ffba3b330fb42617534f23ece5c409\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001792533265315788\",\n                            \"voting-power-unnormalized\": \"0.005601666454111838\"\n                        },\n                        {\n                            \"bls-public-key\": \"0b12ee68ad020e4a72cd302c1ba112b51b631221917a0862485bf9520af2ec60bc2c9ee387964811c5e009bbd258b191\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001792533265315788\",\n                            \"voting-power-unnormalized\": \"0.005601666454111838\"\n                        },\n                        {\n                            \"bls-public-key\": \"651f1e3a45a54e2a046f9c038fbd21e990bc911169c16e4518f235fb28c7a36e83e7a70f3eedf2bcf83637973f63d291\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.001777626372864291\",\n                            \"voting-power-unnormalized\": \"0.005555082415200909\"\n                        },\n                        {\n                            \"bls-public-key\": \"d3a862d872780701c6f7f495c4309bf1afc21fe394e7d903380c18ff90c80e24603eee3a52287ec2004b73fe883e7f04\",\n                            \"earning-account\": \"one1nzxn9m4ull3nvaer2yvvhhk086sqrn6emqwkge\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7432e4013a3a9fa4922699132e39a6c4fb1e4d867d1d5bbcb4dcfb41f11fbc1b97992e232678fa11500aa56a7c4c6895\",\n                            \"earning-account\": \"one1wael8exj25pw63qrjmcuk0sv6qp8v2p8yuzjtr\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7949748585611733333000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"a4c2e977e695c5ce8b3b9ef25bc450b6d2a8d1a6f2aecee2465a56693fd8e9c783e661d3a2e779902d16cb4ae1e1ec05\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"5be15de52c6f3ef44947437734e1d9c8f2e16d71ef1eaac70cefa58e2de5dd950d35edc624d69f11625c01d3102af085\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001789084457928190\",\n                            \"voting-power-unnormalized\": \"0.005590888931025594\"\n                        },\n                        {\n                            \"bls-public-key\": \"cfcd849400bd1f9d58914f61bbacad5a73e36db5d6b420dfa5fce21e33f8f7f8e01b6672e03d6917d007faea4f67868d\",\n                            \"earning-account\": \"one1x897lk8tks3ty5a93f6782jm4d76vp0twxugj3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2343d95555916cedfca8627d6d5a02a665260657c068a29af628ccf4dce0037296c9b4010dd1a4d8dabe10a7eeedf002\",\n                            \"earning-account\": \"one13fu462suvr2x93dadtsxers9hdq4a89s4hryy0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1fb8c58a2d557f659cc11f423df5efd7eb9e7160b3d77425dcfb650a5714c640aa3997e548462c82fd65a122399f040d\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"89695d68aabfbf87fd32eb2fa5c41308fd1d1a0132e45e1cc8e1e7fc837cd7da50127fe5672c1274efb00142a9a9d186\",\n                            \"earning-account\": \"one138znnmggmg374yqf9k5rgayvfs2u2ggd7tqh88\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"73e288038128e27b1f3b78352f919f44a6e9015589945f63be8d917734c45470b91e79859ce6487adab956a312ba2281\",\n                            \"earning-account\": \"one1qz7rtkl7x3rm7ys4e43d6rm0jl8ug35970nvex\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6cc7cc110633d7b6d3cdc473cbc85e76af002d9cafb9f015b08943e90426aad96b1dbe1a02b691722b2a6da565b50a0c\",\n                            \"earning-account\": \"one1sx0rs80aqzwkupclgssl5vhhf9nejpyg9k2g92\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"26a1ef0f3477ed61c7b6c9bbfa2057ce289460457e1ea16b9f7c5124ef1abc0269cf126826212cf73624ffbb579d8611\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.002002786247157524\",\n                            \"voting-power-unnormalized\": \"0.006258707022367261\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c64925d32333c570fc42d8d059c8d51c0c6891b7d01949839924b9406af82f3e0c67f7ea8d613013783ef378509ef0d\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001835750691525404\",\n                            \"voting-power-unnormalized\": \"0.005736720911016886\"\n                        },\n                        {\n                            \"bls-public-key\": \"11a4a7b7323dc3e5e6bcf64cd97b65662bdd5cf516ee85dc72647e22f7fb983c08b01906d7e8fa0d9a638bc5d691e711\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001835750691525404\",\n                            \"voting-power-unnormalized\": \"0.005736720911016886\"\n                        },\n                        {\n                            \"bls-public-key\": \"a7fe02c4f789c053f8061cfa72ab6fb41c58eac7bb17c0d1c699e6c49182ef95c0d72a4be51b828870c6b4c279ce9f95\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001789084457928190\",\n                            \"voting-power-unnormalized\": \"0.005590888931025594\"\n                        },\n                        {\n                            \"bls-public-key\": \"5074d8e57293ae73a10ce2f9ebd970872ebe972c377ae8fefd4f29da42d8cd4941c7a27831f7d31e3b7c4881ee31e711\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001789084457928190\",\n                            \"voting-power-unnormalized\": \"0.005590888931025594\"\n                        },\n                        {\n                            \"bls-public-key\": \"9d61af8a2b8526f9761415e0bcaa3ae33f56e03c79610166c67b66384a811799a92853275f9363e37b568f29ecfbf710\",\n                            \"earning-account\": \"one17x66fkapn4z24tw2f8cpyvnc4s8fm5kve3zm2m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"94a9742a5683b6dbf769932494b8ff08d6a7e0a298b2d252ef61079fbedaa1a2f117a4d3bea20b7466c8a30396e7af03\",\n                            \"earning-account\": \"one19yhxw8lvnlwv2anuqt02pu4twswespstver580\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e6ee4dd21bbafeccfd88c393577d15a2c4dc52f2b78e3582038f40b49c2bac84da4c6959f8a0628372a0dcacd592cc85\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.002003081673137236\",\n                            \"voting-power-unnormalized\": \"0.006259630228553863\"\n                        },\n                        {\n                            \"bls-public-key\": \"c4e22e2edf12fc844d1dac366bf591a43d139a74c0c5d32a8995267415d0aa6a29054b557d6a6b5d1726bd8f8c22b395\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"a79b037697b9f7d3c0e0334d9faa249abd3b4f32e525da18cabe275e102869a24f6e6321e3dd9b2347a9591d00d8b70d\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001884236435488433\",\n                            \"voting-power-unnormalized\": \"0.005888238860901352\"\n                        },\n                        {\n                            \"bls-public-key\": \"fad66c30983f8a7e5bccd3ccd237e8443c36fb07f50abfd988793ada2270c1db717a33730a8865ba0da5132f6c15750d\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001873718122112864\",\n                            \"voting-power-unnormalized\": \"0.005855369131602700\"\n                        },\n                        {\n                            \"bls-public-key\": \"4c20bb0b2837e06c60e7a377798987a66f216c6d6c466b31d024d174a120267a65cf91d25308c6d9206bba1a37073b91\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001830309239651507\",\n                            \"voting-power-unnormalized\": \"0.005719716373910959\"\n                        },\n                        {\n                            \"bls-public-key\": \"91ffa107972781b9ed07953c1efeba35d4c25cce2e2dd22bd21ce9c75658dd880e03440006fe1aba9c1d7fcd537f2211\",\n                            \"earning-account\": \"one1tkumu4trrrce6v7gll4wm98hw0nurlcmjahtyq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"be78abe18e82e488afdb76ad93ab5bf7879af26d7100fbcf863a4932da0fa7d635fb92c6e64c6bd6f0516f1d80e72491\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.002003081673137236\",\n                            \"voting-power-unnormalized\": \"0.006259630228553863\"\n                        },\n                        {\n                            \"bls-public-key\": \"3346dc4f8d994567f8635971552ca16645fbf98dcb5f0f021d4d41ce87428d7069440085dca0d9e24c7d3ed07b40bf05\",\n                            \"earning-account\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\",\n                            \"effective-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001938315503159064\",\n                            \"voting-power-unnormalized\": \"0.006057235947372076\"\n                        },\n                        {\n                            \"bls-public-key\": \"ae5a7f0981b71b588df866bbb7457c42549824f8688743038c7c0c8a5a181be0747373d690989c09265d7b4802a6d30d\",\n                            \"earning-account\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                            \"effective-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001812814934944649\",\n                            \"voting-power-unnormalized\": \"0.005665046671702027\"\n                        },\n                        {\n                            \"bls-public-key\": \"88a5216174e026b45a4be63b17ed2c6cb25fa4e41e397b88d765cc49412d9b6c14d0e7138b7cceb0d2f5957d7ba8a305\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001812758619228046\",\n                            \"voting-power-unnormalized\": \"0.005664870685087644\"\n                        },\n                        {\n                            \"bls-public-key\": \"d922b97431f3cc13c74eb2101ad120752bfa3c2a2fe4c9d553094780f02ed9084eaaf9968ee955398646d0fd4ba77384\",\n                            \"earning-account\": \"one1pyffgruqap6uc5c30yuvv92wutzpx42t6a7n46\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"77310a150e5df07db4ceed3daf98967b70b8156beb7c39a046d505bce3620ec048a24903d9a9432724b6327808e66499\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001989624591384244\",\n                            \"voting-power-unnormalized\": \"0.006217576848075763\"\n                        },\n                        {\n                            \"bls-public-key\": \"0643b03e4436172ae33a0bc3bb385152e1493f50475331753bbd58568cce3a334e79b9e4996b469fab2cc274ffc79885\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001835750691525404\",\n                            \"voting-power-unnormalized\": \"0.005736720911016886\"\n                        },\n                        {\n                            \"bls-public-key\": \"10ad4173cef1909c35ce7464816b9f6809e336e8b70d92bca64b11311722bcbf33b9578a60e96d305b3a9f013c297c8d\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001835750691525404\",\n                            \"voting-power-unnormalized\": \"0.005736720911016886\"\n                        },\n                        {\n                            \"bls-public-key\": \"fe809303969f91a644580f1515e6d3029802c3a964a5eb6413ec2a72c1e17c70c795ae72d8647af9aa68538b368ac009\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001822270909657323\",\n                            \"voting-power-unnormalized\": \"0.005694596592679134\"\n                        },\n                        {\n                            \"bls-public-key\": \"8d52d8d24204859abbc0bd68594d88745b2cbb0e9fb892adbf6a356b0268e8e776016fa8337eec989ccf854d9067f799\",\n                            \"earning-account\": \"one162qad6qul594runfeuk7t3vdayvkexnvzph45m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c7f6d67cd32103215bdeb574bac7576f553a9dd3028afd138dd8627d200b8c3b09c34e0b2178d3bb85d1ff13bcf30919\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001830309239651507\",\n                            \"voting-power-unnormalized\": \"0.005719716373910959\"\n                        },\n                        {\n                            \"bls-public-key\": \"a84342997e747ed6aad830ebac6caf7abd628e6e7dcd2b9615a56c3a98c0f05c3846c79ecf6aa84e41790bf0f99c558b\",\n                            \"earning-account\": \"one1d7gueevf4q3k46qnt0tj8rdca2vmzqu6zkp7wt\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"979bee891bb0bef898c6957a402d8c84f9db47881a266d77a60c006c9ed2b9bd6aafef1b6a608fe73258061b3fcc3a05\",\n                            \"earning-account\": \"one17qzuw6l7m8tw8k902m05egddcuajcqkd2ge4xh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a99e95e5d0dd8e9555684df0676c42bcd16a4a593d71bffa53e19c7beda44673b6b401596c477e341e072f9e1792a499\",\n                            \"earning-account\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"a2526ddd0b30d2daff78d2242eff48f8c56ae572f5170df94b18dc86adf01d8f66ab3b6a2e834a3fc9e62b2420e79285\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"f41c4e124f7d78ca0c6205f2ab45fa0d5d96944623c1c376cf86aab07ca1b4b14238121d0850a951c74907d23c25af05\",\n                            \"earning-account\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\",\n                            \"effective-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001922028533919892\",\n                            \"voting-power-unnormalized\": \"0.006006339168499664\"\n                        },\n                        {\n                            \"bls-public-key\": \"d587813837471e974a68fd764127da54e9828e387fdef6ea41e0e8118bbd3083b5cbed568007b99a1c583d470eb58001\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"voting-power-%\": \"0.001901085030601973\",\n                            \"voting-power-unnormalized\": \"0.005940890720631167\"\n                        },\n                        {\n                            \"bls-public-key\": \"a1df3858018981dbb31a0df7025cae7d6ef014a4c65ee46bc926ed6d7f277332b4f051413ce2fe52416de3b76e68b513\",\n                            \"earning-account\": \"one1xklewq75gd387vqlld6qalcn9x8xyx9p5r3s7h\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"672ff818fb0cdd96aa62ca11bb20b5b3b178e4990f68733eadabba040233de25ffc56ccd073cbe58fcaa7b3f295ef381\",\n                            \"earning-account\": \"one168rzn68g9k6lc4kq5gpt233m6t6tmcs66sqy7w\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"17edd1db18446e06a591e5d213c6727f2da5a137e1378ad34d4c91264013aeadda5da4bc424c0ea6cfe9f19195eb6393\",\n                            \"earning-account\": \"one1mag8nkvdaau5epkwrks0zedsnxatdgq4equ7sr\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d87d9546bb76785a32e2f533c3fc83157ac77d2e6950f5f6574e0cd1eca05c0102b98af4be96ef5838aaba5bdbac0299\",\n                            \"earning-account\": \"one1vz5d0gutlv6a42tsg8luf9e9aghx65aqa08zfa\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"61c835bed899c970e375f6ce1e1b29783294a386b262efacbb46c69306f345815a6046507b20f301c1438402e5929701\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002125892727768964\",\n                            \"voting-power-unnormalized\": \"0.006643414774278012\"\n                        },\n                        {\n                            \"bls-public-key\": \"ebc506a607d843521bc0362c74495ba7166894a7fd1d8bdb2858783b0655f4b542e54b46820ee504a97491a35a354e19\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002094099892464031\",\n                            \"voting-power-unnormalized\": \"0.006544062163950097\"\n                        },\n                        {\n                            \"bls-public-key\": \"7335f5c266cc3d4223004af9cf13ad41bb69a7748359ea115e58ace47ccfae64a2e9d2e9e6e9e06a2f5c78465f8a2489\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001873718122112864\",\n                            \"voting-power-unnormalized\": \"0.005855369131602700\"\n                        },\n                        {\n                            \"bls-public-key\": \"1181a673448c0b135574063249f0754b9a521c31d5955441bd975f33291c214731c57308176877af57e801d3433b9409\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001812758619228046\",\n                            \"voting-power-unnormalized\": \"0.005664870685087644\"\n                        },\n                        {\n                            \"bls-public-key\": \"1d6f1f85f26322febbf7a4e247fc5eb596c6dbc423b189882764aed458ff331f9039f83faa336c0e8d62cb48b1fad905\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002125892727768964\",\n                            \"voting-power-unnormalized\": \"0.006643414774278012\"\n                        },\n                        {\n                            \"bls-public-key\": \"887dd858614da4b6f81b3f5039334be0fc7efba7cd2ec3f9f2cc070df734b09b4889092bb0097beafafa581361bbb88d\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001941753080724479\",\n                            \"voting-power-unnormalized\": \"0.006067978377263998\"\n                        },\n                        {\n                            \"bls-public-key\": \"0664f95271d09374c07331aaf2367d6710785952b1ad09153eb50148669c2f8fdd812697629e9c1bcc0fbb20969eb98d\",\n                            \"earning-account\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"12eceb4aaece26636d9e6f9fe9e5aa8759ea54d07d0430040aa13f49c8a169f1074233facf60f4f2092a087390813911\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.002002786247157524\",\n                            \"voting-power-unnormalized\": \"0.006258707022367261\"\n                        },\n                        {\n                            \"bls-public-key\": \"4433b28696fe69b4bc8c10ff24e0f1ba918f526ed9f3b9e90c616305d7c35038be656936ffe9186c009bead57cae9509\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"741e4a76d974539212cf368946f63564fcac80c58422bdab9061e60974561377fa6edcaec9b638b4d5e8dd5797d9eb8e\",\n                            \"earning-account\": \"one1fr3vgh7gss92d4yv8rzkjfpkdsahufhk6mmyaz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"413ef5bc7ce1ebaf352011ba39106d8fe63b181462b49978649425a95f563e0412ea0a48a5dddd4ba2d6135375a36999\",\n                            \"earning-account\": \"one1427qn37jngpu78lrdaw5e0q923jjcjkcra3t84\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8190461893344000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"fd77e1e3b2db565623d986fc29ae46a620d4e945455cf4ad2a383e30c61aa95c851fbf2f8e774f732dd654de5dc79f8d\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002094099892464031\",\n                            \"voting-power-unnormalized\": \"0.006544062163950097\"\n                        },\n                        {\n                            \"bls-public-key\": \"277845856fdaa0ab4293ab18e2e8dc43edc5163666025eba00a9fd5c88a3d48b39eada8a9ca14d2c6ab6ee34179d4499\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.002002786247157524\",\n                            \"voting-power-unnormalized\": \"0.006258707022367261\"\n                        },\n                        {\n                            \"bls-public-key\": \"7b7a755f65c51a28957d3143b1d02e924675ad90b8474066f8013f324a3eaaef1654b6d87e8c1ebdbc022d0ebef46d15\",\n                            \"earning-account\": \"one10ucm2t8zpemv6r6v0deka86ztvzvxld5qcuu2n\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"85f2366637f19043d5ce7f95a5b29c3a80661d07fa6896e183e6c715d567d546729691839bf7285f2b01089266fac40d\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002125892727768964\",\n                            \"voting-power-unnormalized\": \"0.006643414774278012\"\n                        },\n                        {\n                            \"bls-public-key\": \"d960c67e552dc2c73ee0679cbd3bf501704a001fe5b14ff565d4abc820fe433856f4cacd605e89670dd418d9db160c91\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"d509600371b0ffb4cc3d32ff8fe7bf6f73cb15c60f1dfb9c89b72b0e78bc791680fee1dceecc092940079155776f060d\",\n                            \"earning-account\": \"one10qynxfuq4cr9pfmwaf7aej89p3q943kymd23j9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b8ee5acf7daf413625230da44a86a8a111d6e8adec486afe684bced0967134bb8f920bb2efd8481c5e8c1f2413a79d85\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"a19ebc874d122fcdd3e809f5e2d08317f96093d96ff401e7a7648641e8ea290539095b8963f67792e01766dc0c82c995\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001941753080724479\",\n                            \"voting-power-unnormalized\": \"0.006067978377263998\"\n                        },\n                        {\n                            \"bls-public-key\": \"17e032d34402caefd647ed2779d1c94aa2a0f164682b5a050000bce0f77a96b59de9e25c9cdfd4e67e6a28d81703df0d\",\n                            \"earning-account\": \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7747952004070000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"1958891e8ab1ec4e2c528f5a89310cec5d52282c313765d256954b20568683660deb834b291ad603cc564fd1cd6af099\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002125892727768964\",\n                            \"voting-power-unnormalized\": \"0.006643414774278012\"\n                        },\n                        {\n                            \"bls-public-key\": \"77ebe15da9054374ec1614ae5aa40acfde825e2b64a6e3f1e0522db9e33f398c8a33ef8a982f3743dfabe4130c22a319\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"e5ea8826643e9962b21abcbf9ee087137ec336a8828600726fd1acce369417a40798b0c52f0cd18d21200768e793aa09\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001830309239651507\",\n                            \"voting-power-unnormalized\": \"0.005719716373910959\"\n                        },\n                        {\n                            \"bls-public-key\": \"f1558e3fff2d89c37acec3d055bf0131c864fb222574bef27ca0af13dd3fd73173d8e818d842b117f5c6d5bcd545250d\",\n                            \"earning-account\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                            \"effective-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001812814934944649\",\n                            \"voting-power-unnormalized\": \"0.005665046671702027\"\n                        },\n                        {\n                            \"bls-public-key\": \"d5e71c145152c7a53ffe5090fdd5dbf8595428053d8e85f858c2d831926a933e2be76d86aa8ca7feb2146c3a6c27668e\",\n                            \"earning-account\": \"one1267mpm2mtyrf4nfwuw4f0dspk7mptk4hurr2fc\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7b02c517a5065f8cf1773a75b23542365330c16e8f97e3a01ee2f293b8c510d2d2b6388e8bb89e7fc1605d6aefd56208\",\n                            \"earning-account\": \"one1j2z57yrqazy3nnuta20daqrced0gfx48cqlhdw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b3a606fe9179eabaf5dcd631178022e49cab8640703e18426d4e580a7b164b7a0b4c6fd1d2982100d71663641be37e90\",\n                            \"earning-account\": \"one1f0qjrnwdg70erc4nwufapcs834aggq2qclrjqr\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"45fc886b512121ed5a00af63f152cc8f341630f2b4803d041794c0422c1b3164953a75be8e6f2b5e0cf7e722b869bd16\",\n                            \"earning-account\": \"one1f0pzlm8x56ps2hpe93mphva5fx2u59sp2v2qaa\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f0760d3ece1c214357937cb93f9081a999bd9adf38445f2bcf5a6f82919d7ed5b803c7863d5776f50486b95618beb615\",\n                            \"earning-account\": \"one1k6asaq4dsz5t7us2s89l7jxxe627c6vfryld83\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"29ed233600cfa276295a61f5161b6a3e9671c3ae711f8454ad2fa32fa4cc11aedd57a5c8ddf61e3070c154d38bea9e95\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002085308663969071\",\n                            \"voting-power-unnormalized\": \"0.006516589574903347\"\n                        },\n                        {\n                            \"bls-public-key\": \"0beeac0101c221ad63ff79835e52dbb4b3679dfe5132917f57480a62e212a672853129bf96a38632b06a2eb47f0c370d\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001835750691525404\",\n                            \"voting-power-unnormalized\": \"0.005736720911016886\"\n                        },\n                        {\n                            \"bls-public-key\": \"c6c008ec354ac776fce5c24ce46d5a9897449b66d91d8bbe2ca0249f1e1fce1a5577cf6f91067b060ee20114ac726297\",\n                            \"earning-account\": \"one1u0kt4ng2x9c0zl0jv57rwj4rvw8fhem2vqksdv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"07f8d68fb254a919dedb2246ab54492dd1e346916d8244b2a12158fa84d2a2d5d680395b9788547628c81a4e64838e11\",\n                            \"earning-account\": \"one1wt9cvaduxh03n8rhw7aqhhx3s2cpffws59xjya\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"33482866000000142857000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"cfda73a32b8d612aeb5b9a4c963086da8daf44ffde42ec73107ab2dff56f1568d2a9d453fb0c6040995317a3a268b78d\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001989624591384244\",\n                            \"voting-power-unnormalized\": \"0.006217576848075763\"\n                        },\n                        {\n                            \"bls-public-key\": \"a6898ff36da875376516e205f687a7590e124337f0cfad968624e05a1a3f472e04ff0da9bded67922a2beee748136b09\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001812758619228046\",\n                            \"voting-power-unnormalized\": \"0.005664870685087644\"\n                        },\n                        {\n                            \"bls-public-key\": \"cc5f9acbe434aacf87b6059571452c558eb8519f1788dbefc8c589c75580a304fe7e4546166cf7712da37d1aa284d215\",\n                            \"earning-account\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                            \"effective-stake\": \"6311311720000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6311311720000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002109341036641401\",\n                            \"voting-power-unnormalized\": \"0.006591690739504378\"\n                        },\n                        {\n                            \"bls-public-key\": \"d3895a8bab3769a8d9bb524b6f824a0a99796ed2bf7ca6487cc524f8ea63ffb0b1f0bd29a194c250a88c5568be459519\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001989624591384244\",\n                            \"voting-power-unnormalized\": \"0.006217576848075763\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d5dcc9d7b3f4c973a3f91e85b77ede091fe3fd2e494920a1c4026355998694864f7731b8c3630379adfbeaa17849a09\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001789084457928190\",\n                            \"voting-power-unnormalized\": \"0.005590888931025594\"\n                        },\n                        {\n                            \"bls-public-key\": \"bfb66b6a1253e006451ae27e77679ede65fadda0c925b4bcc2ede83d5cef94a2b364bd07dda1096772bbd140209f5797\",\n                            \"earning-account\": \"one15yfz8y6ha0xzj4y7668k4nn7frnyz7kqsnzmzm\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5e5bd91b46238b7d3c39aac1dfbf646948b51be978088e520b7dffb360765192df9a33ea2fbf3be40c1d758f069b5c8e\",\n                            \"earning-account\": \"one1lae40kufwqh9pqag4a7ta33zaez0egqzgrufhp\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"eb2bb03ff0a8502769d3718469bdd4acf592d752b372d6c184530bc19c13fc18786d4301a478f0572b22a8e42553f409\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"00f97b06aa7b67db2dbcc7f3ddcb05cfb9e128de3c672597fddd102b827424d183865178dbb8759a098fe8b274cca405\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001835750691525404\",\n                            \"voting-power-unnormalized\": \"0.005736720911016886\"\n                        },\n                        {\n                            \"bls-public-key\": \"5438b795c8652f901b948e886085d6386608875c5e8c1474813c82a6079df3bd8b261f25241c3ed825675f58a1f79491\",\n                            \"earning-account\": \"one1ff0e7furnnhhnkwy3x7dz7uex5v2tn9p25hycw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b22d52ab0730ffb9ed0f63daaa0bbc308d503d38de71dfa2eaaec5db5c794beccdcda7ed8d05e39b37cc8b15fca89998\",\n                            \"earning-account\": \"one1ulf83pajcmmgu8nnzrm46spega9lhrt9jcrsx0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"26c08b3f7c2ee7ca282f1d4c176cce478749f448581a8d2e54a6764ef6e0ba17b216c4bfc2d12739cea1ef3e6d75bb0a\",\n                            \"earning-account\": \"one19mrkhzvp90ujk9qrufn9xt2lq7hvfhwhj958y0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"67efa66594a81a2f82f7197204d3f83fd8f07f21be57293628e134d84d9810f2ff7ec45cb06692a3213865f364016b0d\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"c065cc740976c58af76994c01d91d4c3135897004f86a4178769fd107145ecd27b7ccdb58f9317156a3fd37b9b5dfa01\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001916725477999985\",\n                            \"voting-power-unnormalized\": \"0.005989767118749954\"\n                        },\n                        {\n                            \"bls-public-key\": \"00b6377e7d3eb5c8d7e88fcb82754f45c89e21bc4d65ddf8d68b9d9646f779bcc010318a5f943d57f8cd0e06629e320d\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001757693429492715\",\n                            \"voting-power-unnormalized\": \"0.005492791967164783\"\n                        },\n                        {\n                            \"bls-public-key\": \"5fcd78ea1779519c087c0700a0381e1554505776343ca4a4b706347787b2cabd80e7320c1a6bddbac9f6cfa6ab2f6b92\",\n                            \"earning-account\": \"one1rgylqupcp9u2k973lh6g6ge7gafemvjyqsgdtv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0e52e6dec93e100a4c4efcb969cb1582072b67f23eaca88969578cc11c214f03ae1615c9d7cd02ec9b5200301840c085\",\n                            \"earning-account\": \"one1f7hfpy33pzw27jzpnt77y6ze2srckrhm52j40v\",\n                            \"effective-stake\": \"6275349865654000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6275349865654000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002097322011359325\",\n                            \"voting-power-unnormalized\": \"0.006554131285497892\"\n                        },\n                        {\n                            \"bls-public-key\": \"d72a260c8325571aa5cda49b44d7f5fefe86b22a2d93bcd2dd3958a2ccc391f38babcf9a8a4571517df3307c65378091\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002094099892464031\",\n                            \"voting-power-unnormalized\": \"0.006544062163950097\"\n                        },\n                        {\n                            \"bls-public-key\": \"ab5fa18cfe0e59bcafaf2cbcdecd009b62d77c2b67535fc143714b11ff544f793b0b700e45856e7b1633e380f7dcfa99\",\n                            \"earning-account\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\",\n                            \"effective-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001922028533919892\",\n                            \"voting-power-unnormalized\": \"0.006006339168499664\"\n                        },\n                        {\n                            \"bls-public-key\": \"73c059d291361151de45f3b34c9eba861fbde72cff5a00c24526d017a8414b577ab2b72291eee615501b1e336e54d891\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001812758619228046\",\n                            \"voting-power-unnormalized\": \"0.005664870685087644\"\n                        },\n                        {\n                            \"bls-public-key\": \"f0c2ed95d5f41301a689dcf6a3271bdfbeba45e235e71056c1dc67e0b91eafab85a09333441afdeb3b2acc5a5f984391\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.002003081673137236\",\n                            \"voting-power-unnormalized\": \"0.006259630228553863\"\n                        },\n                        {\n                            \"bls-public-key\": \"836279e16ae9ea5599de33e0f2dcdbf805239ffea6cf47f3d4217036f64a9ba16e6f06438c82c628e16080a540616219\",\n                            \"earning-account\": \"one1kxw3ul6vpq4nup6as5nkemxhjakvlrzg069spp\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"83cc0b3f49335a03945b09a34f54ccd2356f2c985280c61e27732d169d1b394b688178e6a24f81e6646f4dc5e29d6f0d\",\n                            \"earning-account\": \"one17qqnjy4llulpcs3g2uzryhehk5rcyedy4qhet6\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8028991801676366666100000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"701b3e515eec515554ccd182d1654b5b9ab2f2420efcc8c22eb269b409a257ce1e12a3698b0d6955b420ec6dbf642b15\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"voting-power-%\": \"0.001933980883828401\",\n                            \"voting-power-unnormalized\": \"0.006043690261963754\"\n                        },\n                        {\n                            \"bls-public-key\": \"ffc25ae925ff32957eb357fb33f39426d046487fbdc6c104b5ee2c57d967619449c2e15e3785ad58cbaf46adcd068105\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"7ec92621a6cf99e7cf236f9c218a6fc6120696d1dfe8687cfbf5b0d1a0b7785a9c6e7633b0829078d77ceb00b7d8d109\",\n                            \"earning-account\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                            \"effective-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5424082662007333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001812814934944649\",\n                            \"voting-power-unnormalized\": \"0.005665046671702027\"\n                        },\n                        {\n                            \"bls-public-key\": \"56c8ebcce3dcacd9fb4209805b141c52efa79842de0098821b4010e2998b7441690245476874878ef07d8fbed32aa917\",\n                            \"earning-account\": \"one1ud4zg04zmvw9jc6yw9dpes4vpyqcpuh4wvn9sh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"74fde419eb7729ef9ed6b6a553ad11aa6d07e29f57813d99fffc298d9a629c23293707ddd021d54c17bf579c035eb103\",\n                            \"earning-account\": \"one1t488r3xlwunzxstpst3d0a6qh6xrzuykk9c8hx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"070700a3b90725d43e4105f4dd9fb0b653e6154af81493aec48330c234067cae6ca465b97c2e30d3f9085660c74bc08e\",\n                            \"earning-account\": \"one1lk46twyvhk7ck30994vnwflwl59tk5ksdxulzy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"248288b3a44b0775da68d6cebd4fdafb45cc8e7e4b90606c0ce174b09c941fec361b61935aa77746a98eeafe11b81689\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"e3750661e4996422239dbdc369793e3cd248c6f4ad54f17145a5396347af67abc8fac82a5e51a45055b483874b9ac691\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001822270909657323\",\n                            \"voting-power-unnormalized\": \"0.005694596592679134\"\n                        },\n                        {\n                            \"bls-public-key\": \"62a077a367af05574d7a380c6ad258c888a7266a2127ea68a39321753650a05046f1e408281e19ffe38d9a6129972895\",\n                            \"earning-account\": \"one1ql3w33ys0u80r938y66sndl9z7upkde5m99agx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1d8eadb7653f29928ba01d8ddd83fef588019d1ee125d1ee9d4365c4077d089a7fe9018d32d6af0a86a75a8f452d6b05\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002094099892464031\",\n                            \"voting-power-unnormalized\": \"0.006544062163950097\"\n                        },\n                        {\n                            \"bls-public-key\": \"1a2544fb2c0683ccf74e677b7d1e6318f3e137a84f6071006e2af75b750c2bfad52e3c6433bae3dbb5206488c796cc14\",\n                            \"earning-account\": \"one1zf7efk3w5dae98msd4uvk9vs2er5urvgcsjpwh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"274750b387926a11fb0312259c6ed9918f40083573cd2be593eedafc8773a081126906ec4926e9a60bbe1570bd300d80\",\n                            \"earning-account\": \"one1p720ps3pl5y9jg4tk2peehjhapdfyn9z6pf9rn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a48c5f98e7060f9c2cd0e95efa6047ce20771ce99041466afc3e417c0c9aa22ad072af95418529e9406fc590c55f0219\",\n                            \"earning-account\": \"one1t3tex27l80cs4eltq5t7wymcxwwct6xxuyf7w4\",\n                            \"effective-stake\": \"6125281242565200000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6125281242565200000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002047166684061773\",\n                            \"voting-power-unnormalized\": \"0.006397395887693042\"\n                        },\n                        {\n                            \"bls-public-key\": \"92c7c513efc442974e784863a6e1037601802275094b907ecebfb72a2ab915cc5a3c1b599f1b50d0433211552d0c6492\",\n                            \"earning-account\": \"one1r4g3s4x3npuufc40vdd43teu0r3fepzsesnp8k\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"33cd7292140a550b203328ebe44e19cd50ec9114c52ba2cfb94a302039e3526580c4d3a9f8b8d5f931ef66eb4c66c013\",\n                            \"earning-account\": \"one1u27tstxep9ntkaz92y92mxauy06y2kv7lp0ve4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"267f3689f881784817cf6878688ad0c18b17f086f79a21f0410c57740fb73069b9a7a3a27ece051522302e114058320d\",\n                            \"earning-account\": \"one1xevk8k8rnlhxwkh5xf2ghk92tr6pans0xvk3re\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"fe51bbc6b3565fcdabea0ae46ac18fcf3a98413bfa3b7e24f676d16980e26d33de4d567808e897b874ad037b66ce7883\",\n                            \"earning-account\": \"one1e4t557ajgulyz328cdezladvctrwk80srrursl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"98168c8d350da6d8e22e57f5d2613fc9ee7a37c4d7bdacf45e3e2997a5c79fd3ff03c40266afbc5feb03554f9ae7b716\",\n                            \"earning-account\": \"one1paflmvga4ymfmkzqzjjdm7pzz6l8tvc52mv7mp\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e43d5ed52f2e09eb88604874f5ed83f7e9b480f78047926d53c98831f090144f26be7587586c6dcb4139b29b7f9bce0b\",\n                            \"earning-account\": \"one14t98zuacc6jgvj2nh06shfgl73l59cmu6pvy45\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b06e9dd188cccf5bbad858cae1fc63fe55bb92103dd7aca9622f8f28568bc74b498ce306dc5f0dc5c09a0914e1e20a91\",\n                            \"earning-account\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\",\n                            \"effective-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001938315503159064\",\n                            \"voting-power-unnormalized\": \"0.006057235947372076\"\n                        },\n                        {\n                            \"bls-public-key\": \"22efab66186b73cf535e8fe03c8ef339facb91c8ba65624d91957024cdd90e1e073d5793f0ea17f15d7a9c00945a0d0d\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001916725477999985\",\n                            \"voting-power-unnormalized\": \"0.005989767118749954\"\n                        },\n                        {\n                            \"bls-public-key\": \"8047e6aae13b6c4cba7707529d32ffd66e935fe0a624a0b9b744898dcf5e8ea84877f1809cad5d7d9e5dd5eba2ef6189\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001830309239651507\",\n                            \"voting-power-unnormalized\": \"0.005719716373910959\"\n                        },\n                        {\n                            \"bls-public-key\": \"87970ebfed4e6e27cc7b546537c4de38248d985918c6576b6559784fe6ac02a6841bf856163635e6e93f8a476b924c85\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"22ef49408747a9553e4a3f77832a15aba9294f8ff22ac9566826b384ef1c2b4eeafc791c19f729393f4a1a08190f3d19\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"b6cea881ce7ecd6efd223874e509647454ce2c96ddd25955bb7e00e9e72cde34a3f31e66fb61c97003f60d261298d191\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001884236435488433\",\n                            \"voting-power-unnormalized\": \"0.005888238860901352\"\n                        },\n                        {\n                            \"bls-public-key\": \"5d0f9e2e4b97dd567bfb5e486d4d32303eff1bf36a1b484dbb5a499c83e85d6c3656fe3a3a56187e032de612355e9419\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001789084457928190\",\n                            \"voting-power-unnormalized\": \"0.005590888931025594\"\n                        },\n                        {\n                            \"bls-public-key\": \"579684aa6f2f0ddc0ecbc82dc2943aaeeed612367f9c88dd44c920ce09b300d85c88723c05a1f24cbe361fd683e9da02\",\n                            \"earning-account\": \"one1t5xlzlx5sw9zs0jpzpxstdmv8d4k0dt64v70z5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9453f11dd452d9cd2c0bc2c5bf272d4ffabb0f9f2605955f7f6e5dd5028f91c4fd594c15360f9477a853bc0f5f8dee8f\",\n                            \"earning-account\": \"one1fu2mda5qe5rc0vmcamgmwpwe9uh375kr5wtjm0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1fbbb30e639c6fcecf5fbc428f2aed8e3425a52ea6353221bc12d2a68de711f3c84788f2ba20e84d8f2f34fea043e519\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002094099892464031\",\n                            \"voting-power-unnormalized\": \"0.006544062163950097\"\n                        },\n                        {\n                            \"bls-public-key\": \"044676e308214dd178c20ef48b332f70ab7cb4c0f6c489665dcdfcb73717b22ab8ef5806f0f81e01c8b3e63e10ab020d\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002085308663969071\",\n                            \"voting-power-unnormalized\": \"0.006516589574903347\"\n                        },\n                        {\n                            \"bls-public-key\": \"d7f3aedc704744bbe78a2e85068c2307e6c3c7a3b8bc6495a1a39dd4f2dc503170b3d0e4cb40943d41fa8e795a363e85\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001830309239651507\",\n                            \"voting-power-unnormalized\": \"0.005719716373910959\"\n                        },\n                        {\n                            \"bls-public-key\": \"743fdce65c15a85da507535ceeeb2ddea98931dd6afa2d748e742622710d95094bb4c6157eb65dfc9c1c1d550d360911\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001873718122112864\",\n                            \"voting-power-unnormalized\": \"0.005855369131602700\"\n                        },\n                        {\n                            \"bls-public-key\": \"a0d453943f069eb6dc3cdecf5c96783d2076d81ffb995251d19387bdf48423035801f1229792feebd381a1d25f91f88e\",\n                            \"earning-account\": \"one1x24etmqfva9f2m39hljmlx2sumvh920q7lw5dy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2dac109932443061c99674e0f25a2f2f091e60ac50904b8ceeaed85a014adae977a943e2a91814c40b0aec2d55a09180\",\n                            \"earning-account\": \"one1ehes8t79lrc7sqagsjrv28e29xlzkmelax7zkt\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ce157d08213d5480ba16234419b37271cc4febb02a99271c32a6f7704ad614ba61e1f971513822d5971873c668486299\",\n                            \"earning-account\": \"one17qqnjy4llulpcs3g2uzryhehk5rcyedy4qhet6\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8028991801676366666100000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"0a96b4332a7f3973f7693a2f6a80755981adb090a25200a4c67d231c5490af2b66e4ed5edd520c8b096bb3b65b121315\",\n                            \"earning-account\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7749703184439000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"7fc4ee1eaa81a6287c6d9d94b13c0f8f6c5ef4da02a44905220a57e2dadba6a787cca7c0804c760247458c0835f28681\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"3ad8a62ae7c504280bfc99ed88a3e35f3e490e9c118255d2ce0f617ab003ee5eb557c23fde5c632bf80ac3963923c20d\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.002002786247157524\",\n                            \"voting-power-unnormalized\": \"0.006258707022367261\"\n                        },\n                        {\n                            \"bls-public-key\": \"fab871dc783e065e26ac13a8a5576418d714926d83325d8f8c72e975cd74f894b00a31ff18c0c7d20aa094dac1006d01\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"e40fac4db93914df760d92227beef9208d26b2dced6906093acc740cd0dc79ca71e7d7266394c84c274aa97f86b6308d\",\n                            \"earning-account\": \"one1zg3vxjv5kgv86pvg85vvgk8arxawzhas62ataw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ebd22515655a3ef506c68badb47d8a8271624941d92c0258e22796261ba89c0fe5528f1484ac85a2a91f2bcedbae7209\",\n                            \"earning-account\": \"one1zu69u7qt5uquh2mgl2pjrspvv4rsn7qnsq7wdp\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b11978de3a5edc73d6c70a6fe66d8c0cd48179ef58c43ac9eed7bff1b7143d720f5e7fa8672e859faaf2f86ec6a53389\",\n                            \"earning-account\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"278993988a8c07ffac9d0244c59f8b8c7a3f003dcf2d91d11856df6d6aef44f5289aad2cadb863bf6493322de4e9c019\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002085308663969071\",\n                            \"voting-power-unnormalized\": \"0.006516589574903347\"\n                        },\n                        {\n                            \"bls-public-key\": \"2a2091d221e02a0982a4c4501f94d88980ccff0a447b3d47d0f78aa1e77504daca95cc35698ceaa1c984b819af5a160d\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001822270909657323\",\n                            \"voting-power-unnormalized\": \"0.005694596592679134\"\n                        },\n                        {\n                            \"bls-public-key\": \"81a756857f00c78b7d6299984c482d6b380afaddf60c95f55de354e3e755ed2b8bdab91fb8baefe4a5c36dd3c2bbd78b\",\n                            \"earning-account\": \"one1yr623algghp3gm6vjrg9vfh9mtmqkfc5e9zply\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"14cf9ffa4fc6279849ee3c26fc6028a4d455df52b9431d7fea61064c37ab6b76ef233c596deb3c414c136fa0c217e891\",\n                            \"earning-account\": \"one14z6m6u4gp6xaurgrnnmxx6h7lacz3458sssnkm\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2561bd527a78d0fce8913e83f126e9fb21d1fb5a9f2df85304d03cd3c02fd4c1bd96c52dc8e47fd85dbc09b6022d4c05\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"997e1cdb546c1050f44d642ab9a137349b66054e588a38e6700cc440eb7106e62951108f55e357e75af7ccb45d56b795\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5953110845459918187800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001989624591384244\",\n                            \"voting-power-unnormalized\": \"0.006217576848075763\"\n                        },\n                        {\n                            \"bls-public-key\": \"aed665af6870561fcb0054832e35fa773a2d8b82b6ed7bed0500c5e7c1015a5a6325042d5e8ef954ad5d45c467055601\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"bd2701b5690c0dc0f98308c62cc9fe3327fb1d9b4f18b9252d6d755930e111a8d75cc2f8cc9c47794f40970721c65585\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"15c99e1fc798e09fc83add271955e04b8d9e21628ec091a1ad7cd128a6a406852526196e4b64d7a9345b17c1f139bd91\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"9f4ef042e95194dcdbef69f586fed7e341d81cd7f2b78e342fa045017ac93a1dfcd6c5bcfa5af84a46b2a6eafcc76701\",\n                            \"earning-account\": \"one1z8v8nr29qthr74390rlk57drz0v4zrx79w20ve\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"61d3f282094624c95876b1828649dd4cbe80db24e9f94e8421b9f1c466c11416a624961a7a5d2e89f49db51e34676f09\",\n                            \"earning-account\": \"one1rqc0529g9amtr5jtgpl8f4cdrg9u0qgfv3yq7f\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9adf49ac1fb43ddbcc28d9a2e4fab7519504db9df44ee2b3d4d2a8a157d32f90d06e501cce9f449fcc771900a7ec9711\",\n                            \"earning-account\": \"one18h6suyhvqwr7lcf3s6j3csfgnc5sj2vh252f7p\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"be33e190368b26a8dc0d5148ed87cafad7f11bcd9405f542665f97a30859bb9c8944fa91318e3ac4e2094f383e7e9a0d\",\n                            \"earning-account\": \"one1kjw36799v7jnggvy63kv3x6ttfek047qwplltl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"880106b3aa920518e46ad26ee3a13c7a13426235f3d5ded0c19f75e113628d1807bfd9d8cc614e114dab51a51c9f3719\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001812758619228046\",\n                            \"voting-power-unnormalized\": \"0.005664870685087644\"\n                        },\n                        {\n                            \"bls-public-key\": \"16a91fdeac0c45f45df272ce980612f6650141bf25a54d2f95ca5a1dc940bfc617c203a9b3c1a1102333992239b16111\",\n                            \"earning-account\": \"one1yr23uytpqg7y3fxqvhhy4207g8ncadkercfk4d\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"771871f3e2d5b4be1a681759184a3c8465b14b377c3b214b5235609405775534a42603d18a7408c81b6129d6d960e50f\",\n                            \"earning-account\": \"one1z4gpwvx68ct5z3n6xffj8zhw504kvyucs26wa3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6b922b2188ab7cf777e66f4447c18dc9d733606a7c1c5a50f61f528a12dc461e2db1e47e9af78d0a2446ed2007a6de8a\",\n                            \"earning-account\": \"one19khjzk9230e3c8rcshzuzt7emw94sh9902kl5m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"cb053feeacdb08786c04fd4b31e621a929f16fdebd6e2e8ea5687deb6cc756a07e511d8c46ce6cf9d86bee03f4d0aa91\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"voting-power-%\": \"0.001901085030601973\",\n                            \"voting-power-unnormalized\": \"0.005940890720631167\"\n                        },\n                        {\n                            \"bls-public-key\": \"575fa22442d33042bee0760b72b2cdc4c9d8f81164a19a190d9923bcfffa750c8e7d10c1efd34553444020e76105e585\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001830309239651507\",\n                            \"voting-power-unnormalized\": \"0.005719716373910959\"\n                        },\n                        {\n                            \"bls-public-key\": \"5b98ca41ddba38de2d7b3e5a227d40df268f1121e1653cd3896c3f7719db364fa4c8383e1a30ef183066dfcbb1261492\",\n                            \"earning-account\": \"one1962lp4zkn9nafqghz2sdezjlwywr4a83c5s37g\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"745a1477d0a8c211d6ec61a01590616dbe82a80bd3eb4849e3c9a2602602fa8e24c6ef84e1b1fb5c2b7fb3f0a5a3a58c\",\n                            \"earning-account\": \"one1f6zyrc967f5069qnw4dd4su0jzxnx7nkddcu3k\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d5351b8c815a3d89685a82ee7173f2759ccadc9fc2faed0b9b0b4f63c7b9021551d1cc78f7ec0aba62e2e577e8aa68d\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        },\n                        {\n                            \"bls-public-key\": \"f8162589f9d7075f720e92448b7ba37068d47c55445916a7d7ea87678e1e047de12acf4126eac6b740fdd26a0c25a00d\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001944304459010495\",\n                            \"voting-power-unnormalized\": \"0.006075951434407798\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d668e1c2ac9bfb632ceb654042eee79ff927de2b290440b0c55d8b323130b911caa2599772f69d2c0d823ac2d6d2a11\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001792533265315788\",\n                            \"voting-power-unnormalized\": \"0.005601666454111838\"\n                        },\n                        {\n                            \"bls-public-key\": \"852d3b996add6a693b2ddccf23b8fb28f6b21be416838752e490bb90ae35f868a945bbef166a9d9776a7674624e69d83\",\n                            \"earning-account\": \"one15ewlqsk0gt4ekwy9fdr48v7nph5r3dxekyl7ek\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9f68854a0d27f0af2bfc447cd0cc724857ee90b10fe668e8bbadbbd81a6051f593813f15533004a76c2a0ccb25306911\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002094099892464031\",\n                            \"voting-power-unnormalized\": \"0.006544062163950097\"\n                        },\n                        {\n                            \"bls-public-key\": \"e9af74da3a50f586467aac3282102450d7e10e7aa73e5f1fbeec7d89d9512a8047aacb68ab54e47da59b99bfef3ce491\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"voting-power-%\": \"0.001901085030601973\",\n                            \"voting-power-unnormalized\": \"0.005940890720631167\"\n                        },\n                        {\n                            \"bls-public-key\": \"1d03e4de8ddd3fcdfaed44ef2123bb4d8328e6befde01b2796628a0a2bd85e8845cc50be1b3666ebe9b614c105310182\",\n                            \"earning-account\": \"one1zjy35mzrfczelpz63cnp9uzsh0hdlrdhlap082\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"91fe8bdee2c777922a33cf5d701c7349697d80049037e130eec2ab75664cd63292d67d264519cf18e4d24a7151858113\",\n                            \"earning-account\": \"one1jfjfp656k9gya46p5wlpfpgck0hduqkw8qph84\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"32bbd21526b10c332d5f6df253597a36dd134e6f29b5d3388a75d454a9aa553872dc8ba64b0e34428babccf0a67fd713\",\n                            \"earning-account\": \"one15qj8q6ehpalzpdglem5pshc5nns0fpjn52y7fv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"985e263ed18e57aed7913bbb9d6b2dc1e06e27a7cdb1e44b16128068be1f3e3b79338043a33629bbb97dac2ab622c391\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.002002786247157524\",\n                            \"voting-power-unnormalized\": \"0.006258707022367261\"\n                        },\n                        {\n                            \"bls-public-key\": \"f8229098ef64c6412a05623bc9bbe1a8d5788d992f411378add8201da818b0339b642c06b83494cd804fcafb1d365315\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001941753080724479\",\n                            \"voting-power-unnormalized\": \"0.006067978377263998\"\n                        },\n                        {\n                            \"bls-public-key\": \"551019b5fff1e43c5c969e5459d599c2ffb8d85b358d6a0fc4c9d6b5f884cccd3d474f84be88ef11121c851a08674b14\",\n                            \"earning-account\": \"one1274jyz5qspmjuy8wwrh4s4lga6spumwlul6ufk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f7f8425f0d57c469cfa7dcf2af856792c1ab07e94762de09d53e39b4897e9b75f865be8ffc2f2bab8c88f177f86f3c01\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002224078016402661\",\n                            \"voting-power-unnormalized\": \"0.006950243801258317\"\n                        }\n                    ],\n                    \"count\": 250,\n                    \"external-validator-slot-count\": 160,\n                    \"hmy-voting-power\": \"0.680000000000000040\",\n                    \"policy\": \"SuperMajorityStake\",\n                    \"staked-voting-power\": \"0.319999999999999960\",\n                    \"total-effective-stake\": \"957464779434500674885242176.668074827611777378\",\n                    \"total-raw-stake\": \"1010199998272525356998015949.395347554884504645\"\n                },\n                \"shard-2\": {\n                    \"committee-members\": [\n                        {\n                            \"bls-public-key\": \"464a3efbcf1790a2649b02101c308dedf6b53f3ab98e794ee7bc6359d23d67e76059fb76c8158f9b474f39fdf1981696\",\n                            \"earning-account\": \"one1qzyy8shzm9ux5w78lz4jtr0paucmxwp9fh3n8n\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"eb37778ff56f77889fba694d66dccfa722f9801b49b9a33cda83367aa04e85aa89c8503f3270022f67ec765ebb552816\",\n                            \"earning-account\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7796224637159500000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"90f954e7e9550b536eee456d491e75fd19d66a5a0e18cc891c6e6c0144db8ef79ce630d4bc3a585aec3fa06b52305c11\",\n                            \"earning-account\": \"one1r63tj5dft2ydd9j72ecy76k7c73svxh8wa8kq2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6542baaddddd181cf1b6f68fa53944bc0f948486f2377e1a2c25be8502d4c5ae3226c073a7bf3d8d33bd06d971281d01\",\n                            \"earning-account\": \"one1ymgdeayg6x8w2wyew3amw8y6vyzr0dskclpdce\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5faf2fca9820ad39e5f5989cb6d08e8b64b7daa22bcf7ba44538f0acc7d9678d5b32950d8d89b58b234d6123b91bd997\",\n                            \"earning-account\": \"one1whczkx4kyyhm7km2vqydcgpmfkefj4guxdy94z\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f4d1ca9f1ecde65af73e44e4ae7912f91ed2aa7ccacdf11a660d172200b06fc509b4f5fb879cb364269a547bf72548e\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001830057591330939\",\n                            \"voting-power-unnormalized\": \"0.005718929972909185\"\n                        },\n                        {\n                            \"bls-public-key\": \"907d2fcf1857be1d1880f86af693e0def624a2d886eb19ab6002e2aa0965a06b0bdcf065ef768da4ff7d0fa5f1977d0a\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001816619613477493\",\n                            \"voting-power-unnormalized\": \"0.005676936292117167\"\n                        },\n                        {\n                            \"bls-public-key\": \"c7aea66f2724a5a618ae2075396e8278c772ab5ad57ecedfd5a425c67e5e0ed940af8f8bbbfdad49abeca9edb8292a0b\",\n                            \"earning-account\": \"one1lqq8gk54sysaf022dd5xr5mk4p4f3f6ns2hnm0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"aa70ed1b13435ae2dcb18c94441aaae8bb6875f82e3b8ac79e0b150aa19bd80eff0e645bb7f9c11357f3eec08cbb8b86\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"1efe44ddb21ca28cf2d15e357a0ea292e57bea000981f2f467163030cf70549412c0529a3cf774d9eced7e61526ff402\",\n                            \"earning-account\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                            \"effective-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"voting-power-%\": \"0.001927233835007615\",\n                            \"voting-power-unnormalized\": \"0.006022605734398797\"\n                        },\n                        {\n                            \"bls-public-key\": \"e1cac822f129fe47fb636a0ca3575bf8f979dd5c353abb1a8441a5b5f486be4df286b1b6ef01916734ee2e8f27a45b0e\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001783536080840624\",\n                            \"voting-power-unnormalized\": \"0.005573550252626949\"\n                        },\n                        {\n                            \"bls-public-key\": \"07b329c7c1d2562936c5695bdea948b9a6ba61e574dc170a7ea696b0da2393096e855ed4399782137e8d9ce6b77a2c97\",\n                            \"earning-account\": \"one1hyuj93fj7wlr7j663tf6pm04u4nywqasy8dl88\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2826d70c2bc234515f5212cbe2e0cdc4b49c3f0ae74bc5413085e0e4cdbedca5b067967a8e3f5ec5bd2169aac4b43600\",\n                            \"earning-account\": \"one1l5pjd3rw85x469m4eyp804gj350wsmejn5xhun\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ca5395fd8e6d4fceb979a820a1b6f5fa46248eeaa58719c2a2feb2d28905d4832796dbcf7ca3e11c2e207f79001f9c0c\",\n                            \"earning-account\": \"one1c69epw2x9m5ts8hu6t3agk0wr9u5pjcxyhutzs\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"04cd3f68e6787a9d101509e956ad159e18e5217f116fd2fca3388ff328cbf0db2a70728503ac884f7d63c170d80a958a\",\n                            \"earning-account\": \"one1q7hhwe6a4rxp2aqjql92y2xzrdup8968r740ry\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0b1949442d1bd94f4b48499fd39b9ad218dc8a3bde8760fe61465565642948a13f54fff5ebdb6f8c4a0f492552eb5416\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"202770994a16d8bf6ed5d8c11985302352e5a9739588236c0d4d1a2a99c2dc97a74542b7cd30a7f6515b6e36a44f8c86\",\n                            \"earning-account\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                            \"effective-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5784371585306796610750000.000000000000000000\",\n                            \"voting-power-%\": \"0.001927233835007615\",\n                            \"voting-power-unnormalized\": \"0.006022605734398797\"\n                        },\n                        {\n                            \"bls-public-key\": \"e6d5510db8bbe97101506aac487454f46a554f80c905c6229fffbf917f4c500af372caabb566154d28e51b78b80fc492\",\n                            \"earning-account\": \"one1mrkpczc2xg0528gjmmmxnr8r9gqac7gd0uylu4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"93163dd25502490419d81d1c907c1cf46489ff498aad233e81605e80bd78a054a90ff309ec70f0d21347b8ee04cbc20f\",\n                            \"earning-account\": \"one1tg86xf7ryl4mr0ulw3u5g7fp0ql0nwz5wu9rfx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d8877d886850445bbe2693bc57c0df0fcdaf0c88247d396afc2738d036fb56c4534db9bb3a1dd19dcc6700a07842a987\",\n                            \"earning-account\": \"one10kpdu07vn6y9axvyrrn6wcn3skxhsnm4clqrpg\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9b4f2ed9b5b7046cd635f986add792518994cc162be665802daff25728e505f3e84ee42ca21b966f078427cee00b568e\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"b414dd265101cf32305fdd7ee8eab64cf4c847c4fc38fa23b1ab2621e518577d77b270bf63a1dd254006c5ab6669fa86\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002129667927639073\",\n                            \"voting-power-unnormalized\": \"0.006655212273872103\"\n                        },\n                        {\n                            \"bls-public-key\": \"0e6f1a87d949df686c7fa2c8e7768fe548f5954cd47ed4faa1d17d143b180d531a17832e45e015eb1fd27433c1b7e886\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"35d2d5d9f93c2260e976215313f3221cac528415e61c3c231a1e5e6219f8c6bf65fe482bf1bcb53f013dc92329d51792\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001910781255703400\",\n                            \"voting-power-unnormalized\": \"0.005971191424073126\"\n                        },\n                        {\n                            \"bls-public-key\": \"bf2323360d5a1d35f708b801284f50aa0420f5cda037c9f6a0d903366d5cef68a70df1e8ccb6f212252ab4905ef59794\",\n                            \"earning-account\": \"one1ap5edkh50g8nyjdym0m0482v67hjh8kc6unhc2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6af0e04244cddf4a04257da24ed802fd59ee09fa678335bcfbd80529b588449b649ef0bb45e5797577a79c7ca8450219\",\n                            \"earning-account\": \"one1h6dah902u52jjm6tuatqr69nt6plcs5twhfkzf\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"930db5f31fc1a4d50298d3bfb8799693b856fa2d65c19298a5c0b3d500d7b24d03848a5650f7b2fd069cc8466385b68e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"014aba5f2a6ff7e60a6b05eba5d2b8a8b862e3365bee6fef2f740328ce04a6f8d9effd4356c74f945dcf79feaa960996\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"e2c5dd827855c9cf75c9ae81f6d98f4227bc2069f9d8a047852df975fad9ca36956540557b18b537d37d5b9e50729306\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001867907275871805\",\n                            \"voting-power-unnormalized\": \"0.005837210237099390\"\n                        },\n                        {\n                            \"bls-public-key\": \"e1c465d5d4b654b6d9a4244fe62dc417adbffb1536c6adc179d0d60ab584869ca5c653175ffebd9dda8c374a1a25c90e\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001752242403462100\",\n                            \"voting-power-unnormalized\": \"0.005475757510819061\"\n                        },\n                        {\n                            \"bls-public-key\": \"2f82943dbc8cac77c3697ec7c7eb4da57d8433d1f8261633d9dbc707b2d99b660e1c1740e774fd618e8109f9d21f8f8a\",\n                            \"earning-account\": \"one1e2qtn2fsy7cj4xxeammhhr3aldgtrdd245zyem\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"98ec8e7ba1a44bfaa9051c5dd528d528965ca1ad982a953cba2db9e5ece0eae2719a64dd99572ca6302df2dba3e84906\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001953267251244723\",\n                            \"voting-power-unnormalized\": \"0.006103960160139760\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d1c51044ecda0c4e872d19c3cb00fdac157c0f70460c335e450291c29d3a5ab450dd4a54c7f22996ff0e476fcd2cb12\",\n                            \"earning-account\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                            \"effective-stake\": \"5567984785333250000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5567984785333250000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001855138196577788\",\n                            \"voting-power-unnormalized\": \"0.005797306864305588\"\n                        },\n                        {\n                            \"bls-public-key\": \"ae3b45eb3751d6c357b27561afdbc040d5b9bf5be71e8fe1a71024b58ded6fd52caff5eea9967498ab78abaafa71ca19\",\n                            \"earning-account\": \"one138y824wrjk5sce6myhndaa5yv26vldw8x3rwgv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b922a394cd8aeb54d35f4aa01ec21179a177f4109bb25a2db6ea3164a0276ec28c2dd047ac8ab7f6b35e96420019758e\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"879230eecfe6297b0bd6d2f2dbf23c367b54bfe1ce2fd3591a00820d06c83ee31da6c70560251955ad5e542e16aac38a\",\n                            \"earning-account\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                            \"effective-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"voting-power-%\": \"0.001757583268375647\",\n                            \"voting-power-unnormalized\": \"0.005492447713673898\"\n                        },\n                        {\n                            \"bls-public-key\": \"5f4e20b6ad0cb25c0d2a9eb1b109e8e873b405d6b25960732a28c5af378cac3df86950bd136f622e31f0e5cf76f0130e\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"8fb9c3c23a1e89db55cd54088136fe7d7ef8edfde02783dc05afbb5859013687d16c980acc8192a0386902890cb6f999\",\n                            \"earning-account\": \"one1rq2q0hstj89znrflcl6jr8rqer7dsq8l8xthde\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8133ed48cc607ccfcb890d8780dc8610b038a0e0e09c05f8f61981cc53486ea6672293cb9c249ac86fd2aa50bdc19b12\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001752242403462100\",\n                            \"voting-power-unnormalized\": \"0.005475757510819061\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d14b744ddc346f422d50d9df92e885732fa4963192cec2023390056f04afebe7accb5fdb8a17deeabba46b0d055a802\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001816619613477493\",\n                            \"voting-power-unnormalized\": \"0.005676936292117167\"\n                        },\n                        {\n                            \"bls-public-key\": \"f15d1c1e51c9a9051ebf663171ea304b533ef021b2b954d985d9d5b0bf6d237517936c0d4526e4d124b540995bf98c92\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"a449d0c57160c61d47f57172dd03f8e0a25ef352087e4b822a59a5ee29d2213cef631cf22d29a74f2a703a5ebb92de83\",\n                            \"earning-account\": \"one18x9xm7t59wt20flltj9c8qfqy3c7fgxr7wdysv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"490adcbda4dfceb740486a620ea2d52d57c544b9e3896f5cf522545f02fe0a915637b4ff3ec87497a9f7b92b8ddde10a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"5f4dd3a7989049bc0701bc05e1d8303c0cd2471790505bd361902b6d15e796ff5b21b1aabb4b7f17ff73df6c50f36a82\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.001996575129914970\",\n                            \"voting-power-unnormalized\": \"0.006239297280984282\"\n                        },\n                        {\n                            \"bls-public-key\": \"ede1d8e5ada2b32c7c8f1c2110463a92600a7511eccae25ad656c5e962f7f370ebe013243658ce42e265fc13bede690f\",\n                            \"earning-account\": \"one19ftaccekh3s4nglps7gssjx3alxhk3mgnex630\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"dd16b9e77c883093f9481a84ff96823a5aa4b09f5a0dc6092b8db98ade5302c9b4074c8028f3347dc522c9686592cf02\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001807136822926791\",\n                            \"voting-power-unnormalized\": \"0.005647302571646221\"\n                        },\n                        {\n                            \"bls-public-key\": \"653b5e6c6b33d23b243385ca2b247ed8a9bfc83b71a4f3959d914d7f105f2eed4da6dcabd72f94682889856a9ffb640a\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001910781255703400\",\n                            \"voting-power-unnormalized\": \"0.005971191424073126\"\n                        },\n                        {\n                            \"bls-public-key\": \"038ec53f77c4f8d58a81d9c13cfff5f1f0d57eea309bb0632fe76687a8f663c5ba83faddd23845d20ba25a359dcdf592\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001830057591330939\",\n                            \"voting-power-unnormalized\": \"0.005718929972909185\"\n                        },\n                        {\n                            \"bls-public-key\": \"6f7c7997c84f2332b86966beb38728a5bb7555a3363ed1e65071e941ba44f49b6681e8b9d00bcdd66ddf6eb1f0be6c8e\",\n                            \"earning-account\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8280256500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"8c63077f4197d6de0922c71f237a55c7185fd83a417bcde574a3254dc1b29487283d695e96c1248c9b353e8042da450b\",\n                            \"earning-account\": \"one1sqq8d7zpdypzxsphl67pus82nmkrcrpug4ucah\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"cd9f9bf5715d6c7e6b148914c6e5a6bfa6f09e9881732a521d98b8148a904b58c6d8283fd7826f4c2bf2420d37b64205\",\n                            \"earning-account\": \"one1dsjyp3zq0jcdw88rj80ynzqf7m2suepxhs3hwy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bf8977539a2ad43d42ca73c46e4a363f60dadcbdccf1de105dd3fe06e32f8b95e0fa1c371ca88d96f515a320b7a8598a\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001910781255703400\",\n                            \"voting-power-unnormalized\": \"0.005971191424073126\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c058667ee38145c3f2ab713faca07a06a3f4da7de4834c8c08e49cb85670b0d67c2e3b54e941f708d1b9914efdd2e02\",\n                            \"earning-account\": \"one1v00dn7wm898es7m6wrzjsusw77rnv7tupdn8l2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"804f4659bbd2c3615bb749bdd363395c6ffea3a3bb95364073295585477c17ccb9fdc4b0fb0dc7620a90c71fc4056012\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"bc2dacfaea70130fd69d18c08b691e7a3fccac4835240211f9853aa0bfebcccd325d33904570f22fbaa6c2d7a58ba08e\",\n                            \"earning-account\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                            \"effective-stake\": \"5567984785333250000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5567984785333250000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001855138196577788\",\n                            \"voting-power-unnormalized\": \"0.005797306864305588\"\n                        },\n                        {\n                            \"bls-public-key\": \"4ace32c030558cfea4b215615a2225d379e6a0c3f5c0bdf11a694b88bf7477c308e9617298e6f836853523af63cd6602\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001783536080840624\",\n                            \"voting-power-unnormalized\": \"0.005573550252626949\"\n                        },\n                        {\n                            \"bls-public-key\": \"f80d8e6f125401bc6e6d3798cadf09de5eeba25d35697a3e122bd4b7886f581d4ae496bb6442c18f9e6c3ebbce11e10a\",\n                            \"earning-account\": \"one1h2h7d2s3gfltre5n3xz4lcra8hkt9myjnp9dk3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c80f9cbdd832bdbca834664988b16164ab0f79ecd1b4bb2fc3565993cff1e8905f3ecd4c7deb637b04f3b25e08faaa8e\",\n                            \"earning-account\": \"one1v4rvlaudkxmj6a5kmnqtlqm2e4crh59h67lcw2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"53cb821ec3a3385905be1b2319956f6dbf9d023cc59ef50b6a3c9e88a7779aba506741eebb42eda0ca1a76d86ea4d98e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"c1fdc6946494e5caf6590c04b8e38172b481cdd570b884628dec1a1e4c8a553b697cfa5c6ae678003b6b73e5903d638a\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001816619613477493\",\n                            \"voting-power-unnormalized\": \"0.005676936292117167\"\n                        },\n                        {\n                            \"bls-public-key\": \"8a8baf28a1aa17c58a30a8472ddba616e9b5c37105f2d754530850927722144f4b5b263de9339aa13a07013654559586\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001816619613477493\",\n                            \"voting-power-unnormalized\": \"0.005676936292117167\"\n                        },\n                        {\n                            \"bls-public-key\": \"3faa1e4d144872bbf6d3168aaa8c2d30b000fbd889f943da2a96edc54ee50c08e7208416f494685ba521b50d0295fe06\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001807136822926791\",\n                            \"voting-power-unnormalized\": \"0.005647302571646221\"\n                        },\n                        {\n                            \"bls-public-key\": \"2d6a4c4c21a67c9ed0b729ab12bbdfec058e54348d0721906137afc22f2400958c42793ab7c4dc890f9cf14896ac4082\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001783536080840624\",\n                            \"voting-power-unnormalized\": \"0.005573550252626949\"\n                        },\n                        {\n                            \"bls-public-key\": \"9041f6288833afeca1f71140b578c37ab97b72b0dd090b69ee2a1ffa6d6f82ee55a2c1efcbf02966b2263e64376b380c\",\n                            \"earning-account\": \"one1thtd5cc0gyu0t5rgrnw2tfhuqf2acqdkk5a8pz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"fbef5b00fcc9291ea1601b30e3c1ec30b5bf87aedbaa64118546975a01b28b909f17b11ce59a1471ba0e7a02d6282810\",\n                            \"earning-account\": \"one1c55yz6eeh0zdd28zr06c2tjkqw758t8km8k0tz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"19048be9859cf270ccf888013bba2a1e726a52f6913d8dba9b01c14398a4f7228562281d30440ef6a4ab825a0bb31a14\",\n                            \"earning-account\": \"one14n0geey23eflc5q0x3rv4meh5q8cw9z2qyn7kl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"18caa96991cdfda9ad7f6b95cfe2d77ad3102956e6865a211ae7d751937092f98888938655ce3d0cd238860114a82702\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002119299828004446\",\n                            \"voting-power-unnormalized\": \"0.006622811962513893\"\n                        },\n                        {\n                            \"bls-public-key\": \"892b77f0cdd8f37fe9f57cfedb59d5d93b3a247ef11d1d6e3e7f2a25190be95d84239cfb7507d3bea6e0edde5507e50a\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.001996575129914970\",\n                            \"voting-power-unnormalized\": \"0.006239297280984282\"\n                        },\n                        {\n                            \"bls-public-key\": \"5b13791fa1787deaefb5edaa4c614865660f041ce6f99017bf26b28fe6734b564fcf3f1827706dd11a729fbf58a8780a\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001752242403462100\",\n                            \"voting-power-unnormalized\": \"0.005475757510819061\"\n                        },\n                        {\n                            \"bls-public-key\": \"f4dd8b7c64ed00914ca2a122325ec45e2ff86997f22f533fb8f4fbe974b2db07a88d4ae1cb14713ba18bcd33d0d6d38f\",\n                            \"earning-account\": \"one1uk9ravmvp2teg4euglmfs8vvd538he9tttgveq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"73db00059344d9039cfe25d69d904ba89ab8d468ef9e84d5e046375445ee2b04b48f87588e0d39df69eacc9ea5653016\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"0715a9c2e509c5c48ac7b3e93e97c667d575db56a4dc91920845766372026e83114d9c84f879925223f1115ff6bb638e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"faffff409268a9814259560d6e1172eea22f9a5d0a020cc0a658dd9f142166d63406e6db5d30d31dd3f25c58e6ff2517\",\n                            \"earning-account\": \"one1c9jucpaw607ardwnfm644gkgshqfjggejckd6y\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3f9300b09bbea78a3b8dd80523e895471e6a97131a8e857c39cb3fe5b4f36943dd3f12d1745768a072fd20d80a669c98\",\n                            \"earning-account\": \"one16prsvszmprxxrepxszatjjn4pq42uytwzrmx9e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b92c957e384e890200c59f98f8d0489a9f23a2be148525f20572b2d4d1eeeccdf6190305d6c89536aff695dbd00fdc06\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"f9a835dac43236ded1899257c904da922a9a86242ccced1f782eed8f9df6732c0d44f56280d2ca1689db878c2f14d285\",\n                            \"earning-account\": \"one1xdnm2fj6hyk7e49af2h9dmudkdlta9q354094e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2cf79ace5a9a85483d69f19ebe92c1fed7509fcf528250fd162315586a97149b67159ce4a4332d4dbb72a4c4cdb47482\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001910781255703400\",\n                            \"voting-power-unnormalized\": \"0.005971191424073126\"\n                        },\n                        {\n                            \"bls-public-key\": \"80d7f1ffc547259e1cd13fe62772d151a8d0921f965a05b05dd9730b617e10a116cc054a3bc1a28f851d173d0147220a\",\n                            \"earning-account\": \"one1s2ul88upupj9mz8ep0nm4wfltcgkxw4ehrde37\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3aaa1eb5be574ac38f38da872e8616d95330dddbadb6bbbdd6143d412ada53704da59f9f295c88b7af88a01d9e4b3289\",\n                            \"earning-account\": \"one15u4q72hplc9kjx9uyxmsmqawrh6e2a4k34jzms\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3024268dbe06cc429e5a4407596ee3ae8f675acd0ffbb13563f08136e45df4cf8b67e57a6d8908f52939241e43df0498\",\n                            \"earning-account\": \"one183s00qdh3jqdemt0af5u2rlfnlgj27dqg3vhqh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b1cf54323f6285c959ed261f58b0f452d93659ad7a62e1237c1a66c6ebfc3af6a11e76b1c20f26aa9ca86d01ca57270a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"050569b98c2fe451e981e964c13d65e0b922825d0570c51f2f8883b849c32fbc15415e71045544f803c1286037abbe8e\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001830057591330939\",\n                            \"voting-power-unnormalized\": \"0.005718929972909185\"\n                        },\n                        {\n                            \"bls-public-key\": \"1e1425f1c35c111db2ec31b604fbb33023c3f076cb61cb75790d5252e6b65fb5f6e0e8c737880b5c98f2151ab7add48d\",\n                            \"earning-account\": \"one1e3pmzp5zyf9jnq667ujd9mwx5uk3dh3ga05vqk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"014d802636d36a50a687512b4f81f4d93324518c8099884b90e5467fa3d7f7fd52ed2e65892db70edf6df4a30530a78e\",\n                            \"earning-account\": \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"15537035000000799999000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"55e536cf0cd5c3744e4f728bc84e5d96ddd94db50ce7d245a9b10e2ebc842779cad48a583cbe0f7ecea0053415d1ce82\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"6302b0a03e573ffc8fd6a51ee48f0d1d66d9320a67d40f807469bc6677d678510c8d72fda9cbb170e06a22efe2dc890a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"663d4bc56f2755ca00c8dc7a7802d5913a1b9642b87a34f986e6cd56963c590dbdb4c2fcb1fa0acdc3f0b3f399b04486\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001935731241869940\",\n                            \"voting-power-unnormalized\": \"0.006049160130843564\"\n                        },\n                        {\n                            \"bls-public-key\": \"4af3740a2400c6eabbff5db46e214c6aa6e2c288210cbfbedad40f2672f7359b101fe102f8bb3ab4a4badc4f99f58e92\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001783536080840624\",\n                            \"voting-power-unnormalized\": \"0.005573550252626949\"\n                        },\n                        {\n                            \"bls-public-key\": \"7d701eb6b7d76cba7865372b84a58cb09a50a3182cba2dd92450a9ae446611a85d45cc91065d54a94efd4a9ce3b08907\",\n                            \"earning-account\": \"one1ewgnqhkg6rkzxmtazulj6wgs9mvwhfw2424m50\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ed59468d36e33f0e2cd21951c55e41420a6736d23ef013eb3a39f6b4a9290c6353c0a3ea996bc5ae65bd4a5776f76c96\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"f9ff0de79f286d8d745bad5e763e517ee4f5dbcaeeacecdf8270245f4c036bba6cbb4499b68be0cea7d01fda1ab0008e\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"6c6d16bd9e0e6be6bbaf86aaaa27c072dc1a641adc386f38e6f570479329324a511785d00183de360acf97958717ab86\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"6e04abd18900863d3723722810d82d63a392519f4d8f548fc6b487be1a2fb407026bd866f4b0bf9630f1dcfa068f6704\",\n                            \"earning-account\": \"one1kpywkg7fh2vldanwjh87d9ecte4q38gpmnu0g4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1d920cb4c5c279dc179d39ddeb7d8d4e89f8a375e022a7d68c06e63a10ae460180854054b6c62ff4f99485aa355d0a8a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"1e09f6ede6b7cca5d2c53a2b6de6ea70a8ca1b4d2fbbeb8758c599afd74cfa8964842de85b7b783b7cc86fb6ccb11312\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002064975993420809\",\n                            \"voting-power-unnormalized\": \"0.006453049979440027\"\n                        },\n                        {\n                            \"bls-public-key\": \"89859b63f358079f5283674e8d77c3d8dde1f87d36efd022736ba7bd58b5529fb4e853f3a30e1d27214fbd85a2892789\",\n                            \"earning-account\": \"one1hzh2pax485tukes9kmt80f8ruy8n00u64yrfm3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a48545ef22ee18af83058f25ecf1af2e462895ad50b03f80d3bb3fa3b25614a9056719e1ea4b53d418da492fdb6cc58a\",\n                            \"earning-account\": \"one1un846v4lfr6e6h0l4nh0fg8qgywlrvaezz6hqn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1647af99e7a9c71fdec8f2496deaceb5876814388c4090461de3b28231c242570bb7b5ce551c7f07798f9e6bae7c7b0a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"7bdb0450438e55d56e21e08ce2a881b6fe5cc7c8f3b5b053cde6358af34d36fe53428656ff19a7f7cb757b58ac40f106\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"e18afae1c74f676cf72b8a0f8f3c8fcd87c4ec284b8eb31c70dd9d855bbbae4a736a92e2dc5668201cc9ac2245eb3b02\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"40a3db7ddc08f6ccf6b257cff8537ce629077c922533bf06bd4dbfc02b3d278edcbf77169f4bac31e746c892be307182\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"989fe76334a392542b04726a3f0088a285a6aa44c7868fbd60dd6b32fd9856f81dfacb2dc0fd4dcc2ad0699e2f3ae302\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001953267251244723\",\n                            \"voting-power-unnormalized\": \"0.006103960160139760\"\n                        },\n                        {\n                            \"bls-public-key\": \"efed465dbe488d9664fed0e57f6a8be786c6c26ac36406848eee4dd96ec4d922b9c82a255f981ea8f96763d3bc6e038f\",\n                            \"earning-account\": \"one14yzt0ynfvl4f0gljjjlwgmlcesxeq36aw9uk20\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1c9c5b067ef960dec0ace80c2f56a630d63827b98d29c2a7a564d730e01d31f510802980bc5d291bcb7f4adb799e6f16\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"0e293e1acda56f1c622ed3d99a4d48d53feff6fa834b2fd3f8d32e49aa15f01b4d1e7d8f3e6e0113779a4970b5a01282\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"c86a5171077eed06fd29e5add5561e649f60af1455130d15fecdd2784ba7ed87fb68c4e72ef01f4f64c0c4e51b3e3c86\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001752242403462100\",\n                            \"voting-power-unnormalized\": \"0.005475757510819061\"\n                        },\n                        {\n                            \"bls-public-key\": \"1999921a42476a425c9eba4e2cabee38104281d29cea37449c08a703198b3cdfb4473906f3ed8be332d451e9c9042317\",\n                            \"earning-account\": \"one10t6gdsp736ytpkusc0eng75hts7mhmm6f2gfpy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"42fa89ee6e6296133ac05bbfd8c95976540ef369683864f0aaa3c7f0f5390046d077a3f4156e51654ba8c14234654c12\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002064975993420809\",\n                            \"voting-power-unnormalized\": \"0.006453049979440027\"\n                        },\n                        {\n                            \"bls-public-key\": \"15485b6e8a2a2f5056107cac716bec92c0606d5a10af1352b3ded931d3553b90595afd6c41cd3751c9ec33fb582fd48a\",\n                            \"earning-account\": \"one1cesdr3sq9pfk2jwwxm4a4v6ryq903lk5t3keza\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2f2d2b8fb2bdb66be4b382f8b8cb37f06288a039afda72d37684b69300153916b5e16232440cb510a88c3d41d84f6c82\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002129667927639073\",\n                            \"voting-power-unnormalized\": \"0.006655212273872103\"\n                        },\n                        {\n                            \"bls-public-key\": \"5928b3ae2a2b482b830f1030071a0871f81fb15b2d67ac656e141138b60679454cf9a559f9834d1ae226c8e11ca09786\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001953267251244723\",\n                            \"voting-power-unnormalized\": \"0.006103960160139760\"\n                        },\n                        {\n                            \"bls-public-key\": \"2c0fcb56b8bac1845eaf87d244ea5aa22f5da9fbe62c655a76b16aad6ba8770f56db15faa51dd63d19b5af2f7a7d498c\",\n                            \"earning-account\": \"one19nkvnauqm72nh4rrazqmkvplwc57htynx646r0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"113e67f99f63082b0e21dc9f4b5ceed2d56c053ac33fde30e851fc84ede3331331f361ba13ea7c7855bde7792fd46892\",\n                            \"earning-account\": \"one10jkalqqj4k6t83ppzwm6fp7kln2jstuaafekmu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"640314f1b32d5e0a12d3f5b5879b2283801b55232923c01acff3797d2d61a50350adf7179611f261a1c8ceb179a17393\",\n                            \"earning-account\": \"one109fyjvsgep3wnfafer82zagqy2zwrn44mmz3j4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d08a410da71e4803475e85da2df27e0e6f3c8be47124111dde467c816df5dd54ea7fcd2913cfee4c85b3d7df11de990e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"a7f48834e984de758645585d0a481e32044c9f55bfe70119daa63a1605a1c31f66b9dac575ddb9271d7b85848ef6b812\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001953267251244723\",\n                            \"voting-power-unnormalized\": \"0.006103960160139760\"\n                        },\n                        {\n                            \"bls-public-key\": \"07f91bb48ee0ea1176a9b81ac05172e283bd2123d31f7e0217da201d6e928b2ebdb0be246dae53ebe4455205b169068a\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001935731241869940\",\n                            \"voting-power-unnormalized\": \"0.006049160130843564\"\n                        },\n                        {\n                            \"bls-public-key\": \"ee7f6c0b27b74b5963f10cf0a8ed41dd08df9d415cc3ce829aba9eb73c8fa47a167ffa996eece94c759c4c8014d1900a\",\n                            \"earning-account\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                            \"effective-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"voting-power-%\": \"0.001757583268375647\",\n                            \"voting-power-unnormalized\": \"0.005492447713673898\"\n                        },\n                        {\n                            \"bls-public-key\": \"74a4274fa9f794536921cb84ef4c6644a278a1bb8778da6c6c694aac1c12bc618a78c2eab321662b1a5976339c20c402\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001752242403462100\",\n                            \"voting-power-unnormalized\": \"0.005475757510819061\"\n                        },\n                        {\n                            \"bls-public-key\": \"abb7806e847b46ac4918a2fc5654a19884d487d4668253696f5f29ecffab8bf261bb488af78ac368459e01ecd0de5882\",\n                            \"earning-account\": \"one1gatgnyyv8heemuhtewnd4rq8tu0zjmv8v9awj5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5a76dea3da90cda648ac99912d3ea71f7688341cc6d05c48b91d460c6ce23b58aba59516dd0165af65112b5f63c64e12\",\n                            \"earning-account\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7796224637159500000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"4ff1796bdb8253078163ab11f64186aee7230b682642b0e8eca4c935e7060223084406ce334474b451410131f0120f0a\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001953267251244723\",\n                            \"voting-power-unnormalized\": \"0.006103960160139760\"\n                        },\n                        {\n                            \"bls-public-key\": \"bff7b508f8c1ff32b633cb4585e7fe6fb468acca9b141a87e081fd1a1e6c4b55d1faecc726beb4c6a4b36d0daacb9c8e\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001867907275871805\",\n                            \"voting-power-unnormalized\": \"0.005837210237099390\"\n                        },\n                        {\n                            \"bls-public-key\": \"8c0f977fc49b0b5741c4c4d25c8db148f401c7e14d9bb4b829931418b47349e6079aff8bda5e1e5976fa0c0bf4162802\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001824633014695529\",\n                            \"voting-power-unnormalized\": \"0.005701978170923529\"\n                        },\n                        {\n                            \"bls-public-key\": \"6321797c2ae95f7a42e51d5de9c6d3606961e5bc6fc1e95bc937c351e5a0b23379076fe463284e57d5e6438b751bb898\",\n                            \"earning-account\": \"one1q8xphjw6xk2ckg6k5d9fnx5t73nju7lxjsqsnj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e50d21a3ed5426fcbba8d3868f3ba60326b5c6ef19598b3cb0c7ffc780ffd729dadff51eab93c5c6fb53145569a06991\",\n                            \"earning-account\": \"one1dlg4j5ytf5kqpd0e5cwsjp8qc45zpq2s8pnza3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c900d922cd24922320047bee538daaac2bbae7cafb77bbf6c7b5ee9e58313c1973560148d38a3ec7ea45d8b642381a08\",\n                            \"earning-account\": \"one10zu0an9zrlkku09a2ncnmx0hzu8ur4hu6jmnza\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f8ab84a6a98cb00399aa14938c0ca3ffbf3b83555c21559254e5a96047394cda67d2c97037a2ae1d44d6c32b3666002\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"3d6a5d62a2277cd465c5c7ff4c3927a537903cf58ace18b9bf025351242043bb9ca76084d593993e05de0d079bf9e00e\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001953267251244723\",\n                            \"voting-power-unnormalized\": \"0.006103960160139760\"\n                        },\n                        {\n                            \"bls-public-key\": \"efad1c33a977ab6587fe2b6023a241a4d239128c5d8604e548acb8720d813009a42b0c06f849a9700c7ce84abe11fe02\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001910781255703400\",\n                            \"voting-power-unnormalized\": \"0.005971191424073126\"\n                        },\n                        {\n                            \"bls-public-key\": \"8b15c8ee223f937f7c4f4766d9b328c5bc7737a1ab5fb042995439d50800e880955e43d3700f2d67d3c883484604db95\",\n                            \"earning-account\": \"one10n6twmhntftsarymkvq964hzr990m5sj6km64m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bdcce1a78421fc57cc256bbee3bc81f833ce318600ff326202d318c3267e5457d03c2cc1e06906013f46421f543db68f\",\n                            \"earning-account\": \"one1tvcgqxuzpanv8ngaruc07ard8twtzk03c07tep\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"02546cea8be3aca28538769cebc4d936a8af08660ac3aa1c40221b7676aaeda941668cb4aa2a0412f619215c69963a93\",\n                            \"earning-account\": \"one19pqukwecfnl4udz2t8rlw6qcu90ursyc6y0y3v\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"70a36816c4d0c0b97f352378cc22ff7e0d337322c89962867b5017cb0565197899cc0d4b151985d7ab25e047d8563502\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001752242403462100\",\n                            \"voting-power-unnormalized\": \"0.005475757510819061\"\n                        },\n                        {\n                            \"bls-public-key\": \"d26aba7946b7c6233139c9a3eb59b76f690ae17100b588b7fcf1797b5d6a56194a45d7e1da8452c80b71d454bb7fc906\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001935731241869940\",\n                            \"voting-power-unnormalized\": \"0.006049160130843564\"\n                        },\n                        {\n                            \"bls-public-key\": \"f069e740cf3ee3a8cf7073aac4915b37fb3f111d9112d04762ea560f40f550292ed283201cde7b52f6ca4e2b71791780\",\n                            \"earning-account\": \"one1gxkp9d9cz0fd9x3hq6h9fncmnyve2wqg9gsyeh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6da4c813c6e79b070bab33444cc52cf60fb5b37d943309349f86bafba1cd2f5ae7e1cb070d2428fb327e695051523b0a\",\n                            \"earning-account\": \"one1v28hrtafn3dd2cyqgwd3dzpys7470qknpq4vkz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a96a7c06a48b2b0c0ab2a12b33302e038eb5e3523e8d2ab24b169811219d44d5f41a303733c964f0339fcf261f5ddb07\",\n                            \"earning-account\": \"one1cvnyvtz9cux9m8m3fqxrd0l5qyvf54rk5y74m9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8022b31fa599e1d3449bb5ff31c85d5b021a0743c9e9fa978e523e326dabb2ca18ade21f3452bea1de2d09111a676380\",\n                            \"earning-account\": \"one1e7d8ldtetx3qlehvdrefdws53mfrv3sndqulmn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3013edf854faecf8884d9ec5a250ff31ffc64c8776e43c3cb0b68c44d8b36cbb121962bbfa50d5f25df27aa636fe5c06\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002129667927639073\",\n                            \"voting-power-unnormalized\": \"0.006655212273872103\"\n                        },\n                        {\n                            \"bls-public-key\": \"1a846c0d8c648c4c029093e21d3e5d64179ac94e74b422cbd8a157b760fbbd8b556b0c4cc2eb04f155ff22f38c288b02\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001830057591330939\",\n                            \"voting-power-unnormalized\": \"0.005718929972909185\"\n                        },\n                        {\n                            \"bls-public-key\": \"94a6a13450375d4a08f1b106a746ed837fc2fbe91a914853d64da28191fe321f94e9a0bdf79b06a7fc6a2618004d8f01\",\n                            \"earning-account\": \"one1kldkaew003840u8fyv6mr9nkwj2rvl8c956hc9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0742801de415cfe72c5845ed5992ce4357a287960392cc49bea625a07f6f3539e24526493226975c4f6fbae67aef8209\",\n                            \"earning-account\": \"one1g2tlyy3qf6tvhk7sygrya9xd575wlgy9x5xdly\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"64658387641d11c408de92af2d351d4a7b24890de71ae3c50a1e37101ce71b123ef4a7b8f7878fcf5c5714b118326786\",\n                            \"earning-account\": \"one10lwqhmvur6yflljmm4k9hghvtyw355al47slel\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"379f01616041deb6c030976b00a32bb47f99dc1bd1c4016c9be01c4563468892cc1e106ebcc3764b75d9913aed24f792\",\n                            \"earning-account\": \"one1mwetv0sqhmfah7cqcpk3w8p9hp8u9gxk0ey9xn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9f1d72f5a31ea54b06461275e6b01005ffe50c2fd4df8afc6311de8c2bcb876561cbae53dd205b8f7a4e6af12e705210\",\n                            \"earning-account\": \"one17ag4ynz8j9ka6kqd7uv0wf4cmd74hhq8k7548u\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"42dab286776dee71b918d5d5ab947f43321dfd59c939f77f0936ccc972e3615f3063044de78a1916893d528415209506\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"16d34bbf17f0028aece27d1658a2d317b757c5d2b44664b41ad0d1edec4feee7abb5aa0e7e92e8140bf4c553bea7b394\",\n                            \"earning-account\": \"one1mllaxy0qgcs4ylwn6c82wquaytumc04hdqc2p5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a7d0040ac7c79df54009fd3dc7ceaaae6dbf33cd2c144f75c2558a614032fa846a54d8d779bdeb6ae63590b19c533382\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001807136822926791\",\n                            \"voting-power-unnormalized\": \"0.005647302571646221\"\n                        },\n                        {\n                            \"bls-public-key\": \"6a924159a7082d438cc1b8176bbeeef57f107ce62eb0a63cfbc92d2cd85b2544126dfe7d01302d578689f9b956fe828a\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001783536080840624\",\n                            \"voting-power-unnormalized\": \"0.005573550252626949\"\n                        },\n                        {\n                            \"bls-public-key\": \"a041f6c328f0cc0da8b3e3e4f786e9b769eb1aefd4fac75e43f47ee4421e0d301d29162b4fa4d36ce3152d1b1efbc292\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"b831ee28db84958e2a43c6ffca19a8453aa818dc196d7f0058e028a642caddc5146a9ab0d643802ab15981971c54cf96\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002129667927639073\",\n                            \"voting-power-unnormalized\": \"0.006655212273872103\"\n                        },\n                        {\n                            \"bls-public-key\": \"7857d57c31d1904d50e8c678db57372f5d75cc13a136e6750523f881017c64d3efb83f2fb992ce55f80e51ec103a4682\",\n                            \"earning-account\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                            \"effective-stake\": \"5567984785333250000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5567984785333250000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001855138196577788\",\n                            \"voting-power-unnormalized\": \"0.005797306864305588\"\n                        },\n                        {\n                            \"bls-public-key\": \"ffa92142b8e5f20a8baa650b68b42366fcc8fd73e6cbc507a8cf961e5721af1a53736b715aa48585f8b901ab499d6f11\",\n                            \"earning-account\": \"one1k9jw2f0vqd7q3ufgkw48vqjfu9dg2psh28j5de\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"97e4ac35faf0cac6fe497058f6393ee20f4c5cbb9ce11b425150f36a720b98ae0fd718c6a7db246b1774bb78fa4f5a02\",\n                            \"earning-account\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                            \"effective-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002088608459620963\",\n                            \"voting-power-unnormalized\": \"0.006526901436315508\"\n                        },\n                        {\n                            \"bls-public-key\": \"32ac4f9e3fdd48b1f98266624e6dc91ffe66119ccfbeb87ff5c0c8ea37b66eedadc88e85aefd6ac8e70a767e52c04502\",\n                            \"earning-account\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                            \"effective-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"voting-power-%\": \"0.001757583268375647\",\n                            \"voting-power-unnormalized\": \"0.005492447713673898\"\n                        },\n                        {\n                            \"bls-public-key\": \"d9700e0c3187201017599418f5fd330547265cd23adf6ffab61246e0e764479f649065f0ca09cbdd37c70988c8e8fb8a\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002119299828004446\",\n                            \"voting-power-unnormalized\": \"0.006622811962513893\"\n                        },\n                        {\n                            \"bls-public-key\": \"3db51e1ab47e33b2eea18327a19ab3ce4e0496636d88c16d08b2e78f6e4d161a5a75e117fd696353ef4be9f67f0e0a96\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002064975993420809\",\n                            \"voting-power-unnormalized\": \"0.006453049979440027\"\n                        },\n                        {\n                            \"bls-public-key\": \"2ddb885bbfde9daf8fefc28b357188e99e03cd7d419896ca4763d5d1660021a932f77d76ab6a81c43dc81910f524ed16\",\n                            \"earning-account\": \"one1y8s2xl8a0zmav27t43p5dzukuy0gnctmevkh07\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8fd5c4406e6dc3b3c6d10b36d6b7c81887a77e32e968c3af7f591dfc8a611c1550078d390714d49934aeb52e7f879116\",\n                            \"earning-account\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8280256500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"f9f036489ddbabddc3ffa90d2490b7bf144b9df5e0c870b4057a0247255b2c106b27245d41557df905e083b686212716\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"0d21a26dd23aff30d17649436b0195d68f13a405f844af4ed29ff22a13622c497434b467f52d3161399e01cba3bdb308\",\n                            \"earning-account\": \"one14m0g544vwc9qyqzvlv83tleq0g8xzkwle3kml9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"01af43ece70486159d0fcbde2986037dbd6466ada58ae584c8a38f5f4caafab86835c9643b3380fe357dc19d3e97fc8a\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001830057591330939\",\n                            \"voting-power-unnormalized\": \"0.005718929972909185\"\n                        },\n                        {\n                            \"bls-public-key\": \"433bd1eb567b540d1cf324abc83b3fc33d4a96d7daf9644901cb339bc393b0f300cae82c800f04590cc74bc5f35c6d02\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001824633014695529\",\n                            \"voting-power-unnormalized\": \"0.005701978170923529\"\n                        },\n                        {\n                            \"bls-public-key\": \"6293a49990f20a279f0c7c5078f31a28b3ca10a9053a64de020dccc63f4f910a46e4c421d8ef550cece6130662a13e97\",\n                            \"earning-account\": \"one1h7djn98fyfdxylf8h29eyqhqd99x2pfw0k2yk2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"044b97305780a0cc6b24f649fbe8b507794bf6e4d0c1268658cdc7b64d38fa0adf45ad81aba61aaef769c3c0f9b0ba0a\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"e6590054e2cf8056d94751242c67478e611f910377f2c0e9538f7e5027659cfb393191fd435d81e8890aa654aa30a302\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002129667927639073\",\n                            \"voting-power-unnormalized\": \"0.006655212273872103\"\n                        },\n                        {\n                            \"bls-public-key\": \"c0118989b68debda37f191ce46ec6473a3f3a4b9ef454b459d03af059b6fb180b82fc7fe622cb77e299e1a7a33c0f886\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"8bfc1e7554db8a9e177e9908a98321ea3b0e03c373d8d242dfba7435642eca4973340b40c12b15697bf9872f2ae17e0a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"cc3be3eb86a06ac143407f0ef5ae6444c05d78e351b5a67289d9f173a12458d0792448867b2dd4fca9a1a56826a60581\",\n                            \"earning-account\": \"one15xu8xd0derxjqg85wx3ku2ft34tnyzltm9sx84\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8cbd3349056be05795b3c7b9f45d4d985761693379f0d34847da4545d0b9c5bfcb586ef8ecd86ef5e04bc77e78eda90a\",\n                            \"earning-account\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                            \"effective-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002088608459620963\",\n                            \"voting-power-unnormalized\": \"0.006526901436315508\"\n                        },\n                        {\n                            \"bls-public-key\": \"9e32a40615e85c1caaec6528435b354a569666e1f6c4b144698541e1e8c483db4cd547592b17d01c6a4ee36a6285370e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"817c6a12af36c867b094fbb51aed5ec7f959ba375c77609f230094a0b7d53f68fe27b7f78e29c73b333c1cd8ac84328a\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"93bc8f47504cb05c6d0134039b3692cbb768e287627030580c065a0180cfcacabbd6cee09ba135a8fe26682a6e843b96\",\n                            \"earning-account\": \"one1w7qjzw8tcg236c5aflmvqae2ryq9d46cp9fef7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"41261930c23c0a5585f5fce4dc5b39e91dfc76bc67677210a79a462a2ce62a41fa68fa6ac80e2db372fda35dd95ce016\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"497a4af6682e07a7b2b0e5a2b9df08099f31e028a2f2d17498c091d83cac69ff44016ca7fc0196121c9e96e2300abf06\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002129667927639073\",\n                            \"voting-power-unnormalized\": \"0.006655212273872103\"\n                        },\n                        {\n                            \"bls-public-key\": \"4b2f5d50d469f865cb9a1f65bced9992a5012f737b5a5c1d32fc9fc462991d931871275a733ff4989d206f31932b7d82\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002129667927639073\",\n                            \"voting-power-unnormalized\": \"0.006655212273872103\"\n                        },\n                        {\n                            \"bls-public-key\": \"417c2b9d293c24c03cce180d279968855abcd8407a56ad3d38ee41f7231da51adc90f9afb1f6f054c28cac4465cb9296\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001816619613477493\",\n                            \"voting-power-unnormalized\": \"0.005676936292117167\"\n                        },\n                        {\n                            \"bls-public-key\": \"298a240c89c51bb025d613d240c7d9ac7f25efce5e78dcf709cee013b67fbb6703a961d7a5e8c561560fcb07218baf8e\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001752242403462100\",\n                            \"voting-power-unnormalized\": \"0.005475757510819061\"\n                        },\n                        {\n                            \"bls-public-key\": \"6cd2373975822fca7075ff2f574ff2752fdf8ddc36e29535682f912437f0904a7f77b8a6c004c3f1528c0661a101ef0d\",\n                            \"earning-account\": \"one1twp8kvs3m68yttul56q0n85rkzykc5alv8nm98\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1c41579d398d49e225f6c1ac09600e45b2b05cf7c85ec000d21fff2ea532731139171d7cdcc07b4c2d6a74c5e684e595\",\n                            \"earning-account\": \"one18p0md8cgjy4wdk7fqsafqc7p2y8vafyr6y9q9l\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"97f4fe2ac8d22e53261e118dcfa42511e0dabacb45e19daf74a920320f4990011278c8a7bde278428beb984f8942470a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"ae4f6380cae8d0ec4d364a8d98bb34d12aca8a42ea9b28925abed150fc991d78a88dce948bb2e79798efe79ab7552516\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001953267251244723\",\n                            \"voting-power-unnormalized\": \"0.006103960160139760\"\n                        },\n                        {\n                            \"bls-public-key\": \"6de75322ebfaa0954863ac66047fa39bf03a8af92be500a18c6b2610625e2b122bf46e85470cfbf6cb4e8803747ef20a\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001910781255703400\",\n                            \"voting-power-unnormalized\": \"0.005971191424073126\"\n                        },\n                        {\n                            \"bls-public-key\": \"f4288750c7d2f0b42a8ff9343132a404be81991e43681a0f73de8807e05bb60b8bceabaf14cd6ab215b37526b8d2ff80\",\n                            \"earning-account\": \"one1e3zxaa4nqgjfecwy9s84kd6m0vtzdkuj3v3gdu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3a483fca6153214c083b944b69a65eab16aa58b94679ff80151dcd6447541390ae1d0fa176179fc9973c20568abaf88e\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001824633014695529\",\n                            \"voting-power-unnormalized\": \"0.005701978170923529\"\n                        },\n                        {\n                            \"bls-public-key\": \"960e0536729697031f7656f05a13b7eca9d5b6cbcff0bca3e7240967477586da5c83f0d3a3c3ad00759227e5905d320a\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001910781255703400\",\n                            \"voting-power-unnormalized\": \"0.005971191424073126\"\n                        },\n                        {\n                            \"bls-public-key\": \"5b28add237b2207ecbd9eb6236511c542bd54025e3956235b69a10ef250bd09e6e3b6c4a6ab463713bde8a7bab540490\",\n                            \"earning-account\": \"one1mm0hcdjf9emqrnutq66saufh4t73qfad30stcz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8f467670e6a92df732d1bc81c3bd85dc472a82aca9dd02e8db1c69658f8093525e65f1587d817cb325e673e86d5faf92\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"39bccb23d3e59e3cc45b0bd96de484b2be838fbb27433a1306153d880f76c7907a80db982a4a589639b7fb41f6a9e782\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"7c5ca6fd99109e79b2ba94caabba3e8b0e40785fc15e9b62a6804ed7ec6ff04b3a954172290b1e2dd9e26edfefd8ab02\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001816619613477493\",\n                            \"voting-power-unnormalized\": \"0.005676936292117167\"\n                        },\n                        {\n                            \"bls-public-key\": \"0ef2242d662db9c66469431464152bd3e321eb888fea01cf4638ebc41788eb840cb772842a5ab73208e9326fabb7dd94\",\n                            \"earning-account\": \"one19ka07xz3mv0xq7hcyynu7r8vjqyj72wsyzpgzk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a8f84dddf6682f21b87855b7c34e0f1ff272aa13b8206671f952088e3a673c20b0f064a95b074073dc01d4542b633d06\",\n                            \"earning-account\": \"one1zsxraf7yexaedjqjp6sh2prycsupd0yjx2x8vn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"cc1a5a00adf5ea2bcd79fb66842bd739fca501ccfd4c57658eec2c1772a2b980042d5c44a31239b83d936b504c679017\",\n                            \"earning-account\": \"one1u9aespv97yxc6xuvege8lmnfujx6kru988fcx5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6e531167a966b68b4278a93afb9e2e6c612902cf02ea6ba1f31d3aca40bc9e0e2f869188a6dc4a6f0d27ac6d711f188a\",\n                            \"earning-account\": \"one18z2wrn0xkjzsr4qzqe07fa5gr6ntul3s54r9gj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1095b61db169dde214612df0caf6c61bae3bc9f3b1e27a1c246d1218d58fe76e21f7f12a8c0934c147180db27832d68f\",\n                            \"earning-account\": \"one10mk9xtejw6rkxxa93zq3qtr4tlaelyhzrjv3y3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"edb61007e99af30191098f2cd6f787e2f53fb595bf63fcb4d31a386e7070f7a4fdcefd3e896080a665dc19fecbafc306\",\n                            \"earning-account\": \"one1tqa46jj9ut8zu20jm3kqv3f5fwkeq964t496mx\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"18654500000000133333000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"cd21fcd82f7175dc4231f47d28338197ff1950b9ac7e8bcd7a6df025cba26708c4e0b215bc2410e42d5cd681cda8be86\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"244170fb2374a10997f4f39b0540d98a4fe30c4325ff84ce7812f6e0e7660a4b3583bf4214a9defdbaad3db3ef76938e\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001830057591330939\",\n                            \"voting-power-unnormalized\": \"0.005718929972909185\"\n                        },\n                        {\n                            \"bls-public-key\": \"54c3cabec33735721eef52bcfe94282d19919ccb90b9675bee8a8425cc15bac27b9dac5fcfbe560eb39ec619efdda386\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001783536080840624\",\n                            \"voting-power-unnormalized\": \"0.005573550252626949\"\n                        },\n                        {\n                            \"bls-public-key\": \"88ead1cfb1433b2f7de1b5ddf9f7af711db3aca5681352a580807d1684dcdb91c5841d508b2326162f573cfcaafd5b95\",\n                            \"earning-account\": \"one14eukajuvgwsu4sn90qvpvkf3he3npvyhm3y2nt\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f5121d14baddd774e40ff8c39676b932c3828c2128b1431c5977c3b1c44f7b66d77119c49233589eecb75a6b85eab882\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"voting-power-%\": \"0.001927983148407877\",\n                            \"voting-power-unnormalized\": \"0.006024947338774616\"\n                        },\n                        {\n                            \"bls-public-key\": \"9b33b36c5d82e80d45fd49f136d76da580b77a21eb68692b0b44accaf8cea8647ad75086f3f872385bc8d25236fe8312\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001824633014695529\",\n                            \"voting-power-unnormalized\": \"0.005701978170923529\"\n                        },\n                        {\n                            \"bls-public-key\": \"0fb881ed1d2d8ba0f1ce94a1ff278d934bf2eb0817a3d1de9a41e944b35b2f56da676cf949219e1538554205705b2f86\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"270770ae9b5b0f041e54579989f97300a556a5df40ed8cc93e49400b8609c9b7feba0f5696e1d2632ba0e0b972a85c06\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"f8500000c59d4967899d60d9e3533cfc039f3da912e7408101d58a2051a905775d0954bd12c94946b7c431316d14cd0a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"af019886714fad9215add0f578bf2b989df75bfc6e9b46b00c33a41e2c6a2f7a396270148e549b8d96ac20d27a8fd50e\",\n                            \"earning-account\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                            \"effective-stake\": \"5567984785333250000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5567984785333250000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001855138196577788\",\n                            \"voting-power-unnormalized\": \"0.005797306864305588\"\n                        },\n                        {\n                            \"bls-public-key\": \"0b70c31a49b53761b2259674a2bb28034aaab0dfdabf3cceb8ea0bdc451333b712c2d897a32578ea877a4195847cef86\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001830057591330939\",\n                            \"voting-power-unnormalized\": \"0.005718929972909185\"\n                        },\n                        {\n                            \"bls-public-key\": \"2826b297f1c212b89e510d7fafd7979de781116b44277e3c879286088be7b4d26cf4e4d439d99ff85944d9e0266c528a\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001752242403462100\",\n                            \"voting-power-unnormalized\": \"0.005475757510819061\"\n                        },\n                        {\n                            \"bls-public-key\": \"506d40a45f71d7e3a026b7e1b7538cdcb45babedd0994a7e8f26f154daa68002c49f85b6179dc6c9056e7e14c6193a05\",\n                            \"earning-account\": \"one19x7kt3spkc43eg06c66ydfz3883huffwjfp5rv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7fc0ccc3154cb611318def73b241644a610dea20a5edebf2837dd3898d46e2ddbd2d6038e5aa4a7e553c5adbc5a41c86\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002129667927639073\",\n                            \"voting-power-unnormalized\": \"0.006655212273872103\"\n                        },\n                        {\n                            \"bls-public-key\": \"23e1fd371b179cd2abc2adac5a9b237ae61c812a3cb8b5e7169dc8841da0d8fadb815a16657f73c8af27256298a7138a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"0fef08aea16a13e694d84dfa7d4a852564782d22a71c6a9e4ee184c8e3bac533f0c5db11ed42d251ecd892f697eeb105\",\n                            \"earning-account\": \"one19qvsgtqu7fuqscxydejxe0y3pu9qyzcy8yf7xu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"52d655352e524c9e018c8fa56868d1650051dc3892a66572b23b516a0e79ce292dcad125ba61c17d4c69c28560f1ad06\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"52b0e9c523aa7f5f989c1610d4f3fb12462a857ad15ed7ba82f88677ce11dd4505d8b13b12d224aa8d725ad9f490760e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"7f6ced5becdad6859fe9082f70062fd107ee4aa647621b0e7894138a52768f98f562f9624b20a804210035eb322cf302\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002129667927639073\",\n                            \"voting-power-unnormalized\": \"0.006655212273872103\"\n                        },\n                        {\n                            \"bls-public-key\": \"fd9c72921080d260172436041c82be458f2e9fd5d313ddbde16330f24adbb7d8d3526d8f26e329887d25436af4472a10\",\n                            \"earning-account\": \"one125rkvqcpdzuv2u33l6x29we0n4klwahudpderq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bcbf5434cf3885d07076474141a23b666c9ebe56480bec8f4d384f0174d935ce613a2edbbc8a33be5c023392d0656c02\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002119299828004446\",\n                            \"voting-power-unnormalized\": \"0.006622811962513893\"\n                        },\n                        {\n                            \"bls-public-key\": \"e3debc5e712557d2143963dd8dbfc6ec607f4fc5683a87a4124b706cf76c7b40b8228e7770cd4e9923848c324bb4d20a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"ffe60855e10c485185573d018ea635efee2887faaf7f598ce703a44068d23b310fd549a1dd053932704845739a1f6c8e\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001910781255703400\",\n                            \"voting-power-unnormalized\": \"0.005971191424073126\"\n                        },\n                        {\n                            \"bls-public-key\": \"8ab17ea9edb91b841a25475e1ca4d4ae57af9f01586ab870895b1be0560bcae7b3629a28d6770f431db3461ca327e806\",\n                            \"earning-account\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                            \"effective-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"voting-power-%\": \"0.001757583268375647\",\n                            \"voting-power-unnormalized\": \"0.005492447713673898\"\n                        },\n                        {\n                            \"bls-public-key\": \"62e389f040a6dd855e9676ab463aa5f04c6ea7766308e8f01c5ff9be43b83e980c734c48a7023a11a9b23a847bd0a889\",\n                            \"earning-account\": \"one1msk55usx4hf7ph7uvjwa0ese3qzkytkpddk4uh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"284b1b62eb0adc25e42c5519c19740ecea247b1dd9a7922a2a2ee0a56598db4b5dcd0b1ce94b9eaa73334da3ac39b48f\",\n                            \"earning-account\": \"one1l7ms6mc892p7ypuaruvm8tru8ada3ufuj7a7ym\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3f91a010a3037020469ad89cf9dabff813ac2a75ebb1f27fcb7ccd912bd74fa979d3cb8426abddaa6855abb7fde6370a\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002119299828004446\",\n                            \"voting-power-unnormalized\": \"0.006622811962513893\"\n                        },\n                        {\n                            \"bls-public-key\": \"4e0f36a24c1df21024587a4ece5b1c57ed20d636f9da0146f875260205bf20eb324763cbda6d1aa70d46baf5d4886a96\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6197788895002875000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002064975993420809\",\n                            \"voting-power-unnormalized\": \"0.006453049979440027\"\n                        },\n                        {\n                            \"bls-public-key\": \"a8472c1cb4f6a1da3e227646ac5f52817ed91ab8b9177f7483f0d562eb64e9e801b0ed09ffa3be221d4998c0b2580102\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"voting-power-%\": \"0.001927983148407877\",\n                            \"voting-power-unnormalized\": \"0.006024947338774616\"\n                        },\n                        {\n                            \"bls-public-key\": \"8b780674629f8aaba03bbd1b9aee1b1723b3011d832cf50500c9cc9edf75ffa8416e3a8888ffcfec14eaceae93693316\",\n                            \"earning-account\": \"one1gh2mr9nyvjdrlmmw6g8rfjllyr5xv3yf9mu498\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1da48ca1279c4945c620c2e5358355d2dff218ea4b36c8a90e06baedbad673a749854593618000de20936205060d1106\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8058862395552555555575000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"8f797e45b12648c3b9c8e8bb7eaabe7eaac7836d901eb798470cccfb6414e2e54516cbb2de1aeaf7a5d381651cdc5f0a\",\n                            \"earning-account\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                            \"effective-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002088608459620963\",\n                            \"voting-power-unnormalized\": \"0.006526901436315508\"\n                        },\n                        {\n                            \"bls-public-key\": \"4fad10de908b4e2eb37f62127a5e4d9fea5f61b062351722d01f5c88aaa6a3584edd1f65faeabc73ee0786b1118e678a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"2dbbc34c15c05c549e733cb03513f8bd5a6f2b851eb8a330b4042bf932d997112da0e3edd7babbd06a8c18d79a017e0a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002076045830487712\",\n                            \"voting-power-unnormalized\": \"0.006487643220274099\"\n                        },\n                        {\n                            \"bls-public-key\": \"01a381a48ad4840510433cd65eae2191833c4f1abb50b8df8bb412c8ea2b3981b422da4baf50e1278df7741ca3e3b68e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"133acf05ac9701c81ffd1150ec12dc016b2f6083a979aa90b1f8c63619700b8d8fc85661d186dee6dbd4bbab465c5392\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001830057591330939\",\n                            \"voting-power-unnormalized\": \"0.005718929972909185\"\n                        },\n                        {\n                            \"bls-public-key\": \"860b2ccf90c6177f3684720ad63f61467d32f7fbda63bab4eb4955235bb84f71408a5c53d393e04e20e911f5bfaf2e0a\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001783536080840624\",\n                            \"voting-power-unnormalized\": \"0.005573550252626949\"\n                        },\n                        {\n                            \"bls-public-key\": \"50db25160b6cb6b7ceb20edc1c6e7829a8265c9b01bf89f4fb98704566cf6bd5c7a5cbef0a7fba7caec676acc87eb901\",\n                            \"earning-account\": \"one1y70egf9s9gfa6udy90pnvhcdqx7ekfvjth6yr2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d0c5083510829c72bd84b46cf35c1daf98bb11af492ded14503e10f857e29e0589d45c2f05d678f73d95d115b865a816\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001867907275871805\",\n                            \"voting-power-unnormalized\": \"0.005837210237099390\"\n                        },\n                        {\n                            \"bls-public-key\": \"bcbe661d60d81334dcc30881f18ff6f4c64f8071f0f21d62d99b992ed28d6051aea58c691cbfaee674c98355c1de5182\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001752242403462100\",\n                            \"voting-power-unnormalized\": \"0.005475757510819061\"\n                        },\n                        {\n                            \"bls-public-key\": \"27eb98e93936f76113b03e7191c6794621c5e72e6e39a553edf2314af293ca955e2370bbc87d7a911f69cdce55249016\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002061263406202558\",\n                            \"voting-power-unnormalized\": \"0.006441448144382993\"\n                        },\n                        {\n                            \"bls-public-key\": \"5ccbf592850d59157162b7093b16d7e0ada245318c57923745e814b3c6d56036b7458cdcd1a13a5e1b0988bdf7a04510\",\n                            \"earning-account\": \"one1egh5983g00lpftwrl93ua6zgkhtlys8yq5y9rn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f8a01368befc5c2bb16afe993a45eceab9f552841064550778be5a05b851c143d7c3b9d5f8a50324cc8b65efe92fe995\",\n                            \"earning-account\": \"one1m4u4l7m4h6cy3upmhx2zpaye94vptdvzedzk0k\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a0301ee493e3a78516929e7a89b6779e828962b8516a4dd41b1374e21a179f00fa6c3b75387c357138d5d1eca6c2d312\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        },\n                        {\n                            \"bls-public-key\": \"75b30e36db669855515207d26c85032b8124e602e230f61af1f83d359652ed2c75fb644ffd5c03414207ef54208acc96\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001935731241869940\",\n                            \"voting-power-unnormalized\": \"0.006049160130843564\"\n                        },\n                        {\n                            \"bls-public-key\": \"21a94c1f5d0913e0e0471e5b4d4e2b476a1070411e9d98944821ddf1c933bf63f9f4c876213fc33a07fefb93ff401316\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001867907275871805\",\n                            \"voting-power-unnormalized\": \"0.005837210237099390\"\n                        },\n                        {\n                            \"bls-public-key\": \"42ee77919b4a3865a3e4444758a93265d44b4d9dd83967fb6d0a7db4f824cb9736ddfe740e84fba9000e08fdb77c0501\",\n                            \"earning-account\": \"one1zxhcersrsjna4j738uvuelpd7kzggm2l6vs08m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"18110d1f458866fdc4b79870f95e6fb9c502bb3779dae5aaaf5b554a5246b33bea7f14296f145e6f74543229a45d9c06\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002217180620669059\",\n                            \"voting-power-unnormalized\": \"0.006928689439590808\"\n                        },\n                        {\n                            \"bls-public-key\": \"a9a95b8838e874dcd356231247fe5beb26bce648f3a016b6644f0cbcbfb722bef12c1babbe0b70188149ce83c4eb5699\",\n                            \"earning-account\": \"one18ta9zs9hjwktpyv0n6sdn44fk5h8ur8l93slmd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8881cda12fd07d1d55b5d615e345164e3251a959636d3c6c89eca39bf2f3d7bda4790c30e97f4aa3e05d65f7ae24188a\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002129667927639073\",\n                            \"voting-power-unnormalized\": \"0.006655212273872103\"\n                        },\n                        {\n                            \"bls-public-key\": \"1781c77e68eb73118dc75cbaa5c3531f76434462463b2e6a07a91ed5c0a6cc85c14491f64a8bce7165feaf619519ef86\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001816619613477493\",\n                            \"voting-power-unnormalized\": \"0.005676936292117167\"\n                        },\n                        {\n                            \"bls-public-key\": \"f4dd50ff795d7ac3947c2eed19b6a029ce959c1ae753d6ff0ce3af8d9570c00fad3897a6a5cde612c0a72a524c952106\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001752242403462038\",\n                            \"voting-power-unnormalized\": \"0.005475757510819061\"\n                        },\n                        {\n                            \"bls-public-key\": \"29e738f57f1b36f2e98aed34975b827abc43785a7c2fada657c45d1c5d94458fcd72840f66a9314133b98b17f8738d14\",\n                            \"earning-account\": \"one1s9dzuzhce504pmphdnhzphf473mkzqc8z8fqnh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"be166c82632ee7cd22cb4682b8865cc8755abe2b87f2d3e8e2c168b87fa357c8aa274f2b803b16f5ffe40d5b048c3d96\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6265709036412140744075725.473684210526315789\",\n                            \"voting-power-%\": \"0.002087605589855267\",\n                            \"voting-power-unnormalized\": \"0.006523767468297708\"\n                        }\n                    ],\n                    \"count\": 251,\n                    \"external-validator-slot-count\": 161,\n                    \"hmy-voting-power\": \"0.680000000000000040\",\n                    \"policy\": \"SuperMajorityStake\",\n                    \"staked-voting-power\": \"0.319999999999999960\",\n                    \"total-effective-stake\": \"960443343031522243009377738.823448364500996023\",\n                    \"total-raw-stake\": \"999719064911198184187106011.550721091773723295\"\n                },\n                \"shard-3\": {\n                    \"committee-members\": [\n                        {\n                            \"bls-public-key\": \"1d58c7643cbed3008def6729e3eb6c1e350a3034589c6086d616c2ec34ec44f77069df41f8db92203328ce4d4184d10b\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"fcd49de42863a6059a8a60a1565e4616a7933a5f918b8eac986da5594fa3b0f0177e66f01b5f54c453c4adfda836c913\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001815416070769608\",\n                            \"voting-power-unnormalized\": \"0.005673175221155026\"\n                        },\n                        {\n                            \"bls-public-key\": \"7b9e606f6653dd3ca3c6d06117df1f2e1a40344ae1deebe1f1fe5b69c4ed3300b96fb0eafb318aaf8db34f72c7b96500\",\n                            \"earning-account\": \"one1kc62r540tp79746l709vyqkm4mzwyzrpnecf7c\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"38a45b90cb3ad2846fab846a8026e8b539f41b4aeac984ff32dbfbf1b857931027eb44e22ddc785f59d6c763941e008f\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"51340ad73311fe90e6e19b9550d75d876e70ecc8fc2c12974f8da362793fa03f808984d79b13f93164f19a4a8f53910b\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"c47283b4bbb2cbf18c6ef0575f487c330841801cd756634c6b1444d4e9254d3e63c08cfc22d6d992ee1f82bb46a58087\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935251013572736\",\n                            \"voting-power-unnormalized\": \"0.006047659417414799\"\n                        },\n                        {\n                            \"bls-public-key\": \"67d87257f4ca7bb59c189c5c0d06059054d0796024ec3684b8624cdeb1996628d1bb81a63e23f4cbeef622d70b77b987\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002175049341498822\",\n                            \"voting-power-unnormalized\": \"0.006797029192183820\"\n                        },\n                        {\n                            \"bls-public-key\": \"d6847272973c672b9a92826bf6eeda7450c3db3beba6cd59c836643e296f7a936e355d2f3d97535218ab2937b22e7c96\",\n                            \"earning-account\": \"one1zrrmxpzhqtxsmfpmlhgdctr4s5ry0z6x4p5zkn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"fd3968117c0a20dd52ae8c3396302edf8eb2f9561114d4b3d62167af21f599579fba63d8955658624511e45a7d65e411\",\n                            \"earning-account\": \"one1krcg468lkvdemz5xm0fj2uaapmyfl0337nwa33\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d5fbb9ce2c70a99ed27f0393f4a964937e3e7243c121c36f44c1095518ecc9516539a1ab08cc53aaa4783553b95b0916\",\n                            \"earning-account\": \"one1tdcsca9ceu4frnzcsc7jxjvduxct06gj5ccfgn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"dafd8989fd7dcc29ccbd5e38f90f27c990488b7875c3a83bc51268d60f1651ade03bf4c990278351ee4835dcf9234007\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001890416583681716\",\n                            \"voting-power-unnormalized\": \"0.005907551824005364\"\n                        },\n                        {\n                            \"bls-public-key\": \"6f1d634f7b34eb377f0dc59bdc1f30c32d8c6ddd1646e5b1f890022cd510e4083c2cdb701b5c84843789f9261720130e\",\n                            \"earning-account\": \"one1ydm80qk804p62c5a5m3cmf46pz26mgc3pw2gys\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"94253962d70e43ca53ecdd66d71a438dc10a0aa3b97e67ad608c214026b082713d757b6777bbefc32715172f55cb8c0f\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"voting-power-%\": \"0.001963516651166175\",\n                            \"voting-power-unnormalized\": \"0.006135989534894296\"\n                        },\n                        {\n                            \"bls-public-key\": \"87cb22352223067db94c29e67917b4a0824e551c06b7baf9f15cf96a71ca58cae64c771b43cc222ba6d1a60a178cce93\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935251013572736\",\n                            \"voting-power-unnormalized\": \"0.006047659417414799\"\n                        },\n                        {\n                            \"bls-public-key\": \"365ebf1f7867198e2c3291e515717e0caa0b8eb65dc181a178dfe5dde0cdffc354d3c40fd5cedff9e192cdb6ffdf350f\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001882114274980589\",\n                            \"voting-power-unnormalized\": \"0.005881607109314342\"\n                        },\n                        {\n                            \"bls-public-key\": \"1b9f516615c22a34d05e8f4c9ff45ed2e58bda460164cb85eb6581bd2150ba0dcaef014bb880019272fe54643fa42593\",\n                            \"earning-account\": \"one1hj5let92mzhj3utzramfmfwmxdvrcr5xnj5dtv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ddb2b11443f746f0b3f2fd6fde9869173329e7e27aee724a689ee6e414e90b59e38a8e8e0f6ed47f791bdfa796c93493\",\n                            \"earning-account\": \"one1vgyd7aghzgyusks48zy63g7p45x3wzc8n6jhwg\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"437e23a8aa249c3c5de408651c6bfb5995b6f99f438ae8191c287fb128160d6ec7f51e86fd101d139841d32c6a927f05\",\n                            \"earning-account\": \"one1xu9vlpa6arkcfls69qe9dly25vddn5h5nnqrqq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4a7a0453f2d35c4c0ccb69e666576785702124d2206808c0aac9e22dfadd0dbf01c38564a5fc80f7fdef62829d250193\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002206448932864331\",\n                            \"voting-power-unnormalized\": \"0.006895152915201034\"\n                        },\n                        {\n                            \"bls-public-key\": \"4cbbf20d0c3bb8f4e2de88040f321bd94cb88c5ec427401993be0be5016fe22cd6543810b4737eb9dcf2739e922a8387\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"voting-power-%\": \"0.001963516651166175\",\n                            \"voting-power-unnormalized\": \"0.006135989534894296\"\n                        },\n                        {\n                            \"bls-public-key\": \"226dd250b580edbed2239bfdd268cef37fa5e8ec5f323cb0eae5a830c1e17fb8d2e45dbb0ba90e383ed95f10ed9e5593\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896036732801260\",\n                            \"voting-power-unnormalized\": \"0.005925114790003938\"\n                        },\n                        {\n                            \"bls-public-key\": \"d2f6b1c9903d38fde61a77a293ec8c9107255ff7867bcfd8e9189b1fcb1ea220fc55a35c81bb0ad1a32cd39ee06f8683\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001882114274980589\",\n                            \"voting-power-unnormalized\": \"0.005881607109314342\"\n                        },\n                        {\n                            \"bls-public-key\": \"0285764f8567b87ba42ecc4c029a91218040bc22527b106deda3184f035698b7f1520105100939ba59e941ad747f1481\",\n                            \"earning-account\": \"one17vp47fz4yf0wgpja20h3ej0u07mgkswzm5p6u2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d1bb58d9ac1f55bdc8ad93c22a8118b932df34899813ac63a1b406e24000d36e9e38d1542896c51d6d763aac9b252b09\",\n                            \"earning-account\": \"one1ac4j80t2gsd9rhg637yfa29d4rn6rz4elh9lmh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"be79b2d9fb4b9a56683d40ee445a6597332e298f0ff3f168cbf5c5acfc4a3ae73b20672517ea06ec9b8b9ee4fcf86203\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"b7c1e4947c0133e786360d605eb8bfb15ef5c39022de9f89546a9fa3792f333e1e50e03436e831571fc9e9fde3d04197\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001890416583681716\",\n                            \"voting-power-unnormalized\": \"0.005907551824005364\"\n                        },\n                        {\n                            \"bls-public-key\": \"3a16916352fb68352c4b266a594a2ec823b473c11e5a175401096597cccf19c8978859dda1718f2b2ebffcd41cea6d8f\",\n                            \"earning-account\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                            \"effective-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002268774439722508\",\n                            \"voting-power-unnormalized\": \"0.007089920124132836\"\n                        },\n                        {\n                            \"bls-public-key\": \"38f4891a6abe036c75d1dadcdf8c19f8769d0ba01c421fe1b8fc2c5b681416251ccb77abc51c336228bd74bf345bc407\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001882114274980589\",\n                            \"voting-power-unnormalized\": \"0.005881607109314342\"\n                        },\n                        {\n                            \"bls-public-key\": \"921a3e873b0f9a64ea748067732711722db9e678706adbe54a725bc4265010195cdb6b5543571c863593d48019904219\",\n                            \"earning-account\": \"one1ztqujjuzchxzsajcah7fthz9ek5a0jt959t2dw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1fcd73f808d600ddb9eae4605f9adf88a2d6b17142350ac39e76b42a54941c13bec6922b5a632d469eb66fe427b27e11\",\n                            \"earning-account\": \"one1fvn48vc5vgzlgzq0qm2mgg7yukwyv0jdh0dxts\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9f9249854bacdd414da45d2934cdfbed122a12fc34d8722616ceaa4633112bcecadeabfc8610f95aabbe4af5014a520f\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.001836003611877340\",\n                            \"voting-power-unnormalized\": \"0.005737511287116687\"\n                        },\n                        {\n                            \"bls-public-key\": \"f2a4539f1251cc5b173d43d52ffc41f95da5999e782f8c3f82bdd76d2f85fc4ce35ebca5fd6130fb018efd3bb140b78b\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001882114274980589\",\n                            \"voting-power-unnormalized\": \"0.005881607109314342\"\n                        },\n                        {\n                            \"bls-public-key\": \"e04d925314bdd07876a72ecb13b1108164ecf3cbba7fd81bf9eb62810243fc065f89153ea39e5c7e66a1ac7a2daeee80\",\n                            \"earning-account\": \"one1q6pvrr5ewrefuky9n7khk0lztmynzgtxfsa0ye\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c5a3cdc00a9400bb3f9b7030c30ca87f1f9d72694cac5cafdeda325d8bc8dd93981c4131184b0d33b1ab9554e2961d8f\",\n                            \"earning-account\": \"one1jkjc25md75hlstewu8xkfzl5637maxm99elpy0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"89db7c6abb1329773ac852f226d1bbaba0bb4ff675819f0017e8bd6b1075153ffa0621895e349c636d5c662e26050097\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002297116724608820\",\n                            \"voting-power-unnormalized\": \"0.007178489764402561\"\n                        },\n                        {\n                            \"bls-public-key\": \"a6081239b7110e4e325cfbd868e0228a3346c2dad0324d243bfe4c5fc1a9b0c584f9ca272f758e3a845ca50ab973c107\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002195707031707931\",\n                            \"voting-power-unnormalized\": \"0.006861584474087284\"\n                        },\n                        {\n                            \"bls-public-key\": \"686dcfa82b4ea90d7578c7dd3ce806d112c14659335e0b780fcf2768da6e340b78e06156138e500e46f45dc7e18e2807\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"c44709b345924d9e39c9a6a087ac205b0f8daec3523362e47bcc1cf88eb8f035bfebd0552a7e1c2c10b84ff6cf2f5017\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001946114748294045\",\n                            \"voting-power-unnormalized\": \"0.006081608588418892\"\n                        },\n                        {\n                            \"bls-public-key\": \"1aa713611e2496a7136b9bcddeea0dba78ed1f8d7f2d67cf1c6f3cedab549a00e2dc45e7dd8a58eb0f81e93f2feff507\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896036732801260\",\n                            \"voting-power-unnormalized\": \"0.005925114790003938\"\n                        },\n                        {\n                            \"bls-public-key\": \"af849f3cccfa128af63a02b77cf8c8c9f29ea3071f27fa7f3babaa0059e335dfd7ddc7308d34d6d7972e053a51672288\",\n                            \"earning-account\": \"one1jv74fdltq84ugryh85tdf4l66eg9l9wfwtytmj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"55e43dab3c8e107c3221c11cac7ee959e776317347a53e752c48a7b50707ea039eaf2a6890c3358a85214f7c099b6694\",\n                            \"earning-account\": \"one1tdahkxsfq0pctyl920sffwaprlvg5025yn4ryz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d31e3c619dd38bfc3a946adc69f2300672e83dd77e5d89a6dc2d793bf110d91f6e1afd525366c6cb7abd7df14e30512\",\n                            \"earning-account\": \"one1n7kzlxrdz5xgxzmmpat42uzr039vurvjm7h85c\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5baedd510cfd70c7c3a535c0adb589880c8b65641c14999e8f19b39498089ec1d9ae694a18d28bae538376811798690a\",\n                            \"earning-account\": \"one1kar0d902emdqq8chzatrdceh46q605v2cvpf9v\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f4217e634426761b2618aa223c2d5ff70440f22cf8d8b87c6a76fac2a16fc7f38fce37551a18b3901b2ad82c4c02a980\",\n                            \"earning-account\": \"one1p26ned39k7nuenchraxuwqd827dp9pddh4g8dw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"520ddf63d1997df10f75c05e4f7ce1f535c800204f31904278930a7e0bedb8e5bb6468fdf9e7906da01abaf92c22f10e\",\n                            \"earning-account\": \"one1tkhj70kmg94pdgkh9wq6rwcfdg8hfh25g2t7u6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"43ba875e76d9cc1b40fae255865f426de64a7ece1b4caaa9954747c3c766894de034f372e825cb09313a9ba588b6d68b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002005520239801406\",\n                            \"voting-power-unnormalized\": \"0.006267250749379393\"\n                        },\n                        {\n                            \"bls-public-key\": \"70ea1ba2963116dd3e8c30795a5cca98c7271cc1e39bc3fb074cc4419a83b8d56b8ac3734e3252af35b97d84a68a1a03\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001847837980383372\",\n                            \"voting-power-unnormalized\": \"0.005774493688698037\"\n                        },\n                        {\n                            \"bls-public-key\": \"c8f8616ee6a8c061e7504f2eded41db1ea7bde7c8784f440e750c3312b7397d038e465f569ce6f783ea4fe243097f192\",\n                            \"earning-account\": \"one1t4p5z796aqqk9eg0uwgjkd393tfun22lwu23zl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"11fe3720af7c383558400a2ab16b76caee83bb158d973e5fecb7b21f2fea82eecca2a68d1c8a50814d54f80041edac0f\",\n                            \"earning-account\": \"one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6805096873936133334900000.000000000000000000\",\n                            \"voting-power-%\": \"0.002297116724608820\",\n                            \"voting-power-unnormalized\": \"0.007178489764402561\"\n                        },\n                        {\n                            \"bls-public-key\": \"66ae22ecce040a1705b8caedcef611831b019c66685f136e5124a4afbf5cad346ee8d2c98b22bfdfc98d3d8b13d7b213\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.002068557735039971\",\n                            \"voting-power-unnormalized\": \"0.006464242921999908\"\n                        },\n                        {\n                            \"bls-public-key\": \"8fd42f4c128a790f11c89f44c8bab27cc47ac16f7186cb8d70ce1f692403502677da9f70e5a1f0dede60fcdaff477c83\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"voting-power-%\": \"0.001963516651166175\",\n                            \"voting-power-unnormalized\": \"0.006135989534894296\"\n                        },\n                        {\n                            \"bls-public-key\": \"5b993e01879f8bc389a42f6ddd22430681937bc34dae44b6660afa944b2888c3e23dd2321a3b11c58b02c245261a4697\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001946114748294045\",\n                            \"voting-power-unnormalized\": \"0.006081608588418892\"\n                        },\n                        {\n                            \"bls-public-key\": \"0f0bd671199fb1b2ad42647cab032cb6edfd77c65a042fb8165aa2a31336373a514e8846b521b2ccf4ac3b9802341e0f\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935251013572736\",\n                            \"voting-power-unnormalized\": \"0.006047659417414799\"\n                        },\n                        {\n                            \"bls-public-key\": \"596f3d0e70be4958cf1279e59ff3630c425ef3a0ac9016a53f41bed463acbf4cd5e5f5f9d8dc8810239c8dd761f6b58f\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001872008348761437\",\n                            \"voting-power-unnormalized\": \"0.005850026089879492\"\n                        },\n                        {\n                            \"bls-public-key\": \"060d9560fb4432157c8791db5db20491e72e2f0d2dbff06db56106e7756085b41aefb0c7fc2f352e3c6a3856aa80ea94\",\n                            \"earning-account\": \"one10qxczyswxdgmfp7dchddqjvxwk4zap2hg8czf6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b1a0a8631459f7988e7c5ab6bd326f5c60739735698892fd3531014710864890ca8ca9426c22c287186903238703c883\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"c87565824a5046abebf7a4f608d1456a75623177e89d6537de8148c6c4d5793d00f234cafc7ffc9a5ba666f7825e0883\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002005520239801406\",\n                            \"voting-power-unnormalized\": \"0.006267250749379393\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d56f8d3f0e254b61f1fd0987f93e0bd66850f37bcdb6fd90d812d3ae0f44c4272356a42e7af289f8497096dddb4518f\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001872289600992862\",\n                            \"voting-power-unnormalized\": \"0.005850905003102694\"\n                        },\n                        {\n                            \"bls-public-key\": \"d7b175762a830636c064c092890fed925da065a9383c22ae594e7967c71117fba7b3943c55e137f8a0bf954da742fa18\",\n                            \"earning-account\": \"one1mzzw5tq377ju4puqvghzyjpnwag2p0na7h702k\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"53b2a0864a458ee46059ec7bc066342d1ce5a35dda55890acefad4fb58c57342d9f6fa97ccff04a31963aebcab02dd91\",\n                            \"earning-account\": \"one1n0ph69eqv8n5d5cz2zf54hf7q9nqdfyrzv3p7j\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c8a858c17af55b4631b9f6b98300281b34d510d84b9ee72110780ccfce0d540ae1401521a13825bd427439e43c68317\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002195707031707931\",\n                            \"voting-power-unnormalized\": \"0.006861584474087284\"\n                        },\n                        {\n                            \"bls-public-key\": \"614e8d1344bff19f5e1a6e7886355beba087cdc0947d2b5ad1eec36caa18325e0585534dd20a37546bf11d44f1e31e13\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002175049341498822\",\n                            \"voting-power-unnormalized\": \"0.006797029192183820\"\n                        },\n                        {\n                            \"bls-public-key\": \"a911bc83a580cf27c4db1e9e337571eb4a9a57e1a20683db4b2458d566a4486869085c7173e8d28b89743b4ab1ec9113\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001872008348761437\",\n                            \"voting-power-unnormalized\": \"0.005850026089879492\"\n                        },\n                        {\n                            \"bls-public-key\": \"56a139f6c146e4489008e85075a746f7d62864d68f437ed10e5d544a42c7e42097cb6e1ef46a444f1b048c8ae8d1ef15\",\n                            \"earning-account\": \"one1232aejapdp22vms5734v34dl5ch9mw3q0g8d68\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"57a8ee9c36352edb47e1a65f8c2342918887c696ab06ec04a2dfdcea741bebf851a42ec707d1ed94f287b59d5fd87199\",\n                            \"earning-account\": \"one1q9dmx7ma60jgwfh7zptzf8x67666cduvytsxex\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e643b9551730abc209c3a85de47e8bf15836a4ba90b4db0d15ac9f1afd7db48654824766946ef42a896a42179ab5850e\",\n                            \"earning-account\": \"one1ek6sd5su5gcdx6gn8cm7g22nelnmucmgq36zu3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"753e6805bfe904009cd8823ae5029e8fc1929926fb524d442dd763a3a5f2bb2e4e9a04c4b3c710fa79e83381b9934102\",\n                            \"earning-account\": \"one1ukhqh7g6yumqftee7xtfx9vnw37pudxgryceya\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8778aef9a71ae1cac71a8c86e07df5e0764d0b1287e03f92cbe0bb4ba4fa278ee8584d33048e69425dd6b7d732f9f887\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001815416070769608\",\n                            \"voting-power-unnormalized\": \"0.005673175221155026\"\n                        },\n                        {\n                            \"bls-public-key\": \"d4eaeaaff529c66ded783947df40503622ea653bbc3bcf7d2f6165550b76a053842a18acec09a230babb3579f6444683\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001815416070769565\",\n                            \"voting-power-unnormalized\": \"0.005673175221155026\"\n                        },\n                        {\n                            \"bls-public-key\": \"b45dc538a61047e8bb8105502f08768dd976a754d6ee558254f0eb81e439cf14c1bc7464bc628f1fabc6cd57bce8cd98\",\n                            \"earning-account\": \"one1qnmlhuzce59cp9nxclmy48f743ut9033zsqec8\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d7cf088579fda9c101b5eb1bbdf975c3d57a9034b70dbe9c43c99ccb149708ec4efc5a9d020ac7f4ab215473402cf30c\",\n                            \"earning-account\": \"one1kyqhn8yaj5kd55eyv9z9xnmm2jdjsdrf9savqh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b4935662c7e22ca724de5d0a75bfa6950cbeaa94d58e81ba9c7221f6d5958b5ee35e1d7ead71c8d223e06f8491b3550a\",\n                            \"earning-account\": \"one1m92x940drnudndflac926reqnaaflkz2a0csmm\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2dfbd87976f454aaa989391cdb2ad9fb46a386ad52042d1aaf18c4b2b28dcd05d7d272a5fa36af1f7b3a7d8348be6593\",\n                            \"earning-account\": \"one1r7kvnnxg5nm3q0adkv4g82erdj5ntxmklc552d\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"847ba7e5422187c2c0e594efa31840d117641d9a156ffc076d9194ab71f7ce95b59f2c00a822312da60f39f2d6437583\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001900759139749751\",\n                            \"voting-power-unnormalized\": \"0.005939872311717973\"\n                        },\n                        {\n                            \"bls-public-key\": \"cd3000f11dae857aeb5c36c9021bc5299549df4b74f783018e735817f4f5c170d54066b9f5b9de1dfb7aeebc606fcd8b\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"34434474f59a5dc5ff6e1569ea67bdf181b2e6a4771f1dd102b32791023be6e313938d31738fd2c12302ae7360a2c307\",\n                            \"earning-account\": \"one180767nt5qzycwl4rzhjaf23kmv30a9uvmlj8vs\",\n                            \"effective-stake\": \"6073064500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6073064500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002096370844365569\",\n                            \"voting-power-unnormalized\": \"0.006551158888642403\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d90f1bd3d6fd2803b5a68917c1917579479a4f24a59eba93c729175e26a5adfa6dd596273136c1be24f4b0d35bc1003\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001847837980383372\",\n                            \"voting-power-unnormalized\": \"0.005774493688698037\"\n                        },\n                        {\n                            \"bls-public-key\": \"45d3193d4264e007094a169059db65ebcfba5273eaf7e442aa048c881adf8640ff8432fed978425e129f35220c104715\",\n                            \"earning-account\": \"one1636w878jacdyphtj9kr4wjl6qqfqx4ztcfyt9h\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0a62f4f4e25aad7ac77845b5e5242570637d7918768ffc20b69629e918c1bb154c78c196c563b419dcc8070db187190b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002005520239801406\",\n                            \"voting-power-unnormalized\": \"0.006267250749379393\"\n                        },\n                        {\n                            \"bls-public-key\": \"8a38e74bc302f0cd1a200c2f6edc2184c3af577a6f07456f19af063940994d803012da53a399fc15279682e743bf520b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002005520239801406\",\n                            \"voting-power-unnormalized\": \"0.006267250749379393\"\n                        },\n                        {\n                            \"bls-public-key\": \"0a551033f14306b088545b07ee0f8919b6bbe41d1fe220dc37749b8fdc71ae01dc520f786c8dd3af4bc9cf1fc4b4168f\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.001836003611877340\",\n                            \"voting-power-unnormalized\": \"0.005737511287116687\"\n                        },\n                        {\n                            \"bls-public-key\": \"fd6dfccf944686498bc2017af7f27dd7f44c61a408e2b414eeee7f181d1aee309d8f89f36be9cdd9045616c6c1226815\",\n                            \"earning-account\": \"one1xc452j7x630q36epjmaq6xts4zgflnf4r66ssx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f6f4a2410f6290c23e5092145f4ba7c03e120acef009c4f2962f8d0d3cce64fa884deaf8006caaa134316d1163652e94\",\n                            \"earning-account\": \"one1cdajtyp6tq8uuu6q2xc8td25wyua3yfgfe27pk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"df4db8eec78a8ddff9ccd4db7cb679ebe0edaf21341fcb188583f0b084ad73bdf3e9685fbd78e985b8f7163481a68d02\",\n                            \"earning-account\": \"one1kcfu2k7st309m3zjuec7vg08trcsqe4c5rsn0h\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"457fead0248f80dc8a63afe6bd5b464d2ac846192b7547a72cda0cb69ea485eb7ed31e75ccfeb64eb1a985210948e113\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"6b2116f918043ef413d95771b56c2f2aec20062872ada45339ad612474acf1b6a2025c27d71d323e8512d0ff87725517\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"f9e741cb120862af08828345fb967e66eb3fc5e25b7a6688074b80cdd2acbb898af484110eacdb7ba300da9d39ed2b8b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001890416583681716\",\n                            \"voting-power-unnormalized\": \"0.005907551824005364\"\n                        },\n                        {\n                            \"bls-public-key\": \"2aba11e4239383c631fcf0796c95241508a2a60be7302080e356638141bc01144787b68cf75d130ca596ebd01b57b107\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001847837980383372\",\n                            \"voting-power-unnormalized\": \"0.005774493688698037\"\n                        },\n                        {\n                            \"bls-public-key\": \"a67d755e2216a1d7b86b8c710db2539ad8b6b31c7308ba38dcf89ecd861caa07f64231f1c5348c3b5778a239f7df1f11\",\n                            \"earning-account\": \"one1agvwswhwjd4p3lldznu77rx3nsp3xpyav9cnqc\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0fbce1adfb35da5d812f795f5acbfff10651309727271cf68cf6f8a21b36521dbac758ac874f7d5e3a01b7dcd41efb17\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001851400046584098\",\n                            \"voting-power-unnormalized\": \"0.005785625145575305\"\n                        },\n                        {\n                            \"bls-public-key\": \"92e8bcf14ce756c301d5bb450d13fdfd9e91e4a8b36cf281829eee4e00584266904ce869124ce650a6057b3d85f3e404\",\n                            \"earning-account\": \"one1ef4ea3dxe9ppzsxfz6tkv0zd693rcqvjuj5tt0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a80cdcf67bb376bace4d031d86d80c99c5eaa280438c3af70cbb0d3bbb7dc7bf3438a9ecf028bdc6692b7f7ba89ec503\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935251013572736\",\n                            \"voting-power-unnormalized\": \"0.006047659417414799\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d1ecb3757073c7886cf13562230900dcb1b63210816806ffac92b323bf28f1ea08f6ed1a6db37669adc044f05be9f8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001847837980383372\",\n                            \"voting-power-unnormalized\": \"0.005774493688698037\"\n                        },\n                        {\n                            \"bls-public-key\": \"7ca453b4916f08e7316cb9e0a80e03336ee70d364dccbab09496590da8807d01cef2cd07187a7d2c946d500936449a98\",\n                            \"earning-account\": \"one1aywupeg53g38z2y009mzuwdw5u9lwsy2e5yetw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e56dd21494d01f9017fb3281218c26451b3e7350260f4ff5946f943d70fe7e4e5e77968db3ac467ef16f9cf32c5b5696\",\n                            \"earning-account\": \"one1jvlazvl9njtf60226vhc5jkr5yf8lzre97t9ay\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"425321130e2da223e6da4e778b957f1573be6bc42d71fd991668c6e0e1fda5454715d926f120eb4ece80d41c2e15410f\",\n                            \"earning-account\": \"one1vp5wzt3qxwadm83f5la8ht6djk9qku3t6u5w6n\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a9c5cbb9ee93e31d42dde922a5bac46844c08d98cec14eb352c61dd7716b73d9f79bcee6da30b73747ffd00df8cae583\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002195707031707931\",\n                            \"voting-power-unnormalized\": \"0.006861584474087284\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f3ac5111ed5768a2dd10ab5e600d414ff8f27f6305280f959f0eff06727b3436a416223eb4676ce5ed4710d7539900b\",\n                            \"earning-account\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                            \"effective-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001842912241853620\",\n                            \"voting-power-unnormalized\": \"0.005759100755792562\"\n                        },\n                        {\n                            \"bls-public-key\": \"960d35be94f9915fb5e6f9127726ea6bc1ace83e34923b0157328ad4e85cec2463b36d0e4950ec645ef2d03f01c7db93\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.001836003611877340\",\n                            \"voting-power-unnormalized\": \"0.005737511287116687\"\n                        },\n                        {\n                            \"bls-public-key\": \"c965a109ff099836ee94ebdb3725d8319a14bef46450adb3fbb20720cc413b9369d6371d2763729711b9714e762ead0d\",\n                            \"earning-account\": \"one1p0m97qfps6552xfj3dlnxx7htm7489752w42r8\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"43be3ab583c52880b5880e3b4da7e79e007bdf479dedf6e9bda52edb1e3d735c87e429f30d518a1dc1709aa028355183\",\n                            \"earning-account\": \"one1uz5kkgl0s49lgdfwd99r077ykqh8q6rfg6xtw4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"519a4a3518b7c5e677586f4294b2af46f18b791f574fa11386f022c1c40bd5c22cb43545dd768fd9822bb91c5c1a7b87\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"59802bbf83b191bac69577dd8e85eed62b195702c41401499fe5a24025a45855b60108432858c8a79a9c243ffb36a887\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"d57cd6de45014b79f81a7752deb0c385a324b0efaed86a8c06a1b5d4212430d21a7361f2f799f434967d5558aea85e8b\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001882114274980589\",\n                            \"voting-power-unnormalized\": \"0.005881607109314342\"\n                        },\n                        {\n                            \"bls-public-key\": \"a60da09df9a6aba6754d2a2541ee41274d00e991ef1b14d7d6d889227a5a437d0b9f201f155e0e1ed535770b1f8f2a83\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001815416070769608\",\n                            \"voting-power-unnormalized\": \"0.005673175221155026\"\n                        },\n                        {\n                            \"bls-public-key\": \"9d77955e5e19e055332090de4ff89bb1825e9bb1626590043359ce0194e4a1e0c2cdfb82bb33818449445c347f31bc07\",\n                            \"earning-account\": \"one1ufedljrqf6js9y8pldkhn8gkdlh37v8fck76y6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8b8d0f5b87427fb352cc05de17ab1cce7ec2553778d4a1460edd6aed8b9fe3f928910008fd563e20d82401a6145c6f8e\",\n                            \"earning-account\": \"one1zx073yz0xr08acztcwexz9frtn7ca9wap4n4r3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"883b02bd5e72bf44bb478e5018e00ebf8bcba72076409d69436af0b6e74e85c4de1b6c2f2e365a0440b39db65f3a700b\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5992491538716030403053846.153846153846153846\",\n                            \"voting-power-%\": \"0.002068557735039971\",\n                            \"voting-power-unnormalized\": \"0.006464242921999908\"\n                        },\n                        {\n                            \"bls-public-key\": \"a1f03291f3c358caa913e4c14f8b1eb7ff73176da03c9d57b76b9d84be48900a9e50e0626e72b2661571df67513a130f\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"voting-power-%\": \"0.001963516651166175\",\n                            \"voting-power-unnormalized\": \"0.006135989534894296\"\n                        },\n                        {\n                            \"bls-public-key\": \"f772638b2125262f47fe20bd658508c1739c9c6d2be3dae9eb30670b6a04b09679bbdfabf88f1e134e1736538885a313\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935251013572736\",\n                            \"voting-power-unnormalized\": \"0.006047659417414799\"\n                        },\n                        {\n                            \"bls-public-key\": \"1471e1ec34c64eed9df5640f4c517d144395e45a2cc373dafec3ff9e7064b969faab23309f1511873419c1cce8382513\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896036732801260\",\n                            \"voting-power-unnormalized\": \"0.005925114790003938\"\n                        },\n                        {\n                            \"bls-public-key\": \"2220759df1bd1d68d40fcf746c894283e80088df83bde4618458dc6adb9f180dc0ae361e0d554a5a0f61d3d86d57ba97\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001890416583681716\",\n                            \"voting-power-unnormalized\": \"0.005907551824005364\"\n                        },\n                        {\n                            \"bls-public-key\": \"01342200c5b08864cfab8cc7c53d0e6364050394f9b1ab76372bced6fbadd867b6b1614842568444ebf3f50a9cce5910\",\n                            \"earning-account\": \"one1xqlftaek6xvgzusnfdxxdqy3qa55vrqv22lmal\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"77998df01000aded60893f5221187634b85ef119def044f91cd77d8b5d56398377f851f7e4254d887925723766f10a06\",\n                            \"earning-account\": \"one1t48zh3pdt5ltcsm2j9jffc0hwh8x0udujp5udz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1fa897cd45f1563053ffd61c04447e4be71791939eb793aeadc65a05bec5b44f0c54316c5c04d048c0ce80de2906c788\",\n                            \"earning-account\": \"one124a4e3tyl866jeggtcrrg56sz38ztuunsj9cya\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f01fc84c396ed30e2f9cb85ee7d233718b3651539c91067593acc78ac01dc085b5c452f9cfd6a532ddf4178da4711297\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002297116724608820\",\n                            \"voting-power-unnormalized\": \"0.007178489764402561\"\n                        },\n                        {\n                            \"bls-public-key\": \"dfbe83358f924eb424afc0b25c5f44d35a45ceb353446cf976ef9988e9a4147f634df1c8afd8b3661e68de2fcfdffc17\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002195707031707931\",\n                            \"voting-power-unnormalized\": \"0.006861584474087284\"\n                        },\n                        {\n                            \"bls-public-key\": \"e1ff573a1291604950b6b7a6bfd5a7608f517224afd2b4afe50f2172f507dcf9081372b03de372d1fe05aa3f89866307\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"4454ff2ad8b8027a0a00e9d0edbb139cd4e61a425d3a28e5e48492f00ab7a2db64df6efbce3013d74e2f320c30da4018\",\n                            \"earning-account\": \"one1hvdkvlavg7ej82yd0qrr08fvyvh9ajhz6ck6mx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b0a599b68d5923764b9eaffc0f7a366fe5e049f87a16f5855ea0cd64e6a78d3abf70a700f72cca26cbf7fa30ee2afe90\",\n                            \"earning-account\": \"one1yy2mhxf4hqyxhu7aelzqhydjg6c2wr57w5na7n\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d0c1d86af7924349dedd8e4fa2a7dd4f7e263424b29f9d7de47c7f1c2f289904f6ab68fd18f95f95848dc1b5c175ad07\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002206448932864331\",\n                            \"voting-power-unnormalized\": \"0.006895152915201034\"\n                        },\n                        {\n                            \"bls-public-key\": \"9b413252ce0cf2f289c1838b3e35a4b70ec6ef659bd23c606b8e93be3c2e4e065400310cfdbb299ea65bd357c7c9da0f\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001815416070769608\",\n                            \"voting-power-unnormalized\": \"0.005673175221155026\"\n                        },\n                        {\n                            \"bls-public-key\": \"3ef63d9e8c9f045c6a2fbc4488a92688337ae5b3386964057ac8784bae5eef8227f3bbb8e4f099102b62ed0c6917e417\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"voting-power-%\": \"0.002297116724608820\",\n                            \"voting-power-unnormalized\": \"0.007178489764402561\"\n                        },\n                        {\n                            \"bls-public-key\": \"101662ca51b09da1dafeef24844371e2c3e66daab77c07892439e137f0bab143da26361a6b18e665e974f619fd0ce397\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c625906b4a10a9772ad58099ab35cb0e959e5e7231a05a5bda30141b5448b4e8cbc4f623d4def4633f8845b48c09183\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001872008348761437\",\n                            \"voting-power-unnormalized\": \"0.005850026089879492\"\n                        },\n                        {\n                            \"bls-public-key\": \"0b7b6970db2069325c2b454a4d64d3fdfb7fa59e4b4a1076c0511a632e50cf1198afa9bdaa7e3145ead3b58e70079117\",\n                            \"earning-account\": \"one1hrsy5qzp2qhejteltnaw2qlm6eeuwdhzsp55fe\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0481607fa457d677650a287804a6a249432798b5eb8b292392c208e9fab59136f3b004b77c6159f87364a6eb37b3b504\",\n                            \"earning-account\": \"one1gnd2c4c7jw4h6fsz0l064nsg546v9sxknk56lu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c7bdda2e4705064bc3a4aee3eebb043f2cb89e0194310ae9076edb588483413f55fec59ddaa7ac7e8a3570debb955196\",\n                            \"earning-account\": \"one1tv2hhcar0c039s52jy5q0rf7pf75wys7dfu08a\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3cc36b809ac60b2aacf1c8a4e989c6f8d3a389d5d0a6940e36275ab7a359572baa8fae0d03e50a37d7ed27c4318ac10b\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001851400046584098\",\n                            \"voting-power-unnormalized\": \"0.005785625145575305\"\n                        },\n                        {\n                            \"bls-public-key\": \"01d685b429516222d81e2c748f68789b71e1d36da01d2c242322411d7f14e5bb83623a770cacf221f36db9daabac0b97\",\n                            \"earning-account\": \"one1ad6yqls22z9fcserd0ftt4u089g023gapathzp\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"02760cadc6ef3d3c1f8b66adbe182ebc252b451178efc168e856870311c8a7005c7060d28ea72c6c7adfab606989f413\",\n                            \"earning-account\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                            \"effective-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002268774439722508\",\n                            \"voting-power-unnormalized\": \"0.007089920124132836\"\n                        },\n                        {\n                            \"bls-public-key\": \"230b046bdf38de5567efdda44d3577918e40b6624e8cb1e7512d25b692f1f8c8615799d6a384ca31dc998dc71dddc483\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"9f28121f54bc1619b0f2534b3fd7b4c14837e385b76e28554a706c042f38d8ba075a3e2e46b8d5808b3b0d7cd7d0a80b\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001946114748294045\",\n                            \"voting-power-unnormalized\": \"0.006081608588418892\"\n                        },\n                        {\n                            \"bls-public-key\": \"0a2b57cc2a8574f56033ae74aa4e597012218bfeecaa3f3801a0dc3179b60b92cf99bac581f6b1ab8e6fb00dcc496617\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896036732801260\",\n                            \"voting-power-unnormalized\": \"0.005925114790003938\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f2efeee18134f78a2ce7d483599358ed228eb45e1124e8eb3cc741486d6eac76bdf6dfa2450bf54cb75a71a2835bf83\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896036732801260\",\n                            \"voting-power-unnormalized\": \"0.005925114790003938\"\n                        },\n                        {\n                            \"bls-public-key\": \"d3f1a3b936e89bbb11de531bd70cc015be4be97a91e2b110e23ef468ed5f78adcd948f1f95f844684e315811e38b7796\",\n                            \"earning-account\": \"one19d9u40zn3hzg2z0pkm608gsdqvg788u9vz09et\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"848405cb72b1a5268887ee61f3fee5c68ec579657a9ea210888d584091b4efeee4e87f4b8d87f12811e8d4edbf8e8109\",\n                            \"earning-account\": \"one1uq894ksyuyy6s3tlshxuyjxv8t9ses9h269yfy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3325cbb57ee9c83269f593be1bc8fe1cba61b98bb41da6834203fd9cb022a36ad89806c9c7a75dd910a0dadb9acefb17\",\n                            \"earning-account\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                            \"effective-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002234744477454086\",\n                            \"voting-power-unnormalized\": \"0.006983576492044020\"\n                        },\n                        {\n                            \"bls-public-key\": \"4c02492dd86d59fdc5c8a283e9e89f5d35d8877bae12faa18b7e1efe6422531419a488f9d44fc67b4ddbd048fb5f8393\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002206448932864331\",\n                            \"voting-power-unnormalized\": \"0.006895152915201034\"\n                        },\n                        {\n                            \"bls-public-key\": \"5c2ec551f85045ca67864eb9413ada94cee75bd3bf2b27eb7b53303fdb67f95a7695dad48087fb541955209a3c587a0b\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"7d9b1e9fcf190e3f201fd7a7df3b86d669001063884152c3ef824859e25c9e45fa0b00f59d81c62b807ffca0f8f37c13\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5318795759410811666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.001836003611877340\",\n                            \"voting-power-unnormalized\": \"0.005737511287116687\"\n                        },\n                        {\n                            \"bls-public-key\": \"aaf368cdc10490fe1f3f6e61f21456c1b614d8145a9b9c90aad073b119ed2b7bd5ac3bef722e34f9999f565f64172b07\",\n                            \"earning-account\": \"one1uz8fywak5yhjxa86rxlhkpg548nvwm4rh52gem\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bd579128ecf1606ec4700e31f1d6f88dbcc45506dd9e94461c8dbd102b44c5dc69ab762c7ec6d5332dbf24658bb4418f\",\n                            \"earning-account\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                            \"effective-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002268774439722508\",\n                            \"voting-power-unnormalized\": \"0.007089920124132836\"\n                        },\n                        {\n                            \"bls-public-key\": \"fa39249e9fdc2c7d2f05134ae3767ad2422b6796b56c0e1e1b64a170d5ffa90778736a403732c37e701cc6306d4a0e97\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001900759139749751\",\n                            \"voting-power-unnormalized\": \"0.005939872311717973\"\n                        },\n                        {\n                            \"bls-public-key\": \"adefd13f109aa759825fec4741aef8df56fa6808c9600da42b7c7e7a29688bb9855cf13abc2e562d80dda58d05546417\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001872289600992862\",\n                            \"voting-power-unnormalized\": \"0.005850905003102694\"\n                        },\n                        {\n                            \"bls-public-key\": \"fb473052abd5658ef17660045b432778369fdcba62addddc2d04f592df4a600d730ea196ea04c13bcfb8e2fc16d1ae16\",\n                            \"earning-account\": \"one1lnnwxzp6tu74tpfpw3k7vx7jw6l5zrkwjayhd4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4480f71a91530d47bdf3b73a3550cc357941d2a960fbe3a84396213bfbe87fe6a470af7c45b27a386764d5a20214438a\",\n                            \"earning-account\": \"one12w3r7435c05ntgqs5y2fx0xzx8yzhec6spm49f\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7ee08151e824b093b6758c2358418739c45e9076345ac60f199e95e97ba9008025c88a33fe5599b56ef7cc82a8a50510\",\n                            \"earning-account\": \"one1979srjehvcepgmaak37hsxykwmarsfgd25j8nj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b2ec089fe7af1194c317b2135d6acac70dd6fb14264014d4c2917c0f80dec29180fcce3d5a3b382024fdd3d02d2cbe97\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002206448932864331\",\n                            \"voting-power-unnormalized\": \"0.006895152915201034\"\n                        },\n                        {\n                            \"bls-public-key\": \"a47dfdc18f6118de254649ef09c356372eb8b34939c10e8f32cbe17363d01fa7694f0ca409de478c21233b3402f0638f\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001900759139749751\",\n                            \"voting-power-unnormalized\": \"0.005939872311717973\"\n                        },\n                        {\n                            \"bls-public-key\": \"c9a6fa4a2a9c2a2ae62c2531d3374d1259355d9ff03aa2b6c47b975e9e32a2993afc00e0763a10bfa428d7bd43acf316\",\n                            \"earning-account\": \"one12qgse2zaq66rgdsrvvsc5ueh07m3vfrvl6j8wj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ad53fbe4f397ec9536d2b859bcb4e728f5ad6df3a7cba92f7d611c6bf894b0a89adfc8aaf1fa9694a0719782c5fdbe0f\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"08a261d6b9a0e5eabbf07335605a97917c35158379a3a00da1065402ef7ef49759e5bedc39561182509ec0b3c171b003\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896036732801260\",\n                            \"voting-power-unnormalized\": \"0.005925114790003938\"\n                        },\n                        {\n                            \"bls-public-key\": \"179c14684b1d39715563d3cb0565782b37a231c056886fe5cc0c7547a7e95439f5feab4199ae25b8bb191ba4b4d93397\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001872289600992862\",\n                            \"voting-power-unnormalized\": \"0.005850905003102694\"\n                        },\n                        {\n                            \"bls-public-key\": \"3ca448ec1158475459c2b8d97cbca0dbca9fefff79b2a18c7b76c918bd17708448cf0c8f52885fa68b4de825bfcc7e13\",\n                            \"earning-account\": \"one182ququ2ytzpxldss8hkp6lrkd9td8vglvsfk60\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f6c38f1a9b256850069aaae5329446c50b72c0f0ffe76bc28cc8134afdd0b40d024a038454fc85409773a6ae2645b487\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"6905e31b0a8c2b5890f0af8dd6f81931e893120f0db983ce1406fa742161db12f9e28b7095fe43aca3c6a6d9b24c8897\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001946114748294045\",\n                            \"voting-power-unnormalized\": \"0.006081608588418892\"\n                        },\n                        {\n                            \"bls-public-key\": \"a472acf4f4f3faecb283217b4bf0b99eb019c55dc079afacea88695b63a1b7f3371074981db77929e3859fb2929e490b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001890416583681716\",\n                            \"voting-power-unnormalized\": \"0.005907551824005364\"\n                        },\n                        {\n                            \"bls-public-key\": \"59cd2977ef1f46ade77b8dc56d26883acf9f1e8b05eea76f1a35f4ef636d241d4d63c35a7aa3873ce64bcca76018e213\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001882114274980589\",\n                            \"voting-power-unnormalized\": \"0.005881607109314342\"\n                        },\n                        {\n                            \"bls-public-key\": \"3c524d0860381396ceeede803f59278e7d961bf9000a0a29460cd4f5cff4d35f8b8b8adf88c84a92edefb935d4b0f780\",\n                            \"earning-account\": \"one1jvmnrl8w5jspm6na9cqe6hjzryw4t75j2fgkds\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9483de51dd025c42877e979eff401d1c7cbcfe7865d414b144af3335d73a7839b4bcc74ac8ea5f82b0e286342318200f\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"voting-power-%\": \"0.001963516651166175\",\n                            \"voting-power-unnormalized\": \"0.006135989534894296\"\n                        },\n                        {\n                            \"bls-public-key\": \"66ab282fbb88b2dddb564dee12064f61cb11041aa18ed553338867b0ab8a3f4ea7f48a96ef98a81fbb10bb853188a78f\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001890416583681716\",\n                            \"voting-power-unnormalized\": \"0.005907551824005364\"\n                        },\n                        {\n                            \"bls-public-key\": \"149b64db1423d6ff7ff8e192ae39cc836ae06bb8b8fc45c1aba84dd87329756ea0041bfb62535d082312a6fcca988b87\",\n                            \"earning-account\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                            \"effective-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001842912241853620\",\n                            \"voting-power-unnormalized\": \"0.005759100755792562\"\n                        },\n                        {\n                            \"bls-public-key\": \"333ecde4bf0e8c1b4e1410d92694f0f3ec93a0d90fad285ead06338e8834ad97b244e2d7c1eaa575652725cc88d0590b\",\n                            \"earning-account\": \"one1kw82fz834ghptg85cghudrpezqmxmn2k49y8kt\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"62b57cb99dab8121831d5ee3ce6c1a63ffe3b4f0ce75be53b2aec232317bb1ef8b647f8ff62d610000042e45ca99dc07\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"de8db4849f50ed858bdcc6028a38c2755a7c66dfe6dfcbcea938af7308bb87928b4b188cc53de84dbec7fc698103d803\",\n                            \"earning-account\": \"one1y7knq5knuppehm6426y46hf3crtzga4n5l9hsl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a12729cb8a958ec2ee376f223b47f04bfe7b002e180a4aecddbdb2023ca3b59ba3bcae1c58fbdab18cf45dae3c1a5697\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002005520239801406\",\n                            \"voting-power-unnormalized\": \"0.006267250749379393\"\n                        },\n                        {\n                            \"bls-public-key\": \"056f26c7d3cfcb67a696918196a696ec1b77a6cccca0b5ceabd7e974a52cf642ab2d4fa57f63d1850d689f3772d1980f\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"cb6a52fd791c3afb7a0243fa1b5388ce451707ecf94ef7262905929db69588d68ad027c8736d6a868195ab740a459c8f\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5452375670577985714277777.777777777777777777\",\n                            \"voting-power-%\": \"0.001882114274980589\",\n                            \"voting-power-unnormalized\": \"0.005881607109314342\"\n                        },\n                        {\n                            \"bls-public-key\": \"9db4ba11e160d494c7165e89bcc337910a63bd5c1be97165445b8933d8321aae017dbd52ad7bbef0444082dce7be0804\",\n                            \"earning-account\": \"one1azaekx9sj9jsarv0ydu96njfn8vxtg28cc36x6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"324135b2ca130b5076d2a4a8e9eefa8a0e5b9edf053e4d91dd09daa37a53169a5d82b4dcb228f8f864f38dd533872118\",\n                            \"earning-account\": \"one1rzjmz262das9t9kd0xluxlgmv86n4qw07y258e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8a111783eeb07585dca863adeae5e55696a88b8be08f3b45cebccd75ae27e162a5411f353830e6511bc60ed5b2ba6895\",\n                            \"earning-account\": \"one1h26xfag4xtsm0v865dq2f749mzc92fpmkjp5lv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bbd0666e619c0c3f10f44619a8f4a872e48b13cda499b8c8750a05c5dd714e7e49cf852055fd7e0a4910f9ac24964e83\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"voting-power-%\": \"0.002297116724608820\",\n                            \"voting-power-unnormalized\": \"0.007178489764402561\"\n                        },\n                        {\n                            \"bls-public-key\": \"b045a47f8f8976fc489ee79782e13fd1bc5fa682b6df4eea158aa2cb9ad313b168cecdebd79723aef2dc85cb2ac14d93\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002206448932864331\",\n                            \"voting-power-unnormalized\": \"0.006895152915201034\"\n                        },\n                        {\n                            \"bls-public-key\": \"efbaa34fa66af2525ae1c26b2db7663a96a7b4d67bd2324494d144dec8475ec7c532f36ef770acf5aabf239f01052207\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"b9d80fa33835f8795b43046f393aa956f3eb010c908d5c23e5f42317bef40070f6deb9956f3f3717683b4116a797f603\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935251013572736\",\n                            \"voting-power-unnormalized\": \"0.006047659417414799\"\n                        },\n                        {\n                            \"bls-public-key\": \"b300c9649d2ac7c7669543fe9bfa9b52afd0853d32928cbee765647a94db5a11b68a6d8c71bd4ba0e476fcae968d3e13\",\n                            \"earning-account\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                            \"effective-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001842912241853620\",\n                            \"voting-power-unnormalized\": \"0.005759100755792562\"\n                        },\n                        {\n                            \"bls-public-key\": \"dbff877032c318186e1e9fc0e51f2f241294a083cc33c9d07c47e6f3d56871a8f217018f252006313384d14269f4f68a\",\n                            \"earning-account\": \"one19jk2td0pwk50tqngxrusda6yfu53dde826gtpw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6b4519c16b2a410fe6831c70d82ac0d9c8dab4d480913c24b30bc3b14e6e9c98063e8544f0b707747731f2e3e39f6e80\",\n                            \"earning-account\": \"one16f4t2d8ur45gksnpj8869lle4a0xnhkfx0r3va\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e87c6169c06c08e1d777926e325717891a17320eb18a0e36f4237ec19c6693a548d7b37a157b0ad88048241659ca0797\",\n                            \"earning-account\": \"one172p9es0epthd5zvnvnztw2nqsgc40vxamr6u5e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f400d1caa1f40a14d870640c50d895205014f5b54c3aa9661579b937ea5bcc2f159b9bbb8075b516628f545af822180f\",\n                            \"earning-account\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                            \"effective-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002234744477454086\",\n                            \"voting-power-unnormalized\": \"0.006983576492044020\"\n                        },\n                        {\n                            \"bls-public-key\": \"0ac01bf36c064ca3c695c1c5fcc04c79b28e64f6db5e3338aad46159752579c64b59a4f9d683528bcb5084545905ed97\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002206448932864331\",\n                            \"voting-power-unnormalized\": \"0.006895152915201034\"\n                        },\n                        {\n                            \"bls-public-key\": \"cb18edb21369848307299d5903e70c4a505a5efd55e056e6ff9d8ee45ad921da84ca808c544da8126a8ae3951ef9ad0d\",\n                            \"earning-account\": \"one1rwgsagmzt7pn6v3p9sqkss4whvjr8humsw8nxl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"711e58fa111fc60019f05f0959ca57cca4ef3cf83269be59937db1a725ddb36938628d6ea4e48623819fba475b58e481\",\n                            \"earning-account\": \"one10z246ajxuzzzmszsfudhdwlehtrrczs793uzw0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a1c07365e8016aefe0ca4a820c281445d4d5e89bf68ce2b9e9f15de7b973364ac2b9e109464295c8a3d7e124629ae197\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"2f78bac8fc8e2dbe67d711ecff25eedb160607dc92db2b079c07a98fcd84a99c2fac0e06fa53705844f2f5af9de1e08f\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002129080470561246\",\n                            \"voting-power-unnormalized\": \"0.006653376470503894\"\n                        },\n                        {\n                            \"bls-public-key\": \"fdf618fbaab9588f74ac1b681018f474459afb047afec0dc9df9da8381cebe85a08790bf49f121cba75c2939da9cb68b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001890416583681716\",\n                            \"voting-power-unnormalized\": \"0.005907551824005364\"\n                        },\n                        {\n                            \"bls-public-key\": \"91f2651bcd7416fdd2275338588ee02473753a5f1f8ca26aaf7d3d6b5fc402694593f6fd62ce8d02d00c696af9514e02\",\n                            \"earning-account\": \"one1av3umx02y6nqxrg02w7vg9rc6lg9rlzpc8uvyv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"290746460c1101eec00d8d51138309e7767edab00cee8fd6b9a7d5389e77331ec139ef1a57ba79e704db4f60e8c22307\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002175049341498822\",\n                            \"voting-power-unnormalized\": \"0.006797029192183820\"\n                        },\n                        {\n                            \"bls-public-key\": \"19a42db0ada7e82134f72dd17e20d2d3ba2e36a33dc8a93c5fc4e40d472403538af282b1a427abfa61371c4814818e13\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001890416583681716\",\n                            \"voting-power-unnormalized\": \"0.005907551824005364\"\n                        },\n                        {\n                            \"bls-public-key\": \"8e20d06a6a03bf3a2bd2cfc0a8faa820316b2b8fab35d317744316a0c5c65936cf45ce0d8744427920b6dba7a8df0c0a\",\n                            \"earning-account\": \"one1jg000qx9whdgkvc8kyy8muq0utfhj3qukekakr\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b8a6d147e05adc2b642f4e4fefeb3575bafe5172818c8e7f2f19f59434a3a01b24269a1630fb12b309dd6d5dc0a28d01\",\n                            \"earning-account\": \"one10vn0ww3w0m92rtpkuz8u2v8cgp462h0xufj9dq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d4987f2d4013fb3cc422b1812e37804cd01e7ce82fd9eb4e74653b325f3d97afc33c0bccdf3233a5b9d4ab4e856c590b\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002297116724608820\",\n                            \"voting-power-unnormalized\": \"0.007178489764402561\"\n                        },\n                        {\n                            \"bls-public-key\": \"b68713738f5385048ca97b5188f331b0763937330b0ce306548f07d5401065538d7d1cbcd4bae5ed2d0eb1c9c36cde8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001847837980383372\",\n                            \"voting-power-unnormalized\": \"0.005774493688698037\"\n                        },\n                        {\n                            \"bls-public-key\": \"949e0e2fa9643fac1ddfe01c91254ca2e53cd29aa8a37dbf52df804a02a6f58bd34f9f7b2f7c84eeece714715459df83\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001815416070769608\",\n                            \"voting-power-unnormalized\": \"0.005673175221155026\"\n                        },\n                        {\n                            \"bls-public-key\": \"18c2767428893999b576c838c1228623ea457ab60b38e342fa5cc4366e3712133106436bed0e55c08902ed7062e3f091\",\n                            \"earning-account\": \"one1tkfscarayuu296l97uglh7y5ffudp8cey4ystd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"31da8512a419dbe5ec4e230cb8d81fa6493922f964d7d7ad4374388cc61edfb55592e568583b8f10871a78918290ab8b\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002206448932864331\",\n                            \"voting-power-unnormalized\": \"0.006895152915201034\"\n                        },\n                        {\n                            \"bls-public-key\": \"91837c58919453b930214243e337164aa1cbeecdb271766144517575c9cc5c07a530996e28f62c4de5b836ac13289017\",\n                            \"earning-account\": \"one1ks9tknun5el865he676ucd3dljzqldpyps83m9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"570f7bb9c98bd4b465edbb5777208e2202c846076eecbde29ab9e3a5ccb78d5ee3afefabcbd7c7267199f17c86de788c\",\n                            \"earning-account\": \"one1t02rq9q6jlt59j7hp289h0sjm08xeueh5p2n7x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"087312bc5441442c2af69cd5de25ea3621fd96691a1e99750c876dad7b8b636869c4acb614cafbddb2299c3d5b566b04\",\n                            \"earning-account\": \"one1vz3wwhsmanteju7tnmues33wfsxrd6au9ctggf\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3dacf918e9fd3d9d160722efb0f851c4da1f47f28566496ccf402719ba6b4bc435d9d52259e80674e71c78b622ea3283\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"11c43fa0691d6f706c57f8cc85f094388bd0f6b7edc95b5167fc3eec61283dcc20c92e92d5377e37eb28bbf00c154513\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896036732801260\",\n                            \"voting-power-unnormalized\": \"0.005925114790003938\"\n                        },\n                        {\n                            \"bls-public-key\": \"08aca306ce6f5b79f0f58c8fd9e91f4a0864ea7354646a5c0d38f8266f93902ac43691ee73d0578d707fc364d6655987\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001851400046584098\",\n                            \"voting-power-unnormalized\": \"0.005785625145575305\"\n                        },\n                        {\n                            \"bls-public-key\": \"1b329b6e99ff7d5026b3b907dba62a8977a01b11ca1e8b507c6f2ee42d4614e176d32937d9f9ca8411ec7f537da1eb83\",\n                            \"earning-account\": \"one1kfngqk6c2fnwjt9yyne6pqqeux0su3uzq0y5uw\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7045629124502666665500000.000000000000000000\",\n                            \"voting-power-%\": \"0.002297116724608820\",\n                            \"voting-power-unnormalized\": \"0.007178489764402561\"\n                        },\n                        {\n                            \"bls-public-key\": \"323bd3f38afce4f27e35e5e1c7a6cd4f3f024817fc180fd73e3880e26fdd8824092f9707d216a1c7d278c6bef71b1493\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002129080470561246\",\n                            \"voting-power-unnormalized\": \"0.006653376470503894\"\n                        },\n                        {\n                            \"bls-public-key\": \"b03e54fd1267d5b94ef63d755cd928517d3cf4719837014c37d120a7de2c5fbd6d87f9387e591810a35960e4963d7a83\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935251013572736\",\n                            \"voting-power-unnormalized\": \"0.006047659417414799\"\n                        },\n                        {\n                            \"bls-public-key\": \"c1e5df086ad98ada37ca3075125f91aac090ef13487551442d3692c326c6d85351d86f9953171bebe8d562142c5f6f17\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001935251013572736\",\n                            \"voting-power-unnormalized\": \"0.006047659417414799\"\n                        },\n                        {\n                            \"bls-public-key\": \"56992d9f0f295da3451e9444bdc080b5022fffc9063e5b34bcbb3483ddb643e36b3fae91ca59e46725c9eacc89253717\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7693545507375997025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002297116724608820\",\n                            \"voting-power-unnormalized\": \"0.007178489764402561\"\n                        },\n                        {\n                            \"bls-public-key\": \"87724e5c55dc0b0494657d46ce42f934863481aeccb2ee5dff9216b37a0bdf4e92532e20c6b6559f77a4f62a5c4a9797\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002005520239801406\",\n                            \"voting-power-unnormalized\": \"0.006267250749379393\"\n                        },\n                        {\n                            \"bls-public-key\": \"aaa8db05503a6578916af15f5c55e9c1f541dbf38979e6d5f6be6c2502dba836bedcbd14b1e11e241302a8ae0bfe530f\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"851e2ac1306d867851b618f0343bb1ffe2ca5d6cacc642defeb603c807138320bd7f33d83184e7865cf5ee0cba242a87\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423914161022409523800000.000000000000000000\",\n                            \"voting-power-%\": \"0.001872289600992862\",\n                            \"voting-power-unnormalized\": \"0.005850905003102694\"\n                        },\n                        {\n                            \"bls-public-key\": \"51c513a867c026f966e4c1a46676b760029990755727caa0e68a260e59cf7128358bf7bb20a54261d0a7b2f786061e03\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"f1ae282031413945047e6b52361b542ca1c565b6909bc40f4b924ea6ee7e77afbfb755faaf35f40dfe0ea649a926ac17\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"36e590fb7218eff19874c8c9b9cdde42f93ae823780b031370d2fa711f544ae00ec8358fb9e715a52e222c3e9e05b787\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"cc5d617fc09fe51e17c662161d31775939f5d2c697281474470a4a93273083f702a384bcaa9cb2abe80b9a1921335a13\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001872008348761437\",\n                            \"voting-power-unnormalized\": \"0.005850026089879492\"\n                        },\n                        {\n                            \"bls-public-key\": \"62b08e5b27033432965a81667acccc127b9e709d243299ac0d961edf7f0f90055c43c9c7ae55ee830d782cf32f711207\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001847837980383372\",\n                            \"voting-power-unnormalized\": \"0.005774493688698037\"\n                        },\n                        {\n                            \"bls-public-key\": \"b3b16ed2405cdec87d276aabd97f7b99ab30115f4f91d7befa89bc80ce5c0cf150ae8813c5b7d3edb9d51f528d29b995\",\n                            \"earning-account\": \"one1pp0saz07zrm6n009mfwfz68a3dpjyxy7u9jgpq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d0215dc5b03b98ad218854499e5ec74e5c4c924113c58b2aae4699ade5e9da9dbfb00784a5644ce728dd81919906d783\",\n                            \"earning-account\": \"one1ps5vuzdestghqmmyvwrvfn3yxq82cs0saunded\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4a034d3423a8f70ec406315fa777f081201b28ef94d4b385b4aa4059a657eae806ee228c0d676c855d5fe17f51b71487\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688193623473592496545454.545454545454545454\",\n                            \"voting-power-%\": \"0.001963516651166175\",\n                            \"voting-power-unnormalized\": \"0.006135989534894296\"\n                        },\n                        {\n                            \"bls-public-key\": \"16c76b244e7cac2017f505234579991d68e40f6be0989e501da98e6adc271526a69b4ffaf232b1e137a85ade615e740b\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001815416070769608\",\n                            \"voting-power-unnormalized\": \"0.005673175221155026\"\n                        },\n                        {\n                            \"bls-public-key\": \"6156e8b6d3f6093dced13a858071eb0b7f49df8baa56ab3c6da0c74a0a0ff020187e288e9414402ffbd05b8b5080c910\",\n                            \"earning-account\": \"one1ddtng7666jlwd854zek4sjp49kzsqcesuja3cq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"114c651af75381bca51c11c613a553ab622d1708001bb0f3e56d7f69009f5a9c611dd1e2576e345802766b064c3cea03\",\n                            \"earning-account\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                            \"effective-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"voting-power-%\": \"0.001820949490105145\",\n                            \"voting-power-unnormalized\": \"0.005690467156578578\"\n                        },\n                        {\n                            \"bls-public-key\": \"55d36ffc75e6be957415dcfb8bdf3235f6e95167d644bb6d50ddfcc868594f852b7ef520140a5d44f3a0723a16d0d417\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001815416070769608\",\n                            \"voting-power-unnormalized\": \"0.005673175221155026\"\n                        },\n                        {\n                            \"bls-public-key\": \"6fdfc981f2ff662c933948ca93d21cc0bbc1fed007817771c6f4ac55d717f4e7611637fb4e4b71c8f5e5045c2ce2b417\",\n                            \"earning-account\": \"one1dhmp9kw7te504rljkm3v9ez70smh94t8j8qvjk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"90953c98e139de210191c57a01cde123cb7d2de7517da0270c78f0fb8ec222341165ca1569077dd7951accc0b5070a03\",\n                            \"earning-account\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                            \"effective-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002234744477454086\",\n                            \"voting-power-unnormalized\": \"0.006983576492044020\"\n                        },\n                        {\n                            \"bls-public-key\": \"7961fd0c5713f9db3c6d8e8798673a2012df3d9ae24e868b88a8b2dbe7efae99e908a2445089b2b4909aaa62533aa513\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"voting-power-%\": \"0.001997492804007669\",\n                            \"voting-power-unnormalized\": \"0.006242165012523966\"\n                        },\n                        {\n                            \"bls-public-key\": \"3dd79d723b8aac2182660a12cc173dd76973c1f6c459ce4f3b797cfa0d9114924f12cd211d36d7356318c75026afbd13\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001815416070769608\",\n                            \"voting-power-unnormalized\": \"0.005673175221155026\"\n                        },\n                        {\n                            \"bls-public-key\": \"7e2ac7bea191b33fd9efe9326e727c4a0c357cc7e0019a41085cc5cf2d01aae6c2ef98746185aa99ee2837d2d079638f\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001815416070769608\",\n                            \"voting-power-unnormalized\": \"0.005673175221155026\"\n                        },\n                        {\n                            \"bls-public-key\": \"d2603e11fb0bb0b0b86003aa4fc6ba865c8395d3e460774c9d38b477018dd42f01bcfe6ae5c160ec77c667a8b46f0a18\",\n                            \"earning-account\": \"one1e4kkxs2vdlzp6aak3vr8c5tvajx6yan8ks06x7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6ea1f8a48bf543b3f00cb326369ea00cc64bfa09e6c5327733abe1168c318cb2638ba06125be408dfc2e851f72c91808\",\n                            \"earning-account\": \"one1esntk8jd4srs0ekxfdvjzt8hna8p53hsla2t7x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d265a1f25935f77afeec19f8faa08700229ef4cdd274bdcc4758f0ce24651429c506b09c9d5642fcab0ed9bd9e8fa301\",\n                            \"earning-account\": \"one1qjjdk587lr6lj7jkc4h8t9fkn52jc3w0jf2uat\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f846837dfb601eaf18ee7760e5bc1360663cdbef04f6e713bcc5aacede14afa51fd55793c603f132a7c652ecbf76d707\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"ca8cc5da104b4c7dd59396b60d9125e96b34bf7e34412a8bb589b7c3b6a3b3848e33d18d5684160f544b09580ffa8c8e\",\n                            \"earning-account\": \"one1770w9kmstj3j5ylhvfpesp5q8ss3gnw5d6pe54\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"379749bc0edc1b539d490be19d2640e049f074d32fd5b8281eaa891998e14155f9dffa7f3de730630f1449f5a61a8893\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002129080470561246\",\n                            \"voting-power-unnormalized\": \"0.006653376470503894\"\n                        },\n                        {\n                            \"bls-public-key\": \"75e991e1b581086ae2f97d47db63a07116e8d4f2b705beea1f1165f936f7d5e91d324ab0c10a4704a89e47d7f194ab97\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5786620563641565630570000.000000000000000000\",\n                            \"voting-power-%\": \"0.001997492804007669\",\n                            \"voting-power-unnormalized\": \"0.006242165012523966\"\n                        },\n                        {\n                            \"bls-public-key\": \"04cf6b75d961be22599741dafb25394a1fed85e0232744e645a8720acbb9b8f2f7a46909b1d70935e500e4ad0f940d8f\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363398335951832063485169.411764705882352941\",\n                            \"voting-power-%\": \"0.001851400046584098\",\n                            \"voting-power-unnormalized\": \"0.005785625145575305\"\n                        },\n                        {\n                            \"bls-public-key\": \"2b4fd7205d7c5762f0e5b9d8ea4f627c1bb1d7d4014c4b97a687f144873d4a951c3c8f1700c08000b94855da058a6c10\",\n                            \"earning-account\": \"one1vnaudg4v6rcrp4v43ptz7xv6ddpdtpdtxun6fw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7b3d2d588c731a78607a8d8043223bb7f87b4292543ee2ecc3a663e89d92b7a16007eef23084937bfdb2df780970f487\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6654613648187800475155500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426159665255551518181818.181818181818181818\",\n                            \"voting-power-%\": \"0.002297116724608820\",\n                            \"voting-power-unnormalized\": \"0.007178489764402561\"\n                        },\n                        {\n                            \"bls-public-key\": \"4777ebcf87fd9516004f92c7f3fb94e3cb9111e6fb4da681d61d790ed0fbf10aa68aed5fd66d2714896edfb708fdf797\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6186645989755397323227777.777777777777777777\",\n                            \"voting-power-%\": \"0.002135578220408228\",\n                            \"voting-power-unnormalized\": \"0.006673681938775711\"\n                        },\n                        {\n                            \"bls-public-key\": \"0d983a3e3a490412635fa110b577e63909a8b8d6c7b9714d4855373c19f1c96aa8291b911b0ccbee102ce329c92a0d0f\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6167822386082581250000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002129080470561246\",\n                            \"voting-power-unnormalized\": \"0.006653376470503894\"\n                        },\n                        {\n                            \"bls-public-key\": \"028e33a20bdb4c3badb5b32107899b3e6abef57af2f9d330e47c1318c439938164fb9c4d6eda4c133089648e33400987\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5259154849321025850237500.000000000000000000\",\n                            \"voting-power-%\": \"0.001815416070769608\",\n                            \"voting-power-unnormalized\": \"0.005673175221155026\"\n                        },\n                        {\n                            \"bls-public-key\": \"62e25aeaf7a575bc33507d2d0807218b9cad622c06b2887d7d9645c8341a83dd49f1868169672004df2db5b29fd0e707\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5734991053217949375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001979670730759322\",\n                            \"voting-power-unnormalized\": \"0.006186471033622881\"\n                        },\n                        {\n                            \"bls-public-key\": \"9d5f3a3464b1cd835417837400af8b31bdd9e47de11cb131c4f7024a52df8329074b11d54296d8ba26d57fe7b0bf9197\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5506388760218700000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001900759139749751\",\n                            \"voting-power-unnormalized\": \"0.005939872311717973\"\n                        },\n                        {\n                            \"bls-public-key\": \"727560b71d3913af37761f21905eeaae5e789e4ba6eea5343b84727aa125e8730486ad4cda9d162d2595edff55593297\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001872008348761437\",\n                            \"voting-power-unnormalized\": \"0.005850026089879492\"\n                        },\n                        {\n                            \"bls-public-key\": \"2e935bfa72ad37e549100c95d0d2b153c0fe5786589b2c853eb91049c95fef9bdf80a4ccd2fc0f0b1431ff2dd248eb8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5353079237187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001847837980383372\",\n                            \"voting-power-unnormalized\": \"0.005774493688698037\"\n                        },\n                        {\n                            \"bls-public-key\": \"f06e3520dc2cc1f14751aae2e27959f9a78c8e06c9ef87104b68b5d9f0cf09587ffb11eb0be0fde522ac6f0fc400de01\",\n                            \"earning-account\": \"one1ejt8qtycp3un63wup46m8gq0t2smddux2cer97\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a25141a3771f001f9a519406e1c36babdcb90a8f31d5986dfdcb5e4519515b3070420e27869ac6103120ae75b005b50b\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6391954324902141291216666.666666666666666666\",\n                            \"voting-power-%\": \"0.002206448932864331\",\n                            \"voting-power-unnormalized\": \"0.006895152915201034\"\n                        },\n                        {\n                            \"bls-public-key\": \"ff64e929ee6bf37983e13f495437665416c0f6e7862b56c0caa84f932ff48fe68c379e4d483e6088198d25023e949b87\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002175049341498822\",\n                            \"voting-power-unnormalized\": \"0.006797029192183820\"\n                        },\n                        {\n                            \"bls-public-key\": \"06f8dc945fb93c437d8896ae5cfb4143c065bf525eb3c9ba1144b1c542098fee332e2b9b543d028df7bacbda0fd5868b\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5492708221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896036732801260\",\n                            \"voting-power-unnormalized\": \"0.005925114790003938\"\n                        },\n                        {\n                            \"bls-public-key\": \"527d82b5fb83572c02c8f19565d6eb73da8bde325e2fb1ab2c9d961ef5f7d32dd4156064d882f40a762eccf93775d197\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423099389653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001872008348761437\",\n                            \"voting-power-unnormalized\": \"0.005850026089879492\"\n                        }\n                    ],\n                    \"count\": 250,\n                    \"external-validator-slot-count\": 160,\n                    \"hmy-voting-power\": \"0.680000000000000040\",\n                    \"policy\": \"SuperMajorityStake\",\n                    \"staked-voting-power\": \"0.319999999999999960\",\n                    \"total-effective-stake\": \"927021402355045252898153255.211760849192535780\",\n                    \"total-raw-stake\": \"934033266545064491280199209.757215394647081234\"\n                }\n            }\n        },\n        \"previous\": {\n            \"epos-median-stake\": \"5809875578600392857142857.142857142857142857\",\n            \"external-slot-count\": 640,\n            \"quorum-deciders\": {\n                \"shard-0\": {\n                    \"committee-members\": [\n                        {\n                            \"bls-public-key\": \"0110a0a1e55cfbe6928e1997f26a0cc8264c61e43a76c66ded32a0ca40b610656b20d4677175f80df055669a50390c03\",\n                            \"earning-account\": \"one15jv9h2rwtczgmre923nde50jfz0sjs8c9gnwpd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1dfd33e1ba1f48640d64bd0a878b21840758f44c6d5845d9e0e804997d3207aa2c40d04b2eee3dd03cdd7a6453395508\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001889537703500485\",\n                            \"voting-power-unnormalized\": \"0.005904805323439015\"\n                        },\n                        {\n                            \"bls-public-key\": \"630a2b02aa7f83481f1c83c28b6a9b177401b457796fd63b1d1c53c81310b8f20174e17683aef21dd8a65d34ec026914\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192861\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"38d7ecfd350b40b51408392a7d589a6aec2315053c94226fe8aafbfcf9575497b55e3a90e3e1639c09fcf4db34c7d503\",\n                            \"earning-account\": \"one1curhrds59j26ldue4x8sx3glf6dxnfkk3lqa53\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"395c6b530de2aa32bd0e826dab68ae37a774d9f6d28334d3ac322d61d2a471aadf2a50c81adbdb8a110d0e6850621910\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002040358981262674\",\n                            \"voting-power-unnormalized\": \"0.006376121816445856\"\n                        },\n                        {\n                            \"bls-public-key\": \"070d3e9aed0dd70d8a28d3974f39cc535ec2957f0ce2ab61eccfde53dd5777648ab8f666f582319e6ba3e43c97ca568c\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"58e71a7b7de2ff603b62c8aa36686e89626404b6388279929a3f96a6317964df9a8cdada09421a38cc859bc428009910\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"0a186205b9ac93d83d1d474c3e548715e8c3dbdb4882d60c8ff69b01e950b6c4f3db5b680377701299345f17a509570e\",\n                            \"earning-account\": \"one1g2rm7ay0htx5tlkgqwvvwk4sq2tgm5wratfzq2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f296c15a7015503a346f542a9da87eec2fe5c06036c12fca7b182c2183484848d4f8b1edf0c5d71be59ce52dda9fe190\",\n                            \"earning-account\": \"one1g4g72jk5cumlmnkzzslzhlv9vwp85clx2mmzau\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4c65f90e6354e10d190f213a8665c77d97f52b3d5223047f5ce1d8e8dd783c32d3d2e70a307661ba32241cae513d6994\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001868725391554852\",\n                            \"voting-power-unnormalized\": \"0.005839766848608911\"\n                        },\n                        {\n                            \"bls-public-key\": \"1737cd597cd9aba25154b71ea5281aaec3c4f89920548a1af8eaff6e4f2cc1e60613bc3666ab5befed3a90b5c5ca5d10\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"65876ec707a3ddb5c5ddae8e9e954cdb8e9913806df683109d8a4cee24f03bf32db85199859241c7f0b221c8b00eb394\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"0742d2fb9e19f3956255c4b866fe2c80b37a32a9c08eab25db88ac58c7f883e1a05faa7df005b5b102d361fad272940c\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001906413728900708\",\n                            \"voting-power-unnormalized\": \"0.005957542902814714\"\n                        },\n                        {\n                            \"bls-public-key\": \"304254dd9e216f9014bdb75e7acdf17760b7b3a70bf2e7da751728f8ca66f3bad26c971c8775803d0d2a80bd84402e94\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"86bc72330c7698f2e439a3fdbd0c2ee4cdbbd1a5ec862bd57933e0fb228f8089548f94877b305a16d3e24610e8c4da18\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"ab9098928a35c724dc2b11be0eacb6bc86a4613b069ff6396415f6a10e6265b710394d9077db7070945d45cec7fac484\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"ca23704be46ce9c4704681ac9c08ddc644f1858a5c28ce236e1b5d9dee67c1f5a28075b5ef089adeffa8a372c1762007\",\n                            \"earning-account\": \"one1gh043zc95e6mtutwy5a2zhvsxv7lnlklkj42ux\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"36dbe94650fcaa1814f0764c5fdc2810defade312a243424ff0053dd6a43cbf9b7907fb267d8848169f1351e8ec4318c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"330d5bdd896ed7c08f39475881d96fd21baf4a4b81abb2d2c8009e33ffec56398166a2b5e2c814d8cb0c18c792b06e84\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"f1db95e67a4f1baf48a2dea65a5172a402d1369bc9d05422fb9539eff5dfa2537c2112513736ad626923092bdc0b580b\",\n                            \"earning-account\": \"one1vfy349h4y44244zf3zm47jwc7z4jdwpgsgdtm3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"50b20b4eb89041aa4715e87e4aa6430e674658959d8be657d43e4d3d4c35d7507d6a40aec5188218dcbb5460e354fd12\",\n                            \"earning-account\": \"one1jyvcqu4k0rszgf3r2a02tm89dzd68arw5lz9vl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"225065e248691c59e004808b45733e3a84b53b977580e193057c337dafc43bbf39963bb37b9564ea39d72361c78fbf0b\",\n                            \"earning-account\": \"one1zsk49ypjc540vy2663gpn76d8z0mg577d8x5kw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"78c409907db47d0872eaa7ebeb35f2ffcc9c9a69b1179676f9783b39fcefe66e96060305419561ac7cd0b0d70f950007\",\n                            \"earning-account\": \"one1jyzcklsqmr5r5qvvyh0r0e2436ss6vteap69kv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5b38c8854996464cd60656ac0afec5b460f9451124fe576229aafd8775e217e0e6f783ce56235957adb137c7e7caa30e\",\n                            \"earning-account\": \"one1el39ku64kkdpmrv598d8g63r9ftd25nc8ppuly\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"af0bc63711223af48d1627943ab803da15b36cbab111ed538745024071305a698c837f4df735c8027e3f4c2775dc8704\",\n                            \"earning-account\": \"one17nfgz8rtgpl3nlws5q9tdk9y3puyqf847az6ne\",\n                            \"effective-stake\": \"6376324000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6376324000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002221695043783829\",\n                            \"voting-power-unnormalized\": \"0.006942797011824465\"\n                        },\n                        {\n                            \"bls-public-key\": \"295d06ba7b2b58896bb68ad324f58399553e3d5e774a80170ff8673b3b9fbb7e5604bdacf381b7d598cd471a3a49b190\",\n                            \"earning-account\": \"one1ekllcv39gdpac9497gc3894ddsehkzlqds7ewl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c7f37568afec98cdd729e6f33b6b095284a96eea59389bf88239f640145c4285e342b6936968b17b9881ebf306546f17\",\n                            \"earning-account\": \"one18jsru7gjz8tex8nux0xe4agffwz2mvq62xjp2x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f770f6870b1bf4da303e792009741d6c930ddb70ca2783f1bef640cffeb54fce1b359937943c076ae09b3fda5c35d198\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002327977302388300\",\n                            \"voting-power-unnormalized\": \"0.007274929069963438\"\n                        },\n                        {\n                            \"bls-public-key\": \"d7e8cdb1d7f19eb70d60c639a9bce8b4054dd7c6d00fcf636b69472b51f16ce3933eda6161f8dbe38d9426fa3131e590\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"voting-power-%\": \"0.002243570629857720\",\n                            \"voting-power-unnormalized\": \"0.007011158218305376\"\n                        },\n                        {\n                            \"bls-public-key\": \"092b8f3238fe33bf9a2bca8cd3badae60e138fefdf87ac5061479be2730ee3fc7970e0ab25eba38e693004972fd9cc0c\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002040358981262674\",\n                            \"voting-power-unnormalized\": \"0.006376121816445856\"\n                        },\n                        {\n                            \"bls-public-key\": \"22721801c98e71190bc64eddc04b2d422f5f0fff4b939654e00e4063754d2ef0921627fd6f96f1db112724e139c05318\",\n                            \"earning-account\": \"one1uzsl45tzdn652xkqdc60w42hehrc0nrd7lj7zu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"fcd1036b8c7d59006ffcf8e1ecd3faf567ddb25155fa505eb2082ca886c5fe0f8b62556a78438b526777ed9692ccfb0d\",\n                            \"earning-account\": \"one18pymc7sn6e3jk07xx3gagrfgmkcmgtuxa428s6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"172793ea5eec637a28bc210df85acb932683c38b37b8a8e6ca8e75b0f8c00c0a9195d55ee6bcbdc36e57137681378005\",\n                            \"earning-account\": \"one12h79f9lmyyrzfcf08a2zzuv4mct72e0vsyfcax\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d1f4132b9beab5ad84b9038bcbf0ab9a6d23ca739f1bdaf8d9020fec83b7eaa741b78b66c00a09ce7a7c906bc18310c\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001889537703500485\",\n                            \"voting-power-unnormalized\": \"0.005904805323439015\"\n                        },\n                        {\n                            \"bls-public-key\": \"4eeec0a689bcef30dc3916f20400d94ade5fd5cb10abf5a866301d430cad912e26e3621edad95cec194fb43bbea4d610\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"voting-power-%\": \"0.001853790404014693\",\n                            \"voting-power-unnormalized\": \"0.005793095012545917\"\n                        },\n                        {\n                            \"bls-public-key\": \"4a3cb3bf33c5133e5fcf801a52db000b62ef82fefa98cd90f8d12eb807dfcdc87d12a5c28bd6b34a6a228863ed05b190\",\n                            \"earning-account\": \"one1t0y5jmv84cu4eqeev2cczpwr63flrz22ptmnf8\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d179bf6082a2436540c5fe1d84cdd2868377af042ee18e17876d5f8e22ad1aeb8ef4480271d5b29d15bc8c9228f7611\",\n                            \"earning-account\": \"one1qt8z2h76unuz4jh60hupddlct8pes30hfclm4h\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6bfe56ba0a591b8f1001b201571561e0cf9e682bec8f8a6d8ee2c68ac7daf56bfa40810f1f00855c38d10a0127f46104\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"7e5f9270132f34b5c9dc6c79644bf79a790a42baa1bebe76b6477aac912a9dc1f0251f57c2a06306ef7fd7d7684d9483\",\n                            \"earning-account\": \"one13ar9c7czmg5j26fcpwqckj5kx5kyk02j0nqvjr\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"dd505fe02982a929949a5bca34eb9f98ea7201f473a71f189582161b89866880611a37bd27e0f66d5be4b4cfb7f48790\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"943dc0be8753c7721dd718b749eef9d84ddfaa1e894e3d56ba78a5b496acaa40edc6c3cad7819e5f06ced9ed554c7200\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002040358981262674\",\n                            \"voting-power-unnormalized\": \"0.006376121816445856\"\n                        },\n                        {\n                            \"bls-public-key\": \"11a25753e8d36f97580e6e15790ea47e22ad84a8b638e880e42bca765d9587cacf3ac1fedb3cef6f4087b071bfc1278d\",\n                            \"earning-account\": \"one1cfq2v4kysk3vdrjtjju2q7d2k8qa204cqcsqsq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9fe2ce7d413b0b2930d8f00c99e8500780541aa5d72f9b0d19ba6364d8dbadc30e14ea2885f6d65bf7272158ba113307\",\n                            \"earning-account\": \"one1v525e2ddyq5xpecnq9f3gtpz6dlggg93l2uac7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d26eb416ab1003578cb8fc6cc73dd0fe6362aba6b255658f3b9e9fd5c7b3bdfd02692bb0aed6c2b7d932176145717888\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002327977302388300\",\n                            \"voting-power-unnormalized\": \"0.007274929069963438\"\n                        },\n                        {\n                            \"bls-public-key\": \"f88e94c51aeb58cd7f23c9c3b406cf086daa725e30f2c39bf8fe5bd2251dda7c5834bd2da8f6ca2c4f8dc706869b9114\",\n                            \"earning-account\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                            \"effective-stake\": \"6358454076952000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6358454076952000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002215468647592459\",\n                            \"voting-power-unnormalized\": \"0.006923339523726434\"\n                        },\n                        {\n                            \"bls-public-key\": \"715f484e66a6c6e4597dacea5fedbb318414c73c6e82b092a7d3399f5410a5b1afd5ebff47ea58e08a0012fe6eece98c\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001889537703500485\",\n                            \"voting-power-unnormalized\": \"0.005904805323439015\"\n                        },\n                        {\n                            \"bls-public-key\": \"dbe838331c502c24366bfae521c30cef2c118c34f8a53b383c9c80d57acfc2ceb1fc979d046063bb1929d7d1d0803a84\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001859423857146414\",\n                            \"voting-power-unnormalized\": \"0.005810699553582543\"\n                        },\n                        {\n                            \"bls-public-key\": \"7dec5e3f6909666b5e280e71eb6bfc7ace6ee39378e6752447ac2fd9a93cabc79c1309dcce0e670ebd78dda60ca9a388\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002040358981262674\",\n                            \"voting-power-unnormalized\": \"0.006376121816445856\"\n                        },\n                        {\n                            \"bls-public-key\": \"18254f06c00b071310ce55ba3a340485bbb61ea7b4765441e43d0c13eb617954417fef98c8c03937fad8dd9c33ef9108\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002040358981262674\",\n                            \"voting-power-unnormalized\": \"0.006376121816445856\"\n                        },\n                        {\n                            \"bls-public-key\": \"82585333306c11090db50c2dc3a81d990ed7965d951e34574c6d4f8bf6ec8eb90cc0ea9ed283606544fb9bef9da66984\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"53be1c32403da5a866ed6122655ff70b938c511d0eb340309baa414f98fbad61f6b232ca10ad792d01e4c8fcd5b15388\",\n                            \"earning-account\": \"one1xrksyam05h78f47l70rtjsk5njy8u9f0ty995h\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7503134874470000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002327977302388300\",\n                            \"voting-power-unnormalized\": \"0.007274929069963438\"\n                        },\n                        {\n                            \"bls-public-key\": \"43ad254f6cbec380f5f99df0369f96fb6ba7c7518d89241939faf6d9d69c5490afeef05b421fffbf926b479390fa0b90\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001889537703500485\",\n                            \"voting-power-unnormalized\": \"0.005904805323439015\"\n                        },\n                        {\n                            \"bls-public-key\": \"7f6caea9935bea624504e0b56e530f609752d476bcaeef5bf755a52b95f1193baeeadfad8db27f41546155902e967304\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"1e62c58154766ed812630c9a1db3f00f258bf42285d954bf049d36ba75c7c4ce58dcfbd0bfe50e1455d8f60313fbbb94\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"27172b5ac7b5382ab6b3ba3fa39f6904c6b65a72fc4a640b1caf21237e10b545db003ff9a249c8bf135caabfb4a48c90\",\n                            \"earning-account\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\",\n                            \"effective-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002207877285947754\",\n                            \"voting-power-unnormalized\": \"0.006899616518586732\"\n                        },\n                        {\n                            \"bls-public-key\": \"d0df50839455dfb62abf044123c4db6fb697ed44e68d843deafb8e549a554489807d8cc379f9ddd77134e45e48c28814\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"c90d5c4253e7ca83fa837c5b065227fe06629d6c1fdb6ab1b68c2afd7454f1bccd24ba4779431ab1fa8a77ddd739d288\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"6bfaabe3a12ebb4c8991f1221a995fb0a2756b2d48ddfdfd2fc3df42e554187d473634cee58159dd81ecc24989b5d38b\",\n                            \"earning-account\": \"one1m4909gjt2g4fsl2jw95kxmjmja2ka4cc6d4sgs\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"89ee8d5bc9ff2db7315525264c13c133b91516a78516d9574c347b08d5f8761dad4e1a8d3a8ba58e003e250a8c804490\",\n                            \"earning-account\": \"one1ktud786d0w6ww8gt8crra4mg6zyl7xf7xr47u6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e611da8fa8887d160ce8d76b0d50d45f18b89e6652b2cbcddf8d2bcd48c1758654c5c8cb907138e6a3fc51847d3c6918\",\n                            \"earning-account\": \"one1hhf55rl0jzjyshlw4ftlm25ylxhsc5rrq7rznd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d320742fbff3aa1877aadb9316a865edbdecb0fb74fc973272d73ec1deaff131b653c3ab7a2b26753c717347f450a00\",\n                            \"earning-account\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8354225889561732707889521.000000000000000000\",\n                            \"voting-power-%\": \"0.002327977302388300\",\n                            \"voting-power-unnormalized\": \"0.007274929069963438\"\n                        },\n                        {\n                            \"bls-public-key\": \"0ba26722c41987f55796edc8baf049f63e48e2f044675f70adcde17a94247bd2333ecbce6c1b9cba6ff770dacbf33500\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"a7d5341af7a9cb69bcc366a41a98d0eeb3e9bc68e2a73d9e3799825738bdfd6b183d0bbbdf4448d6bf064b6e0e16f218\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001889537703500485\",\n                            \"voting-power-unnormalized\": \"0.005904805323439015\"\n                        },\n                        {\n                            \"bls-public-key\": \"7a0af4d7e6f2a82f1afff03bcf4b59457b3db0c1a582d42e4c4d15a2091ff175eda5e194e4142c856e28abc5cb2dfa90\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001859423857146414\",\n                            \"voting-power-unnormalized\": \"0.005810699553582543\"\n                        },\n                        {\n                            \"bls-public-key\": \"1c193e6077a36d290a29d4d6c45ad2cb7163ba98f29029b3ef968a5e464561806ef0d86ed0c81e98d83ae4f87d0f7309\",\n                            \"earning-account\": \"one1rs666h8mfgm33kqdkzzq4s6klem4d0hk9lldc4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ae02cceb71c354576b7af662695a24def1f646f71e1fda19b541cded3fb43076d68f03e1160009414936b434035f3911\",\n                            \"earning-account\": \"one18hmhzhfnm47sjwcaz73tjhz09zay4jrc2stagj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1bdbe548a54e3aeb6598f5618bba513efab205a98f3678c471d956538c74cc39a3070a95edd032671bf1332cd59a5990\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"voting-power-%\": \"0.002243570629857720\",\n                            \"voting-power-unnormalized\": \"0.007011158218305376\"\n                        },\n                        {\n                            \"bls-public-key\": \"a79f863b7e9a77b599c82756e4a635661223de7166ecca7d2549c9c5457b6e2c3e4ca3247de1259cf4fa920646bb980c\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"5366ee770e6bf00cbf65d683bc0aa00ce600adcd644ac6ba078f0f825fce10283bcf19fa6c08ebddeaa23a8e2f63a108\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001868725391554852\",\n                            \"voting-power-unnormalized\": \"0.005839766848608911\"\n                        },\n                        {\n                            \"bls-public-key\": \"a9a83a4842dcaa3133f34e333764d3e33062a5669f75e9faac6e734360781984a3a99367f995dfda3faafb648236a991\",\n                            \"earning-account\": \"one1uc3xg782sslsrkyffvaakmy8dw0evl0zzq06ts\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6faad32b862cd7b52ca315cee857de8aab3d4b6b04e5b6c46223b8f4a49b6420019abab977378bb0577ca8ece8f7e604\",\n                            \"earning-account\": \"one12p85puccq3h6fgdtvhvmu2932yutv8xgk3lynk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"aeb4aafa7d532057357b88ed869a785595b004abef728e16ba082fad875637691f26b63e5f44b6f3195be9e6e96ca580\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"289eb7f7c6b601dc83534734f500365f4fcf2189a5813b806b9ef6a777183c697d5fb22c07a26d19b63f1e10fa88e50c\",\n                            \"earning-account\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                            \"effective-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.001994032052289168\",\n                            \"voting-power-unnormalized\": \"0.006231350163403651\"\n                        },\n                        {\n                            \"bls-public-key\": \"4f50f328160160d3773f434b7f769c7eaca25e08daa717bc4062be94237da4d0fe973087b68c3e13dfe198682266c218\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001868725391554852\",\n                            \"voting-power-unnormalized\": \"0.005839766848608911\"\n                        },\n                        {\n                            \"bls-public-key\": \"03a3431e0d925662bc4da71966fe34933a50d29388327d608f8ead841132c970b8d22244f0c8fca157c08c04e8751787\",\n                            \"earning-account\": \"one13rtrd09sxez76efdqhmtamfclt44ew02auyhwa\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"479b35fc9b04c2027d9818fc42133eab872ad89c1e4d434523e3ee06f434601e3c52de77a0fa1989bb0ff4e0fb9a0c19\",\n                            \"earning-account\": \"one12su07r3rk8hgg8e36gds92z5370t8yhjyxpp0h\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"29d31f3f888359f1a01011db65a0685b3e9d74a33a346fc7cd178cdb5384372f33a541c3c6526ff3e58ea5c11db9be14\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"a27eeb7976954d052078c8a3512449b61886418677131bde005441dd4738c90a783474bffd91023631a4a62286563b96\",\n                            \"earning-account\": \"one13fjjymcva76vzn6e4ykde77wt5j4jyr60u778j\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"738cb0203a6c01c64031e22a76b117061b85f499faa446e0b7f0bf81804b61302626729afa0b6b2073dd77c044b49093\",\n                            \"earning-account\": \"one13j7h7mmlmlypxa2aefuuf5xrw0vjn5ahp0zfr0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"356b0732524bdd3a2ac6f2a09aa29da9a71b73167f42c64e5ba2b3322d82f79ade31b56efe61782f25c354c1dec28f88\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"3122d1a0c32421c267cfa8c3994357608c9868a3460a5d325c70d5f7c5b2e87626be14c50262d6fe56cf80ed735fde8c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001868725391554852\",\n                            \"voting-power-unnormalized\": \"0.005839766848608911\"\n                        },\n                        {\n                            \"bls-public-key\": \"fe0593f9a38821750623a189db19294eaa288b86efa46b0fc2c9e100174a51717e3695fc143dbba963800acd9dfa4010\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001859423857146414\",\n                            \"voting-power-unnormalized\": \"0.005810699553582543\"\n                        },\n                        {\n                            \"bls-public-key\": \"742e7f9c7981dfd9040dec06014c8f0dbbb1f117871ed97b0dd5f497e264aaedf9673c835062e26793ff4c0438978e94\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"voting-power-%\": \"0.001853790404014693\",\n                            \"voting-power-unnormalized\": \"0.005793095012545917\"\n                        },\n                        {\n                            \"bls-public-key\": \"bdbfe3ebd8ce4146a62353f7554e404c8a61c5ff5ce0f90a93406e878302f5f8a975ff51d5cfd59d27e1fae7d9e9ff80\",\n                            \"earning-account\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                            \"effective-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002287412676869589\",\n                            \"voting-power-unnormalized\": \"0.007148164615217467\"\n                        },\n                        {\n                            \"bls-public-key\": \"adcfb3af32463919cb1a8d4cd8fde30d7d47442c771a978102f553ec90d84637d26a8b9a201c738dfa0353ebcccfaf18\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"c27e8e691c26104d809022a33226fc9df0ead19f35d030054dfb847f06df9277a44b60d64bb8616ce2b911b76a7e2498\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"a2a26aec4321e583695ad776e4362f751bbacc73596aa95a1e0d1fe728f9a4c4287fc53e32b103d6000be6d4f62aaf0c\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"a54fdb9bdb8fd96ff9c58002ab528e2b1515be0dcf45a92ac03b47c0995d93ee41901d611cf13d92c20fb03d6abddb08\",\n                            \"earning-account\": \"one1tfrpfvrgj5tnxj029xsdkl33hmrsry056nrpvt\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a9c788233dda857bd19233cd4b547bcafc4211e6cc6cfe43ef2ccd0ac576ae944683b27a003fa95d246b71579164e00c\",\n                            \"earning-account\": \"one1su2vsv854y639m0qlst580ctx7sm4zwsy60xq7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"458e57f12ea9c1a92c237baec06a0d0335ad458d894f8d6fed29a1fb54948327096e85d196c240ef4178f2d2dd6cee89\",\n                            \"earning-account\": \"one1lml39n0qemt2gg7r6kwl0gerue0q7sr4u6rqjq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7ce51c0b6a7f532ba775f189f9700df7c5341fa7e976b42489a469acf79f83c8b7e88a7e35080477a9bdd7cf3449be0c\",\n                            \"earning-account\": \"one13n974xtdzxu4uu2ugz8e2ml5p8t94d8x3tep3q\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7858003787207954545000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002327977302388300\",\n                            \"voting-power-unnormalized\": \"0.007274929069963438\"\n                        },\n                        {\n                            \"bls-public-key\": \"c83de3a015e1727a3683b487ae46ec6ed7137d59c8d001f493f098b4402e39833e794a2fd7f482ed90a7c0ad274ec50c\",\n                            \"earning-account\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                            \"effective-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002287412676869589\",\n                            \"voting-power-unnormalized\": \"0.007148164615217467\"\n                        },\n                        {\n                            \"bls-public-key\": \"818fa92a1fb6d63134d96f73231bd39330c5fecc5d8f5c124f508a4d2a9d7c99ba69c6601218b6647fbcd06e95b84500\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002216298460300979\",\n                            \"voting-power-unnormalized\": \"0.006925932688440559\"\n                        },\n                        {\n                            \"bls-public-key\": \"5124782156094cf9aaccbcc5eb0f79d25db882352cf21b490c8cf70136d20405520659fdb4961396d3bb363ec4d80e14\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"6f05a4b70df21c5ab7d50ae639dfa879d50b26f01cb7ac47f098ca4e81df2767ff63feacaaafc3d0eb61b99f5782d384\",\n                            \"earning-account\": \"one13n974xtdzxu4uu2ugz8e2ml5p8t94d8x3tep3q\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7858003787207954545000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002327977302388300\",\n                            \"voting-power-unnormalized\": \"0.007274929069963438\"\n                        },\n                        {\n                            \"bls-public-key\": \"77b4edba0422fd50576782828227cafaca6d0a7d4a333ca58b2f148142b682aee7cb16547d4f8033644288580362b188\",\n                            \"earning-account\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\",\n                            \"effective-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002207877285947754\",\n                            \"voting-power-unnormalized\": \"0.006899616518586732\"\n                        },\n                        {\n                            \"bls-public-key\": \"25f199bef86ed7855f2a980925bc35d7209ebdaa686fed791b9494403268a22b8daea8cf84f7071315840e66964baf0c\",\n                            \"earning-account\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                            \"effective-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.001994032052289168\",\n                            \"voting-power-unnormalized\": \"0.006231350163403651\"\n                        },\n                        {\n                            \"bls-public-key\": \"70c68e596625ec8804d6e6b43f8c1964adb674b5bf897582201714bfc309b6fa67915390ccf382f8cd58a4c851111388\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"375347947f93314b12b13ccfdc8b6f95651459e99b42deee0e3855ee94294c4f3bb5be3f87c034e859514e3f3dbca988\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"ea781dff5e22998622b7b19c189b8bbf4050384238853fe3b8f2f0a80401364589b5e67ff54f05878fff42d7b48aeb00\",\n                            \"earning-account\": \"one1uevxtwdqehq7k2v5jdm6mz4m492f3qpja4e36q\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7f5eb00ed4b061ab486ab66c28ec70ee3bd3f88b3348f9b4f6ad9ad820daef4b5242a780737021b5a5f675ab78f53e8c\",\n                            \"earning-account\": \"one1pq9zk56dsapwracyx0z7lgz32603hzfk7f2t2e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5a34b281d855a854ac7eef415a51c632d5de84a63e5500f4929bc9860a552a36034b7a318c271c87c8765b4ae4528413\",\n                            \"earning-account\": \"one135nj2r8jd88uffht52q4zs88h6vpwmy6f88vjr\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"514c26eb13b9ac9902dcd6516cb086d366ba6cc7415d79a227eab1c7517791ffcc53d0f8ecbd1c6722b18c17f9f3a590\",\n                            \"earning-account\": \"one1uwkgzutlp76qhvuhtlvhpd77gyuxlm0w3nj0fx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"54e176df47fdf17c32c996ed028bf50ccd1e4d7c051dc73131b0541f40ee5169c1cf64f530b5e4c590c2188686590f0c\",\n                            \"earning-account\": \"one1kq0xzzzlrpkzslwfesrgmp5e7umuxl3m3dgk27\",\n                            \"effective-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6564935358809289141000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002287412676869589\",\n                            \"voting-power-unnormalized\": \"0.007148164615217467\"\n                        },\n                        {\n                            \"bls-public-key\": \"4542fda471c1c8fe5b7770a78dd96b927bb3a96c227c31aee258f41a38210c7e459e564c01aaa112616f0bead2288e88\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.002088264741697555\",\n                            \"voting-power-unnormalized\": \"0.006525827317804858\"\n                        },\n                        {\n                            \"bls-public-key\": \"79dae4be1cc8dfec7d85b0bc13f77cb8b2ee5d423f0bfc56e057998547d1b588edf7966a3365a9cfe1c9ea225d279590\",\n                            \"earning-account\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\",\n                            \"effective-stake\": \"5750861573420217315666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5750861573420217315666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002003765908877053\",\n                            \"voting-power-unnormalized\": \"0.006261768465240791\"\n                        },\n                        {\n                            \"bls-public-key\": \"01907faf33066dfd001fa0ccccf0dbf5bac13c45a06677fd476e4a5e88b0bfe68a36bef81b9439092762f6dd053fbc10\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001906413728900708\",\n                            \"voting-power-unnormalized\": \"0.005957542902814714\"\n                        },\n                        {\n                            \"bls-public-key\": \"382cb200d415c25b527e6fe2772c093de9af6fdecf596aa03a35026f2766f550b5a16be316aee427341214f1b7d3b00c\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"a52bbb39d1fcac96f538ce3bbd75537134720ebb98b8076b2b9eb3b0a47de2e81d666fd930fabeac6c015b39d427de80\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"e8b723de3c01f2b62942321c32293ba3498e6c4dbc4e16ef7ea503df107a8c0301375a0d601c5306b062ddba3628ca88\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"f963fd2b67f315843c01d8f91c9c34132fcba3476169a5766d6583c93cb1262673ba3cb6acd3d089e31736fdc1537104\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"b7e3288b3b06d3cf7a42cadd23f81e57c23e40ccb0dd31e3fe02685a49070dbe37634b1cfc1567c427cdaf5cd2f42590\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"33a3d789c0ae207be83019bc6211f8d0f4b2351d4227abc5b2c63a8bd079a19389936556f1cb750debc32b7b024e650c\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"ae420cc03a18543fb2e57e1434b52fb65981465265b60dfd375fee68c910a893e93db23b258da658449ac055d8a7eb0f\",\n                            \"earning-account\": \"one1h3ztpa75txa2ng20jzzekqzcfmxx9v83lpeuaz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"aa4ee9698743ec6114251796861422de7dcd182ccebf6aafe65e9bda48577330061e2880851437f4d054b57fcb74ca10\",\n                            \"earning-account\": \"one10jg0a2wv5fk9042us876xt57ej0lqm6xvm5vxu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e90c79600e596ff981d872d812b0644fd928eb556f369476db86b02be3143990d734e69aa8e0c6b6cf29003ab697bc19\",\n                            \"earning-account\": \"one1tvtrynm5rp8gsxf69hhy7mx0uljlzguxwxgtjy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"39accf250b555fe249c838b5a969f49c7f9f69c55387b1b830daa4e8e72c28f5a7e7029c9a5916e474adef933162fc97\",\n                            \"earning-account\": \"one17jzfd3pwu4peerl26yxr7rkynv8385dczppnnc\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"60de05a9fc29a07778323ad5f5bc3036499d579801795b02f019109840dc7f6ec68b8f52b5e4b8ab0dd3a3c6d6296018\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002327977302388300\",\n                            \"voting-power-unnormalized\": \"0.007274929069963438\"\n                        },\n                        {\n                            \"bls-public-key\": \"007282a93589fa2522e3e9c659ebd1629ef6fe98921d888414818fe88c3043aaf1619a8960edcdca48928c8fce51ff88\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002324470526461696\",\n                            \"voting-power-unnormalized\": \"0.007263970395192800\"\n                        },\n                        {\n                            \"bls-public-key\": \"f82ed7e0ba50226342e714de452dbf9404702d670ed08b43d022acf00ad3dee18e5ff8961bafe4692de5e220d7694704\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002324470526461696\",\n                            \"voting-power-unnormalized\": \"0.007263970395192800\"\n                        },\n                        {\n                            \"bls-public-key\": \"7be5a3cccaf391b49424f48a538f0375c403ff85995f62d74c7c40149a57954227545db8f4f07ccd9584348d9e232194\",\n                            \"earning-account\": \"one1mx5mz8fh0v27kvjwyujh4s697z026yexqp9fyu\",\n                            \"effective-stake\": \"5550219253079850000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5550219253079850000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001933856342068108\",\n                            \"voting-power-unnormalized\": \"0.006043301068962837\"\n                        },\n                        {\n                            \"bls-public-key\": \"935e4e9c467c60646c7acf7a30156b410bdd1aec52403344e964ae33c35e635aa9c1976aa7f1606437bcd2853568db90\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001889780645046260\",\n                            \"voting-power-unnormalized\": \"0.005905564515769561\"\n                        },\n                        {\n                            \"bls-public-key\": \"3c9ff839972f68a9179d90211d086252ac66f04d975934a6e91e45f805ce746b8b59156bd79cfac414c9a77017c11680\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001889537703500485\",\n                            \"voting-power-unnormalized\": \"0.005904805323439015\"\n                        },\n                        {\n                            \"bls-public-key\": \"440bb29c6c3669419befd3de2b53c69fb51ae916b9b023384b557ac5163ae8edbceb0b73e79be904ded2de879f609d80\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"voting-power-%\": \"0.001853790404014693\",\n                            \"voting-power-unnormalized\": \"0.005793095012545917\"\n                        },\n                        {\n                            \"bls-public-key\": \"5282fa73531fd810ad854be2bdebd09d1efaa463564c6bf52624968be6b707e76672bdc3efe6e7761e8ee7bb8e5e3b92\",\n                            \"earning-account\": \"one1kgyntj9yg6vvasmt06g5w7x8e84z84hnlx4eda\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"86385311e94f22677c74aaf2c8a7da682301f2e071354e3f88dab16d3177f482b8e691716e77b9dfc6df851d94560e00\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"c84875782fd5dd9bc92a57b7d516992e2c3a6408b3f6dc8c3f5c188ab7dd1878007f18b748cb51894b38ba13f3404090\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"voting-power-%\": \"0.001853790404014693\",\n                            \"voting-power-unnormalized\": \"0.005793095012545917\"\n                        },\n                        {\n                            \"bls-public-key\": \"87201cd5b68b8a11bab717ee57c6ba8b586be721517d2b9a48cd5690065dbafc71b10dc85bdf39bf762394ef8add9f00\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"voting-power-%\": \"0.002243570629857720\",\n                            \"voting-power-unnormalized\": \"0.007011158218305376\"\n                        },\n                        {\n                            \"bls-public-key\": \"8bfdb9ad1b77ee64a0ac063ccef3db745be87dcf6339ef7c4743ba61c3e98eaaf4955c14198f16b3499c05d2053aaf14\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002040358981262674\",\n                            \"voting-power-unnormalized\": \"0.006376121816445856\"\n                        },\n                        {\n                            \"bls-public-key\": \"8e70e202d35dc53372d24a69571852f8aeab67d7f0cf614272e6d94e42da02313fb9505a12d70f60a8b9b9b6a098cf84\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"9683cf11fea4c31ca1f1d295d8526a60405b555785ba152f740ee9d8213fe55faf9a2d75f68b7972cce87a6180896e98\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002327977302388300\",\n                            \"voting-power-unnormalized\": \"0.007274929069963438\"\n                        },\n                        {\n                            \"bls-public-key\": \"57ca05a5cd653662f4004dd409a057831a79a4d7ee0b03a402c92db90ce687f8ec6caee0c3c03778e1deabb623c18f10\",\n                            \"earning-account\": \"one1w70ts3l3ehdws08sdx7n639lxp4fgg4ztxxp4s\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"52dd617310398cb7cb57ca24afe7fcbe41720c9d3b1423688ae74618315ba53b6baea6b76308200b17a134fbea3e350c\",\n                            \"earning-account\": \"one1q83ag25yvxzl753jjunw8rhvz03w2p55dneenm\",\n                            \"effective-stake\": \"6025323805377500000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6025323805377500000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002099396460342967\",\n                            \"voting-power-unnormalized\": \"0.006560613938571773\"\n                        },\n                        {\n                            \"bls-public-key\": \"bb9ebc1cc84331ddfcd16aee4fc361de910b7a30a931b9c10a14d069ea308e85717595e915a8536ca78931c88f1a2b98\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"voting-power-%\": \"0.001853790404014693\",\n                            \"voting-power-unnormalized\": \"0.005793095012545917\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c7a28e86f911493cafb4fb7325a08f763d5cd4cdd627971d4e09e7ef2471634b21e32ccb57b13ab8cdf68c78287c314\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"c44062315f968d707543b41882793ff7c945a0fd53f6d08ec355c261a327a368af7d1dc60da392b150a3ebfde4964708\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"8d14f8242ee01fc3ba63bce5f6d789bb5dde518930406e1d8c21d2ef5acc3659482aaec12eb32ab21292a11796a6028c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001868725391554852\",\n                            \"voting-power-unnormalized\": \"0.005839766848608911\"\n                        },\n                        {\n                            \"bls-public-key\": \"c42479699f74dddc90caf2ec5f8825fad746826797948c299f7a64ade7c8b37a9ecfdc8cc714204e813413073ac12d0c\",\n                            \"earning-account\": \"one1w4ekumvg88ex5txjrzk9qgfx3xheua4djrphld\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"62937063063c3c8390c86fd406b3155158fe8ecf1e82b0116e1e27cd8fb021c61c39469658d212cb89168ada8ab89a08\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"f82e45094a111e9c85321e6779598b122bab7584f584be1c667ae5a186bc3eb14784ffdf3b78cdbb03b3c3dc788dea04\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"a1d2c2c919682772190ed2d0d5fd592538964ec8d5ac066c03177b2a840e1ff5c81418473169fdd9017591209979df15\",\n                            \"earning-account\": \"one198as6uj8p4yucttkkhzrtpu9z8nfwqrgh7d3g6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"cedb69f6dde95d8464fc81b053eeb9f377b47458c83d0a5cd837b978d5e1a1fc2a1ac4970c3606c576cd1074aef12112\",\n                            \"earning-account\": \"one1445u8kcryuz98d0husyrn0dnudfs77fuzdtqfm\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ada4422e36fb53fc5098eed8fd4bc6a3d2e24c06ab0fc7a06bf755d72180cec56cd0977ccba6ee19038d3f839c9cb180\",\n                            \"earning-account\": \"one10j0tswg6x4udqafvsetjj3fl0g4e52spwp0wsh\",\n                            \"effective-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5722925145534874999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.001994032052289168\",\n                            \"voting-power-unnormalized\": \"0.006231350163403651\"\n                        },\n                        {\n                            \"bls-public-key\": \"ddf5bfb62d7d7065634220828ffbbc4340a121c477e5a0ce558200f5216279be8b1788d78b427ea1a819fe37ad92d388\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"a52247e43b6abebf86b8c8697e7c6fd8994ca343e4311c0f6acf6c8a1738a96ab2c09d86edc3729a5e911149347d5689\",\n                            \"earning-account\": \"one1gugtmrxusqk2j7xce3sltnc0sgegnnfuv6hq80\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4046263a8404c6c4099b81861126346b890437c6eee2c943399a3399cbc71a455ddd3583b2cbd1f184bd909fc9777418\",\n                            \"earning-account\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                            \"effective-stake\": \"6358454076952000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6358454076952000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002215468647592459\",\n                            \"voting-power-unnormalized\": \"0.006923339523726434\"\n                        },\n                        {\n                            \"bls-public-key\": \"70a9da95478349f15537174471a202454f62e038b42e2cfe668a2c09c0a947dc157fc5637704e4bd4ced329f9b257c08\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"ea0ad7e0c1548ecf714619900de11947e46018b965dbb23a4d8b6232b9e8bfa6c460e2e383a937e1cee7a8ee47873498\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"02bd0857e2cf224d5f4a7cdbccbce0ece8eecb560e49f5955f28d98e22e60b6975d5cd890ad70cc557b7c1879da44a82\",\n                            \"earning-account\": \"one17fn65sgdnp9hphg6vn58h90k3ujt07xtqrnn3y\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"aeab90cb890d1419bd6d215e65f473b73efae07a9686bec906e300e223abeaffb7da06a6fb42abf3dee9e828ebbfec12\",\n                            \"earning-account\": \"one16dllsrjr04uhzsuw7raaq4cszpkt3g997yev2s\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b66e47b0a02dce01caac7f1425c7589be29096b790d4587302018fb25c7fbbeade90be7ad3fb0d714b5dd0bac49ebe14\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"voting-power-%\": \"0.002243570629857720\",\n                            \"voting-power-unnormalized\": \"0.007011158218305376\"\n                        },\n                        {\n                            \"bls-public-key\": \"bcdb69af84771f98edcba335e23748695242dc4c4116c24138766637837e7815dfbd2d30e8c4948eff193e62b2e51e80\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"5ea4a8c13bbc364b869c9f7c6b5933a106c5a062e1ccaf83d0650d25ab29dfe6875cc2e5b2b5cbd2712417b46cfe128c\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001859423857146414\",\n                            \"voting-power-unnormalized\": \"0.005810699553582543\"\n                        },\n                        {\n                            \"bls-public-key\": \"d1a74426b887744b32f62b2f070f0b8ba8010fba4581189c35a51d241958ce93239a0c1a749495573003049f59f1918f\",\n                            \"earning-account\": \"one1jegwvj0vpkncgsw9p3nuyt36dp94erdu79kv5j\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8c48db351942443c6b91e03c27fe612d34c6cb3d1fd108428f04df762a8acab8d14a6d0456543be4e4dd56d49ddf6e80\",\n                            \"earning-account\": \"one1khln4errq87hnpjs9zqxmll9slwxwywtxy0y3d\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"caf70afcb26d571d355140182cb8e22215abd27f6e833340c88c080eb8bc2e8d61fbc95b46cc99cfdb64825d1ab21595\",\n                            \"earning-account\": \"one17fth44p5a89fyck8sxxz767sqzt35frxj9f0lq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"679f3054719461eb4808fbc74e9129d557b3279c44b22aa52983bca178a99303f1e54aa9cdb8d2a78f86ec60586d8594\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"064a5352bc38accc647cdd10e6b6f091458d2c85a996a27c9fb9dd075920412e07c1db3c6989043d27aebbd86e1d9f98\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.002088264741697555\",\n                            \"voting-power-unnormalized\": \"0.006525827317804858\"\n                        },\n                        {\n                            \"bls-public-key\": \"20d0791f77c7e82988628d05948655b9a264df9a6f1d4ddbda8a22a28622aa97a6fb6f16f46b16dbcba633165b091304\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"2ca7cb0362db342d82d51fed78ba24c88fd061ddccc929923cb7443ff99ddfaf5136e14adf2068cc3d1e1653d11f5b88\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001868725391554852\",\n                            \"voting-power-unnormalized\": \"0.005839766848608911\"\n                        },\n                        {\n                            \"bls-public-key\": \"d01b2602aed09580fc73a56cf9bdbd19e14a7bbcf4fee71154cc5068ca7e2765d7b7750d8409e0b22d060afb89b9ee88\",\n                            \"earning-account\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                            \"effective-stake\": \"6358454076952000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6358454076952000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002215468647592459\",\n                            \"voting-power-unnormalized\": \"0.006923339523726434\"\n                        },\n                        {\n                            \"bls-public-key\": \"778fedb1699a7741eae03dbdcbc376c983b1a23aa9da2548c1706442acc3431747a957cf7aee2ae0fa028bc0c83a1684\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"ed8aec2b23c22fbefd20a8dc53f2ce38d24c6cca03834ac55d0ee39b75cad5a323b8aab9be7b2a3615b820d64fa3be04\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"64bf95a58cecb76b90d85f0729b3bb411ae56ba11753da991579eca8d3f72bd6749592b567637d53035c3cfc9a57ea00\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001889780645046260\",\n                            \"voting-power-unnormalized\": \"0.005905564515769561\"\n                        },\n                        {\n                            \"bls-public-key\": \"67449764648f0ba4ba0f7d689278fb36a3f81d2c65432a9372ca75957aec3a456b35c89315fc9dff46e31cf257beac98\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f3e059b9ccea9b9f5f223a04fb0f28c890039d20bc016173e4f8c60af00e0e0d547893b9ecc2e22a6ee204e8dfeea83\",\n                            \"earning-account\": \"one156pcuu77dxef29cc6nu5wsjndmk9cw4ta7crpx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0995dce1f64701c2502fc8b627df9e57d10ca49875022b8a7a7b447c9672be04a7771fc97eb8190df8002536f93ca78e\",\n                            \"earning-account\": \"one10urht2e6gfeq4fskmnwrlxnx4vqhaxzz3d00em\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c82ccb9168b017166e838d00b1f6e3f6fd2a2f406b2b490e413f47dcd0bff4c2936af025f29222497b751311c999c04\",\n                            \"earning-account\": \"one1ttf4e0tvnuqymuyuzy7clu7gy6za37y326m299\",\n                            \"effective-stake\": \"5800144923103100000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5800144923103100000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002020937648225858\",\n                            \"voting-power-unnormalized\": \"0.006315430150705805\"\n                        },\n                        {\n                            \"bls-public-key\": \"a330d62e144606695d5fe66385a0120cecb3e5ab71cc33c0e1e4a034cc37e1156f12a34f3c91158638618589804ccc80\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"496f3bf9c80a4e1ce0525e2854435139486e77cbb0abd280af4389c0535a0cc5f3a6c9be0e6e498348c8224d3f918988\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"dd668b34d02c53c8db16a14749365edeff51ea6edd91e4bdaae9e738a8dbf5ab9f6d226852a814df1576b311a376f198\",\n                            \"earning-account\": \"one15wh83u4p54dfrjmmk79t4e2dgn0fw6c54ml0vz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c9cb0f47b232c26422435f32132b665d8d7489d7fef92d4d37c4072ca5dd3106a0f688afc8443de30c0bca87477fe00c\",\n                            \"earning-account\": \"one16f3f9y4sqtrk3eq7gnagr4ac8p25rf08u0pxxp\",\n                            \"effective-stake\": \"6382123000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6382123000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002223715582507849\",\n                            \"voting-power-unnormalized\": \"0.006949111195337029\"\n                        },\n                        {\n                            \"bls-public-key\": \"a1db364436316e10329d311c3bb538a2ac676da43c222e6c16dc147375b34be00000c0872745b2cb33d11c58ca478c10\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"voting-power-%\": \"0.001853790404014693\",\n                            \"voting-power-unnormalized\": \"0.005793095012545917\"\n                        },\n                        {\n                            \"bls-public-key\": \"cfdbceeeb2bfe61ae2bb8c5743f7c51cf8767945f66f3701d8350f319d6a487470d8a871e21279172944c0d06070eb87\",\n                            \"earning-account\": \"one1fg0nrc7djkm2p47tjsuhd8n9435mz9ed57dj8v\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"11c3606099680455db309cfa732e8e362a139259e1b89418662577a4d8a0851cdec0488acd8d8eee6adbed4e4cd68d88\",\n                            \"earning-account\": \"one1nsu6n9sv7ztgcrred3lnml7qxmr3la94ymsrw0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7818a1a592f321279dbc1f53732de2fe7640b5294e38ea895bf4cc53e90d61015bb0fe0e9b76ea5bbde9863a51ccf899\",\n                            \"earning-account\": \"one1a29x52lelvelspzx9scdml3nhy9hrau9k5mvdn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3411cb61f965a14544de8891e6447bd308f01e59d5eea82d4a48e3e8468acb0a30b90adc55780c48b1a9796b9f96480c\",\n                            \"earning-account\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                            \"effective-stake\": \"6358454076952000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6358454076952000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002215468647592459\",\n                            \"voting-power-unnormalized\": \"0.006923339523726434\"\n                        },\n                        {\n                            \"bls-public-key\": \"8b76663e5fb776bfb89ed8c118d56dfb4ded0517aac66ab20ba942a22cb3284a916cf01a8a6d0a9cd6a2f88aeb26d000\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"1280a5222b63bc66c31176a1b321db7a5207d7a37226ba25b769a776ddbf2f50ef90d7da28fe8feed3882355c561f910\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001906413728900708\",\n                            \"voting-power-unnormalized\": \"0.005957542902814714\"\n                        },\n                        {\n                            \"bls-public-key\": \"dfca9b0bb41a358023b75136f51882e2b5396806f4287a0200f772c2b7b8a5981730fbc7558b086da8217969518d3498\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"4b4c85ced3f516d101022dee1c728823f900356d50dddbc2b47e4d8c3d7f91c501748ecb9c494178703b262f76fba790\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001868725391554852\",\n                            \"voting-power-unnormalized\": \"0.005839766848608911\"\n                        },\n                        {\n                            \"bls-public-key\": \"b885040f11b742de68d121cb8da133099afb876658ab7cabb5624794b37f48b00e438ad447478343375dba7b3099a991\",\n                            \"earning-account\": \"one1sdrc3dla7zzd5pdqjagywfdumnqsyl57ql7sj2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a53fab665af692aa971d8f43752c347fefc2a2b5e83d5dcbad8d28ff7e629d7891291712c7721dd0e1d4fd6665b97388\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"8c166b798f14ee72dbbfe73c759ec6571613114933f2d82ca7dec67731e3ee57967a9da98822e5345f78f38a4c58a710\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001859423857146414\",\n                            \"voting-power-unnormalized\": \"0.005810699553582543\"\n                        },\n                        {\n                            \"bls-public-key\": \"f9d624113a56ef8ea08119a0162fa81b6e644b98af6c1029c98ca72e1fd79ca4c36dd1a2b4ea2ac916d08a3740c25c19\",\n                            \"earning-account\": \"one145zhxlug79wjwlf9wrx5vh90u2t7nfu562rdlh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f4d3a519e90e01812ae51eb25d2cf6acbcfc1a7b0fd2c85816876b49d89649549f20a3c93b5e5f0d34cd0d4b7039dc14\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"b8574b3a38b89d69087d63e3ca03418f94123b7358ae142234379e547b2138083cffe942d4ccaac34522825648e49e90\",\n                            \"earning-account\": \"one1l0wwv67lfelxhjvu6dkm9t8j5gsxev44lm6s02\",\n                            \"effective-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6336666666666666666666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002207877285947754\",\n                            \"voting-power-unnormalized\": \"0.006899616518586732\"\n                        },\n                        {\n                            \"bls-public-key\": \"bbfd933a7c834f1fa71c9437dc78764478a7459f888f63a09fac489b6f5e4ef14cf9a912206abc960c0f9ee3d295da18\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"385cd756a60348191576404ef8e60817225160c5806ed54c9997286b55e6526dc304c6f0f92084e31ecff8cde36b7d10\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"e14c69d87d586a3285de3c9c7c345580049d2652080210878cce1535076183fd454ae2a3e85461a513db6b7c1d471c04\",\n                            \"earning-account\": \"one16knqzazp2kxra3zx4sw32capqt3esg55wjg7ff\",\n                            \"effective-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5320427876526653739957142.857142857142857142\",\n                            \"voting-power-%\": \"0.001853790404014693\",\n                            \"voting-power-unnormalized\": \"0.005793095012545917\"\n                        },\n                        {\n                            \"bls-public-key\": \"6446b0305715cea4f6615e2a685a7489f36e886acd56e9a889e17e3a0f963d163208ee3c8e8f348b2ea12210b0803090\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"9b384ec4abe732cc2855faa80e02e47159b35ad23819631bb0e5562a51f4ddf45da81b2a09e0782b3bd0e94a6316a817\",\n                            \"earning-account\": \"one168rjtx20cyyqjygt248gxpcqqcw7a08ga93kvh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5e30eacccec0a503b8df9ffe97df69e82c2137f83ada86e62e11cc79a931ea99d64565799b83c498bf3c775c990fb40c\",\n                            \"earning-account\": \"one15mf5amj7nc8c9zpp0e2wr48em0r2vm02k9m8h2\",\n                            \"effective-stake\": \"5425959730136522978700000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5425959730136522978700000.000000000000000000\",\n                            \"voting-power-%\": \"0.001890560743182899\",\n                            \"voting-power-unnormalized\": \"0.005908002322446559\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d4aa3f120cc3cf27edac2a29029dd640e712f92e47ee751a20839896a0ff5bb185c33d7c832961c21df070ac2d85314\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001889537703500485\",\n                            \"voting-power-unnormalized\": \"0.005904805323439015\"\n                        },\n                        {\n                            \"bls-public-key\": \"a845c999642fb6ff96ab50cf0de871b9ccf9bba3471e69a7254c5b3dfabd62743c4d2a63dffb480554a78de7429e858a\",\n                            \"earning-account\": \"one1pegk36wh4dnyv29dhe5s3faveenhl60wcef9y2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"15fe75b1df8039ad6d490f36b9207543971df8f645f33a1aac9e6b95b45880228a28a5c0760e56e090f1c501628f638c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"16e3d373df7e5c01c2dd21be40cc04e5036b259cc3f28844659501d06e46b1f223891c7eb1f6c2eb41eec8eb606dd604\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001889537703500485\",\n                            \"voting-power-unnormalized\": \"0.005904805323439015\"\n                        },\n                        {\n                            \"bls-public-key\": \"087472b5eb52a05589341d95d009e9bcd0c22f314842d824b496e321d642a7f7cd71983bb8a4a81f3d9006e8155f4494\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001868725391554852\",\n                            \"voting-power-unnormalized\": \"0.005839766848608911\"\n                        },\n                        {\n                            \"bls-public-key\": \"6cec58349cd971eb0d5c65937b3c0a98c449a601e08cbb2c881577c5475491c17610531c19e660a461d3ea9cb2bc808c\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001859423857146414\",\n                            \"voting-power-unnormalized\": \"0.005810699553582543\"\n                        },\n                        {\n                            \"bls-public-key\": \"514e2df4d945d40f873f8b4b77de13a9128377a142aa30c6f3ef2554622f708a30cb0277a17d7d5babef7d79ceedff97\",\n                            \"earning-account\": \"one10tu906wspjnc3mn5kvzlr36882swkwf9s8e5xd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d2173075cda0ae34a76b2407b2b6b7b87f42012b313be63cacb41fd5115f31da7bc3f77c09de396badc48b122be4a216\",\n                            \"earning-account\": \"one10t76e65x7m0pfkhmpwm4wgr7u3xu3t8qndvq5e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8bab9efc3a1468735d9cdbc526fd3032b9c335a9716a2fdda001616950464cc96def3b8f41262143bc53f5b2fb34f880\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002324470526461696\",\n                            \"voting-power-unnormalized\": \"0.007263970395192800\"\n                        },\n                        {\n                            \"bls-public-key\": \"18e9f2ad7b95c78f97ad32ea4d5b84128453b364e44a5d1c5f346e246efc27f8f955a64d4ed51576c07da47ac7b89e04\",\n                            \"earning-account\": \"one14xkvsj8gnwl2tnu9wahfru35x8ppveaqdx5cnf\",\n                            \"effective-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5855884666638619047614285.714285714285714285\",\n                            \"voting-power-%\": \"0.002040358981262674\",\n                            \"voting-power-unnormalized\": \"0.006376121816445856\"\n                        },\n                        {\n                            \"bls-public-key\": \"2a7416c9b57cb1e34978ef473bf9bc2acaab509fd9cc542056aa60fe0780a69cbd49f5a91129fd6c4f98ae7312495499\",\n                            \"earning-account\": \"one12q6kh768sn3m2dwf5vhn7nfuxstp6xvtf35m4r\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4011d03567248f5ffef3a82b9b5ac94f327bbff25f955123371ce0c1a90cdb469e8ba200e24a5e552a0efadce58c1e89\",\n                            \"earning-account\": \"one1vg5frvtn82thc5vv0rytysdwtl6qcsjpessvst\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"49c69f426110466721d9dc4fa2f0b4808c546088ccfecf77e42f1d60719b7932c44e7c18771057f164e03cdb6486d000\",\n                            \"earning-account\": \"one1s3vgvw85j4055tq7ky7say5n80hy2vws8hgvfu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"dc277e5aa25ebc0a9092f514964338e66048fd3c952a3652b8aa64c8dfbfd2024a43070cd07c6bcd5682375ec4c0b898\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"ad009861e1389ed152b8a5ca48f9a095f4d29701ada0ef126f6bb6ae01995e38b0c527fa1c479e77bb9fb61171dd060e\",\n                            \"earning-account\": \"one1x0sm3y8e2cgql05spqc2y20xwgx9m9trpfn2pq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"61756a1a3f55ac33cf86a884ddc0795a91ecb05ee4486b89da20c7c0ecd8977a7225a789b91e02d52ebed33ddbc31f94\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001889537703500485\",\n                            \"voting-power-unnormalized\": \"0.005904805323439015\"\n                        },\n                        {\n                            \"bls-public-key\": \"13d936398c988a598e96db9ef5980da9347dcb1a34e87f4a403db8901c33dfea76433c7105890c9ffc44fdcecda10c04\",\n                            \"earning-account\": \"one14hrttmv9xapdkj0auuwlgpvmmhfz2mp4a2c8ey\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3cabd9bc1ac865ce5b3655a1f15e4657a99b56cb29984d00e21142b9b8dfc69d96b8bec5071272966989d711a8e32617\",\n                            \"earning-account\": \"one1t03xpg9f6tgguwke23e56k3chd28d2d37ttxqw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"14c883aeebae0a438747353dd48cb5a9b6236052e0da04f364cb4f2ae499c2a8a9b6f0ff3af11225306890a7c2a87610\",\n                            \"earning-account\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\",\n                            \"effective-stake\": \"5750861573420217315666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5750861573420217315666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002003765908877053\",\n                            \"voting-power-unnormalized\": \"0.006261768465240791\"\n                        },\n                        {\n                            \"bls-public-key\": \"dfe6a6381ab0c2f0c37a9acf5952f22c1a74f34c75b21b1354a53d215de7c55abf365184cc51f0e63891f73aa53bdb10\",\n                            \"earning-account\": \"one1mx5mz8fh0v27kvjwyujh4s697z026yexqp9fyu\",\n                            \"effective-stake\": \"5550219253079850000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5550219253079850000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001933856342068108\",\n                            \"voting-power-unnormalized\": \"0.006043301068962837\"\n                        },\n                        {\n                            \"bls-public-key\": \"102fa26fee93a03582ff5dfd459d73b1ef155918b17681b2d9882ec6a541addf0dca42ab6f7b5aa298498a59befe7990\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001906413728900708\",\n                            \"voting-power-unnormalized\": \"0.005957542902814714\"\n                        },\n                        {\n                            \"bls-public-key\": \"59d956935972502209c7c3ca629227cc13beb7b53f9be02bec04d35e7a2165144d0fca23293f60c3d15c3ab178e1a804\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"3659fdd8668677830bf2ff054c0e58ff46fc174c19112cc7a5c761b9a4ef8c031dab18793ae0cc03ca7a6eeab1b2d60c\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001964365490444378\",\n                            \"voting-power-unnormalized\": \"0.006138642157638682\"\n                        },\n                        {\n                            \"bls-public-key\": \"5ae80464819a6062b2c93f2884dd3400aab970a0e70dc58bac7d5b394971c338598e0ee5aa8812adcb0b40898a08a590\",\n                            \"earning-account\": \"one1ssctny3j3hs92wnetqgkrncwfatq6er6rhede9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0383b668cf36b3887e48004734ebf989d5547b5c153e8eae1ed568a4fab1972e4bac08e4985e15bd582c9f6d28941c0b\",\n                            \"earning-account\": \"one1mvlwv0wjp9u6yv2v0ema3qurlnxkp5ftekegm8\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"dbee77bce2f00706d226cbc89f085c7bee45e0b11cfce8c5654636ee8c1a5a635b27c0c010b7ddde266ce44ea1435b8d\",\n                            \"earning-account\": \"one147x8wxytztf80avpy4s4f99t5u3ksfr7h02j4x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ce72a574a4ad4b116314c82162250211476066e1403f65f83baac852c378650d4796fb34c39a1012a632ff5f7f508b90\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001889537703500485\",\n                            \"voting-power-unnormalized\": \"0.005904805323439015\"\n                        },\n                        {\n                            \"bls-public-key\": \"376b54621b144654dba41295e76d413c222688c12ac4cfdb1379260cea4870344db655e72e16c388cf59ef6e0de39288\",\n                            \"earning-account\": \"one1dzr9ruh47we0lmtkaxk4an7hxe8qp2u6fqsett\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0bb30016dcbd8ef90e657c93f9babb26112f6554c960e7e9de7638788b1e50746e41261d8f3fb133f2278dd1f507b00c\",\n                            \"earning-account\": \"one1jsgnppqzam8dqh305hlehuvzsc5lvw55qp848z\",\n                            \"effective-stake\": \"5750861573420217315666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5750861573420217315666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002003765908877053\",\n                            \"voting-power-unnormalized\": \"0.006261768465240791\"\n                        },\n                        {\n                            \"bls-public-key\": \"17d4c9cf214edad944f13ee8b52dce377c1043842d14c74673a3dbc79ed63420171a3a66d1b10a6a0278db5405320318\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001889780645046260\",\n                            \"voting-power-unnormalized\": \"0.005905564515769561\"\n                        },\n                        {\n                            \"bls-public-key\": \"7c07906423d06c8b4f3d30a1b139e29880cc7b1a39e150919308d8b321985740fc0a2af4b85cb17685442241cad34d88\",\n                            \"earning-account\": \"one1u3tlxeq9sl6qkmr8xd02zqa73lkrwkkujjl6d9\",\n                            \"effective-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5360958155309776719586666.666666666666666666\",\n                            \"voting-power-%\": \"0.001867912321203287\",\n                            \"voting-power-unnormalized\": \"0.005837226003760272\"\n                        },\n                        {\n                            \"bls-public-key\": \"d88bed02d72629ace3ca2c7faf7f53be1fc0bb8948df7eabd1f79ec2124b82023fe46569a8f19f476f2c095b46aeea18\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"030d960525fa382549ec9ce33f31018f902368bc60ad74d9c62ee0e870f6cc78514ed61c46d107db4f3324b6a5d6680c\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"927d06aa9bc1334ef5c2cd08b6138574509ff0e62aa0bc5b207119e75aaec13e1e81df367a648c74cd15f40e63634485\",\n                            \"earning-account\": \"one1xgk5rmygeuh5p4m2uhp048dfucr7avf7tzj6w4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"066b6a59ac20487f17a3e9d459b723e5241ddc259e689f177e31d1a81cb38ab75520130c875560ba648457e4a03d4a94\",\n                            \"earning-account\": \"one1efld6lrq5huppf35skdhgc9ek0kfv99klqf7vv\",\n                            \"effective-stake\": \"6358454076952000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6358454076952000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002215468647592459\",\n                            \"voting-power-unnormalized\": \"0.006923339523726434\"\n                        },\n                        {\n                            \"bls-public-key\": \"0d5b80dc2ce0212ff0a843b007e7e9a8845ea0ca6702a87a1492e63c99088ef60f08d95f4290cae6ba31e08aee355684\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.002088264741697555\",\n                            \"voting-power-unnormalized\": \"0.006525827317804858\"\n                        },\n                        {\n                            \"bls-public-key\": \"5f0645fe0992c70793693d261b3bb9ba32cd3d64cbb70273e2395f85f0d953c40e1529dc40358f8cc1c25ccf8b1b8090\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        },\n                        {\n                            \"bls-public-key\": \"6350958f98fad3d2aa3d8655d11f60acd67a8f9574f580b5f09bd602c644365c548484a0d2a06714124b9f6e01dcd794\",\n                            \"earning-account\": \"one1u7jzpkd3sr40kzw62vjval85dkzeyn3g2shz83\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9792041e8264bfadf82ac62dbd7ff22c0681fb4dae9a111dd528aacb0bcae4ac8bd16afa2874f86d4beb9cfea69bb30e\",\n                            \"earning-account\": \"one1xlnx308wrvfjxxs4h8v894vwz35tpcfyex63um\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"11195b7f18410482ef8d8484a7ecabe391fefea6f4b10bfb79e6251af6299f30a62640e6eaf99ac77fba100316908a10\",\n                            \"earning-account\": \"one1vfglvsfuk52025r5apqlfaqky37462tsdjeemf\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8354225889561732707889521.000000000000000000\",\n                            \"voting-power-%\": \"0.002327977302388300\",\n                            \"voting-power-unnormalized\": \"0.007274929069963438\"\n                        },\n                        {\n                            \"bls-public-key\": \"30e724b5656353eaaadf869676c7068c50d85df2509970ba2ba9e20d6606ca56cc6753cef7a58997a3fd9c0217c3330c\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002182155503038259\",\n                            \"voting-power-unnormalized\": \"0.006819235946994558\"\n                        },\n                        {\n                            \"bls-public-key\": \"5ecf182ef0cfe449470d900dbe4ce312d534c882765e639c59525f2710d9f96a04abd871e4f0afadc1bd4b07a54ea106\",\n                            \"earning-account\": \"one1nn2c86kwaq4nk8lda50fnepepqr9y73kd9w2z3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"98452fd6a94d63c8e3a20e3514f38fbc043a7290ce1a7e93711d06eadb4e5296ead92c63105f8287cd45c9f0b8725293\",\n                            \"earning-account\": \"one1chxf96l9c0g0w55703j0q37gtnedg424zlmraf\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e4060b4bf6fc2bac221c0ae3de202bbaaf18a66c1b840383096151815b6f6dde0ac33b9233191e41ab1f425471f0b394\",\n                            \"earning-account\": \"one1gum0zqu2zstptk7fdl8v2wsdrfdtl054qx8jar\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9749b71a42cf13ef035b676553e2926c815be906c4173bde249ac76423e2dd6ccee1b8244a25f667bbde1c4ef87ef500\",\n                            \"earning-account\": \"one1y82p9rex6ezqenjze8yxe5a0nhskvamcgn8rqc\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"57320cc0aaeb7090f8fcfd4d4670264c086e541591378a7b2efc58c1ceb43e7f22630401b3ae53d15e96561f50d2b68c\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001868725391554852\",\n                            \"voting-power-unnormalized\": \"0.005839766848608911\"\n                        },\n                        {\n                            \"bls-public-key\": \"deec63912e755be51ad225d9feccc89a97dcb02b4047cc04c8c9312b8e9076aa21b0a96c0ea2ca904213ca349b253d93\",\n                            \"earning-account\": \"one1tmxgqudfnzuy5y9wf7gsntwv6f768878r3q8q6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1aeb918501c4657b175d90527b67edd8844bab6977e9630d1fa73b373a1ed88a1c44036ccfbb83792673554ff14da599\",\n                            \"earning-account\": \"one19hnhhs2dkxl0v0gr0h755y6f9l86emt0z3zuj7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bbc239e80ce221bd886af2aa739df9ae09c929ae805a21c3f3aa85d32a4ddec38ab6816cb90d4ca22de35ee10ccebf04\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002216298460300979\",\n                            \"voting-power-unnormalized\": \"0.006925932688440559\"\n                        },\n                        {\n                            \"bls-public-key\": \"a2219d19d547f78fa04282f1e3d55d28d7b8f04ea6f347abf9e009d2eb4ba63ba43c8a657a72023dfcd92b3fe36fd612\",\n                            \"earning-account\": \"one19lp6lj7j5efhtv6f4mjwyu3c50ey84ajnfntsa\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b42b39da95826568dbaaec0fc7cf0d6a8e5b270ef2091aa15f9efef8bed4f510bba51ba11195da855d44b3bd25803d85\",\n                            \"earning-account\": \"one1wjqtk2krrlsqxcr2jgau7s58vuf2fepdu3cwnu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9a7f7d02338bbc8ae41f1957d349a30301cca90ba4886f4cb23b0a71e8b4ee9f13a5ea7081c6a5bc6617278e3a650213\",\n                            \"earning-account\": \"one1yu2wdsl7x5k58zecsdh5p0ucapfe74mrydwks9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"077edde9fa10c8c1663bb50ac4d28ceb2d58283c759341963683ba6d43a73fbc31cc9145107abf0ef82930fae6440994\",\n                            \"earning-account\": \"one14jntfqa47hatag382uaxkp2zddhwwgwf3wl33x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"623718098929bb558b9a46ee2aa32402f9c8e5ac959ab7a0a5241ca69d704f50fad168efe6f363fe1a19ff7c33405299\",\n                            \"earning-account\": \"one1ycdxxqd4x5wgu3wjc26edsjkc3cztm99jpnfry\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d347b60a226fb55e3f3624b5a40d08b5958f8a44c3c89274105108c2afb3da9156d4bde1ec16ea33b409a980d4efd293\",\n                            \"earning-account\": \"one1pey5w5wjv03acwwj0rwhft7wr6dulesjkrl4ah\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a3ea8b3d50a96ee130d7bc213450018d2ce2bc61380d93c249cc0265ebdb6abf88f79589c524650b243b3cc641669b04\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002324470526461696\",\n                            \"voting-power-unnormalized\": \"0.007263970395192800\"\n                        },\n                        {\n                            \"bls-public-key\": \"de0cb19717d7652a91d8678eed96ccdde9f97a10b134df6e21dc849c20da22b1d300ff5d0b10bd2c2b2be92f39612884\",\n                            \"earning-account\": \"one14q6lh6l25c4p7yjlkpcsc4c23jtge6a33dt7qj\",\n                            \"effective-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5230526464609087912076923.076923076923076923\",\n                            \"voting-power-%\": \"0.001822466161192901\",\n                            \"voting-power-unnormalized\": \"0.005695206753727815\"\n                        }\n                    ],\n                    \"count\": 250,\n                    \"external-validator-slot-count\": 160,\n                    \"hmy-voting-power\": \"0.680000000000000040\",\n                    \"policy\": \"SuperMajorityStake\",\n                    \"staked-voting-power\": \"0.319999999999999960\",\n                    \"total-effective-stake\": \"918408530328671676133782804.367528542140850427\",\n                    \"total-raw-stake\": \"928852050327269972671633274.938957113569421853\"\n                },\n                \"shard-1\": {\n                    \"committee-members\": [\n                        {\n                            \"bls-public-key\": \"575fa22442d33042bee0760b72b2cdc4c9d8f81164a19a190d9923bcfffa750c8e7d10c1efd34553444020e76105e585\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001824639212758298\",\n                            \"voting-power-unnormalized\": \"0.005701997539869681\"\n                        },\n                        {\n                            \"bls-public-key\": \"579684aa6f2f0ddc0ecbc82dc2943aaeeed612367f9c88dd44c920ce09b300d85c88723c05a1f24cbe361fd683e9da02\",\n                            \"earning-account\": \"one1t5xlzlx5sw9zs0jpzpxstdmv8d4k0dt64v70z5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d87d9546bb76785a32e2f533c3fc83157ac77d2e6950f5f6574e0cd1eca05c0102b98af4be96ef5838aaba5bdbac0299\",\n                            \"earning-account\": \"one1vz5d0gutlv6a42tsg8luf9e9aghx65aqa08zfa\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bfb66b6a1253e006451ae27e77679ede65fadda0c925b4bcc2ede83d5cef94a2b364bd07dda1096772bbd140209f5797\",\n                            \"earning-account\": \"one15yfz8y6ha0xzj4y7668k4nn7frnyz7kqsnzmzm\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d587813837471e974a68fd764127da54e9828e387fdef6ea41e0e8118bbd3083b5cbed568007b99a1c583d470eb58001\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"voting-power-%\": \"0.001895253887752998\",\n                            \"voting-power-unnormalized\": \"0.005922668399228119\"\n                        },\n                        {\n                            \"bls-public-key\": \"d922b97431f3cc13c74eb2101ad120752bfa3c2a2fe4c9d553094780f02ed9084eaaf9968ee955398646d0fd4ba77384\",\n                            \"earning-account\": \"one1pyffgruqap6uc5c30yuvv92wutzpx42t6a7n46\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e5ea8826643e9962b21abcbf9ee087137ec336a8828600726fd1acce369417a40798b0c52f0cd18d21200768e793aa09\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001824639212758298\",\n                            \"voting-power-unnormalized\": \"0.005701997539869681\"\n                        },\n                        {\n                            \"bls-public-key\": \"771871f3e2d5b4be1a681759184a3c8465b14b377c3b214b5235609405775534a42603d18a7408c81b6129d6d960e50f\",\n                            \"earning-account\": \"one1z4gpwvx68ct5z3n6xffj8zhw504kvyucs26wa3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"be78abe18e82e488afdb76ad93ab5bf7879af26d7100fbcf863a4932da0fa7d635fb92c6e64c6bd6f0516f1d80e72491\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001996876422838579\",\n                            \"voting-power-unnormalized\": \"0.006240238821370560\"\n                        },\n                        {\n                            \"bls-public-key\": \"a2526ddd0b30d2daff78d2242eff48f8c56ae572f5170df94b18dc86adf01d8f66ab3b6a2e834a3fc9e62b2420e79285\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"31dae09c17577e345c4bf205f220807e2f6a0f680e49d00d8fd9b9ef04034b1ad5249fd890fb0f67fd1adedb85a3420d\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001820496924789850\",\n                            \"voting-power-unnormalized\": \"0.005689052889968281\"\n                        },\n                        {\n                            \"bls-public-key\": \"bd69a3a69b4eea1fd2fae1d8b2195ef6de953bbcaddc2a0a78aaffe2aee60dbe836f649b2f9855722865a08bc38a1e14\",\n                            \"earning-account\": \"one1rn7amacj6qxna4u4jhmnf66644jz4vun5suazk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"89695d68aabfbf87fd32eb2fa5c41308fd1d1a0132e45e1cc8e1e7fc837cd7da50127fe5672c1274efb00142a9a9d186\",\n                            \"earning-account\": \"one138znnmggmg374yqf9k5rgayvfs2u2ggd7tqh88\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c9430775294429fa1807195ad3e9de9c23047454d466d218f3c580c7c41ee3bbf58000426edb50202df18af4f64a0f95\",\n                            \"earning-account\": \"one1qje5hy38mq87v6gvjfwgdd77m3hcex32f92su7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0e52e6dec93e100a4c4efcb969cb1582072b67f23eaca88969578cc11c214f03ae1615c9d7cd02ec9b5200301840c085\",\n                            \"earning-account\": \"one1f7hfpy33pzw27jzpnt77y6ze2srckrhm52j40v\",\n                            \"effective-stake\": \"6275349865654000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6275349865654000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002090824818453065\",\n                            \"voting-power-unnormalized\": \"0.006533827557665829\"\n                        },\n                        {\n                            \"bls-public-key\": \"22efab66186b73cf535e8fe03c8ef339facb91c8ba65624d91957024cdd90e1e073d5793f0ea17f15d7a9c00945a0d0d\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001820496924789850\",\n                            \"voting-power-unnormalized\": \"0.005689052889968281\"\n                        },\n                        {\n                            \"bls-public-key\": \"745a1477d0a8c211d6ec61a01590616dbe82a80bd3eb4849e3c9a2602602fa8e24c6ef84e1b1fb5c2b7fb3f0a5a3a58c\",\n                            \"earning-account\": \"one1f6zyrc967f5069qnw4dd4su0jzxnx7nkddcu3k\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"98168c8d350da6d8e22e57f5d2613fc9ee7a37c4d7bdacf45e3e2997a5c79fd3ff03c40266afbc5feb03554f9ae7b716\",\n                            \"earning-account\": \"one1paflmvga4ymfmkzqzjjdm7pzz6l8tvc52mv7mp\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"741e4a76d974539212cf368946f63564fcac80c58422bdab9061e60974561377fa6edcaec9b638b4d5e8dd5797d9eb8e\",\n                            \"earning-account\": \"one1fr3vgh7gss92d4yv8rzkjfpkdsahufhk6mmyaz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"dc5a72979a6872697feedfb06185db787525db54ec52da51a4ee9be6f3be5d47befa4f4515ef0b5b1bee85f864bbf695\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"voting-power-%\": \"0.001895253887752998\",\n                            \"voting-power-unnormalized\": \"0.005922668399228119\"\n                        },\n                        {\n                            \"bls-public-key\": \"d509600371b0ffb4cc3d32ff8fe7bf6f73cb15c60f1dfb9c89b72b0e78bc791680fee1dceecc092940079155776f060d\",\n                            \"earning-account\": \"one10qynxfuq4cr9pfmwaf7aej89p3q943kymd23j9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"988db9687986411eac53e47ae111d43a8207450bc8c9da4b81ac912cf771801c973cded575fd03889f30d9a261649989\",\n                            \"earning-account\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\",\n                            \"effective-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001932310888860921\",\n                            \"voting-power-unnormalized\": \"0.006038471527690377\"\n                        },\n                        {\n                            \"bls-public-key\": \"b22d52ab0730ffb9ed0f63daaa0bbc308d503d38de71dfa2eaaec5db5c794beccdcda7ed8d05e39b37cc8b15fca89998\",\n                            \"earning-account\": \"one1ulf83pajcmmgu8nnzrm46spega9lhrt9jcrsx0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"979bee891bb0bef898c6957a402d8c84f9db47881a266d77a60c006c9ed2b9bd6aafef1b6a608fe73258061b3fcc3a05\",\n                            \"earning-account\": \"one17qzuw6l7m8tw8k902m05egddcuajcqkd2ge4xh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1c33be6bf798a2b961816f30631c136ef0cc61fea3848a491dd20c15bdace05545d9ded4598e3bebfe1653d9b8142809\",\n                            \"earning-account\": \"one1cdfc2sx50f68v3p4e7xjpg5zta9juyhy7shkfc\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1a2544fb2c0683ccf74e677b7d1e6318f3e137a84f6071006e2af75b750c2bfad52e3c6433bae3dbb5206488c796cc14\",\n                            \"earning-account\": \"one1zf7efk3w5dae98msd4uvk9vs2er5urvgcsjpwh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e85e14d13b584e3cf86e02c131de6a7868f46db418885e0cecff5d0898bafb9deea5824d68681581d8425907e1f08785\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002086658261271194\",\n                            \"voting-power-unnormalized\": \"0.006520807066472481\"\n                        },\n                        {\n                            \"bls-public-key\": \"3ad8a62ae7c504280bfc99ed88a3e35f3e490e9c118255d2ce0f617ab003ee5eb557c23fde5c632bf80ac3963923c20d\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.001995286403364173\",\n                            \"voting-power-unnormalized\": \"0.006235270010513041\"\n                        },\n                        {\n                            \"bls-public-key\": \"091fdd3b868e9a9966a73236f884c2be8766197800fe3bc5d99946415c1ee27d1db88a6d9d5d345d1a03ff27a4a6be81\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"0664f95271d09374c07331aaf2367d6710785952b1ad09153eb50148669c2f8fdd812697629e9c1bcc0fbb20969eb98d\",\n                            \"earning-account\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"701b3e515eec515554ccd182d1654b5b9ab2f2420efcc8c22eb269b409a257ce1e12a3698b0d6955b420ec6dbf642b15\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"voting-power-%\": \"0.002145385689983959\",\n                            \"voting-power-unnormalized\": \"0.006704330281199872\"\n                        },\n                        {\n                            \"bls-public-key\": \"16a91fdeac0c45f45df272ce980612f6650141bf25a54d2f95ca5a1dc940bfc617c203a9b3c1a1102333992239b16111\",\n                            \"earning-account\": \"one1yr23uytpqg7y3fxqvhhy4207g8ncadkercfk4d\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"be33e190368b26a8dc0d5148ed87cafad7f11bcd9405f542665f97a30859bb9c8944fa91318e3ac4e2094f383e7e9a0d\",\n                            \"earning-account\": \"one1kjw36799v7jnggvy63kv3x6ttfek047qwplltl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"74fde419eb7729ef9ed6b6a553ad11aa6d07e29f57813d99fffc298d9a629c23293707ddd021d54c17bf579c035eb103\",\n                            \"earning-account\": \"one1t488r3xlwunzxstpst3d0a6qh6xrzuykk9c8hx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7a4644791083742c77bde9197ffed2bf693a8277edf366a8f9e5bd36f9c43b98c7c1ba0f6a3ff397ee0278398d7dcc09\",\n                            \"earning-account\": \"one1yq84hen4gunn6d5q7wmgptk45z5pum9x4lg3g7\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7817211035362950000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"c065cc740976c58af76994c01d91d4c3135897004f86a4178769fd107145ecd27b7ccdb58f9317156a3fd37b9b5dfa01\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001820496924789850\",\n                            \"voting-power-unnormalized\": \"0.005689052889968281\"\n                        },\n                        {\n                            \"bls-public-key\": \"1d03e4de8ddd3fcdfaed44ef2123bb4d8328e6befde01b2796628a0a2bd85e8845cc50be1b3666ebe9b614c105310182\",\n                            \"earning-account\": \"one1zjy35mzrfczelpz63cnp9uzsh0hdlrdhlap082\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"15c99e1fc798e09fc83add271955e04b8d9e21628ec091a1ad7cd128a6a406852526196e4b64d7a9345b17c1f139bd91\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"e9af74da3a50f586467aac3282102450d7e10e7aa73e5f1fbeec7d89d9512a8047aacb68ab54e47da59b99bfef3ce491\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"voting-power-%\": \"0.001895253887752998\",\n                            \"voting-power-unnormalized\": \"0.005922668399228119\"\n                        },\n                        {\n                            \"bls-public-key\": \"0643b03e4436172ae33a0bc3bb385152e1493f50475331753bbd58568cce3a334e79b9e4996b469fab2cc274ffc79885\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001822983720121132\",\n                            \"voting-power-unnormalized\": \"0.005696824125378539\"\n                        },\n                        {\n                            \"bls-public-key\": \"858b2be4b3118e3cf0b6167a4f7b9283a5b0079006fbead0074b1444759ac5c281822c86265aadf4e4a9452765bf3009\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001867913620932126\",\n                            \"voting-power-unnormalized\": \"0.005837230065412893\"\n                        },\n                        {\n                            \"bls-public-key\": \"5803fbe842c877ded50b91facc10b781cdd3b0fe4c7d3ba88293d1cf7f2f61fb2ea0c58ee3cb32bb635a3f4e15b95615\",\n                            \"earning-account\": \"one1tz49z0wk3yta2tu60twac7q8x5gj8dl0qqfl4x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6caf1501cb636fbcec5ff73cd40ecc0c38b2855c8418fa3cb6a006133ffc6e03a84979b87c5ceb991ea3a9157a23c099\",\n                            \"earning-account\": \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7705518108147600378500000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"2992b4fa2d94d3ba42a43c6cafc0436c6bc33aeff346014e637af676c16f1514c8daa7ab5edf7b431acda813332f4505\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002086658261271194\",\n                            \"voting-power-unnormalized\": \"0.006520807066472481\"\n                        },\n                        {\n                            \"bls-public-key\": \"26a1ef0f3477ed61c7b6c9bbfa2057ce289460457e1ea16b9f7c5124ef1abc0269cf126826212cf73624ffbb579d8611\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.001995286403364173\",\n                            \"voting-power-unnormalized\": \"0.006235270010513041\"\n                        },\n                        {\n                            \"bls-public-key\": \"2561bd527a78d0fce8913e83f126e9fb21d1fb5a9f2df85304d03cd3c02fd4c1bd96c52dc8e47fd85dbc09b6022d4c05\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002222745180336335\",\n                            \"voting-power-unnormalized\": \"0.006946078688551046\"\n                        },\n                        {\n                            \"bls-public-key\": \"40f92aa97fa8e5036b0b49ad17a7a6603a33dd3f98b21f55b10927c90ab27f6c586eb3f0c44beda3458aa6c86e743f01\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.001995286403364173\",\n                            \"voting-power-unnormalized\": \"0.006235270010513041\"\n                        },\n                        {\n                            \"bls-public-key\": \"0beeac0101c221ad63ff79835e52dbb4b3679dfe5132917f57480a62e212a672853129bf96a38632b06a2eb47f0c370d\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001822983720121132\",\n                            \"voting-power-unnormalized\": \"0.005696824125378539\"\n                        },\n                        {\n                            \"bls-public-key\": \"672ff818fb0cdd96aa62ca11bb20b5b3b178e4990f68733eadabba040233de25ffc56ccd073cbe58fcaa7b3f295ef381\",\n                            \"earning-account\": \"one168rzn68g9k6lc4kq5gpt233m6t6tmcs66sqy7w\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ab3fd464dfd476a45fc617ed232173e5b48db87adb75aa0d612cade4493537a4d13a91d6157003fc18e886b296a99012\",\n                            \"earning-account\": \"one1369pd4tu0v9vtp5ltscdg2f6q57fnr9d4dhw7a\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"45fc886b512121ed5a00af63f152cc8f341630f2b4803d041794c0422c1b3164953a75be8e6f2b5e0cf7e722b869bd16\",\n                            \"earning-account\": \"one1f0pzlm8x56ps2hpe93mphva5fx2u59sp2v2qaa\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"070700a3b90725d43e4105f4dd9fb0b653e6154af81493aec48330c234067cae6ca465b97c2e30d3f9085660c74bc08e\",\n                            \"earning-account\": \"one1lk46twyvhk7ck30994vnwflwl59tk5ksdxulzy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"521e353fe292742571c6617db1a1c992e21ee5b1e604110f958ed016d718f6d4de4dcf36217f7dbc492d0066206c6012\",\n                            \"earning-account\": \"one1zjmecl2we3vtkf9g2a36n2793y8sp4s7mzxkn9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f8229098ef64c6412a05623bc9bbe1a8d5788d992f411378add8201da818b0339b642c06b83494cd804fcafb1d365315\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001935737817320260\",\n                            \"voting-power-unnormalized\": \"0.006049180679125814\"\n                        },\n                        {\n                            \"bls-public-key\": \"1fbbb30e639c6fcecf5fbc428f2aed8e3425a52ea6353221bc12d2a68de711f3c84788f2ba20e84d8f2f34fea043e519\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002086658261271194\",\n                            \"voting-power-unnormalized\": \"0.006520807066472481\"\n                        },\n                        {\n                            \"bls-public-key\": \"651f1e3a45a54e2a046f9c038fbd21e990bc911169c16e4518f235fb28c7a36e83e7a70f3eedf2bcf83637973f63d291\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5340292559410811666600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5340292559410811666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.001779281866358971\",\n                            \"voting-power-unnormalized\": \"0.005560255832371784\"\n                        },\n                        {\n                            \"bls-public-key\": \"842a1b74ae7ecb2946bfa5e55a680b444c9cdd3a4a511b8625a6f96349ef7cab0a658f8c7b3e27fe363e9a9b1475a18a\",\n                            \"earning-account\": \"one132yeuy3js36zqhupv37ap3m2mj073qdgrafkxh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8adf7db7a7e82fffe5ddceb3dc3798fe3129665391ee195cc6413851a805b43351dffcd9311397a2b13ca1a50bf6c18d\",\n                            \"earning-account\": \"one1yq84hen4gunn6d5q7wmgptk45z5pum9x4lg3g7\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7817211035362950000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"b8ee5acf7daf413625230da44a86a8a111d6e8adec486afe684bced0967134bb8f920bb2efd8481c5e8c1f2413a79d85\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"b11978de3a5edc73d6c70a6fe66d8c0cd48179ef58c43ac9eed7bff1b7143d720f5e7fa8672e859faaf2f86ec6a53389\",\n                            \"earning-account\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"01912adee0e1f3809b63fdeb86cbbf944aa23e649e5fc4a34c259cacdac6dcb3643c66e1bafae41e611ab0466a70cf90\",\n                            \"earning-account\": \"one1dadw84g7vlfxgzddpa2rpne4pvlpfkaknl5rst\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b3a606fe9179eabaf5dcd631178022e49cab8640703e18426d4e580a7b164b7a0b4c6fd1d2982100d71663641be37e90\",\n                            \"earning-account\": \"one1f0qjrnwdg70erc4nwufapcs834aggq2qclrjqr\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"85f2366637f19043d5ce7f95a5b29c3a80661d07fa6896e183e6c715d567d546729691839bf7285f2b01089266fac40d\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002119307027015564\",\n                            \"voting-power-unnormalized\": \"0.006622834459423638\"\n                        },\n                        {\n                            \"bls-public-key\": \"fab871dc783e065e26ac13a8a5576418d714926d83325d8f8c72e975cd74f894b00a31ff18c0c7d20aa094dac1006d01\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"ffc25ae925ff32957eb357fb33f39426d046487fbdc6c104b5ee2c57d967619449c2e15e3785ad58cbaf46adcd068105\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"c4e22e2edf12fc844d1dac366bf591a43d139a74c0c5d32a8995267415d0aa6a29054b557d6a6b5d1726bd8f8c22b395\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"c4f38df0892305a1f5d17d22050ab2897e5063725ad2a7076b032861f1b666559a06af6c0737ebbadbc2f3b65fa5a385\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"voting-power-%\": \"0.001895253887752998\",\n                            \"voting-power-unnormalized\": \"0.005922668399228119\"\n                        },\n                        {\n                            \"bls-public-key\": \"9f4ef042e95194dcdbef69f586fed7e341d81cd7f2b78e342fa045017ac93a1dfcd6c5bcfa5af84a46b2a6eafcc76701\",\n                            \"earning-account\": \"one1z8v8nr29qthr74390rlk57drz0v4zrx79w20ve\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"274750b387926a11fb0312259c6ed9918f40083573cd2be593eedafc8773a081126906ec4926e9a60bbe1570bd300d80\",\n                            \"earning-account\": \"one1p720ps3pl5y9jg4tk2peehjhapdfyn9z6pf9rn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"67efa66594a81a2f82f7197204d3f83fd8f07f21be57293628e134d84d9810f2ff7ec45cb06692a3213865f364016b0d\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"6af38646737e41bd8cd3a6b4a15584764fd7068f9f205ecf26dec36c64d601acdb871768a77d37259100ef8e36f4a491\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.001995286403364173\",\n                            \"voting-power-unnormalized\": \"0.006235270010513041\"\n                        },\n                        {\n                            \"bls-public-key\": \"12eceb4aaece26636d9e6f9fe9e5aa8759ea54d07d0430040aa13f49c8a169f1074233facf60f4f2092a087390813911\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.001995286403364173\",\n                            \"voting-power-unnormalized\": \"0.006235270010513041\"\n                        },\n                        {\n                            \"bls-public-key\": \"997e1cdb546c1050f44d642ab9a137349b66054e588a38e6700cc440eb7106e62951108f55e357e75af7ccb45d56b795\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001989014039091579\",\n                            \"voting-power-unnormalized\": \"0.006215668872161184\"\n                        },\n                        {\n                            \"bls-public-key\": \"053c8b40358a70305b1dbb687a701ba70b1746e4fd7ebd9b476356996e858d908072f3fb04afa79b9648061f8c224618\",\n                            \"earning-account\": \"one1hh358aymszej4gxftkq96f8yh5hlpaflvq4rmn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"32bbd21526b10c332d5f6df253597a36dd134e6f29b5d3388a75d454a9aa553872dc8ba64b0e34428babccf0a67fd713\",\n                            \"earning-account\": \"one15qj8q6ehpalzpdglem5pshc5nns0fpjn52y7fv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"105947b76d98c3a83aed898aee864c0465ad0cb985ebbe60f196ddb208fb197f587c242a66d67d486f44c6b7d71a9b12\",\n                            \"earning-account\": \"one1yy7pluu0dl263gey5n2yvwqdf6ka0aq2gt85zw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5fcd78ea1779519c087c0700a0381e1554505776343ca4a4b706347787b2cabd80e7320c1a6bddbac9f6cfa6ab2f6b92\",\n                            \"earning-account\": \"one1rgylqupcp9u2k973lh6g6ge7gafemvjyqsgdtv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3af3cc91916bebbc240a5ca9c7aa478a0ffb54ca6d1e6c09089271d48a62072bf769676de303403c3465c45c7ec24e15\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001824639212758298\",\n                            \"voting-power-unnormalized\": \"0.005701997539869681\"\n                        },\n                        {\n                            \"bls-public-key\": \"88a5216174e026b45a4be63b17ed2c6cb25fa4e41e397b88d765cc49412d9b6c14d0e7138b7cceb0d2f5957d7ba8a305\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001807078546641525\",\n                            \"voting-power-unnormalized\": \"0.005647120458254767\"\n                        },\n                        {\n                            \"bls-public-key\": \"cfcd849400bd1f9d58914f61bbacad5a73e36db5d6b420dfa5fce21e33f8f7f8e01b6672e03d6917d007faea4f67868d\",\n                            \"earning-account\": \"one1x897lk8tks3ty5a93f6782jm4d76vp0twxugj3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"836279e16ae9ea5599de33e0f2dcdbf805239ffea6cf47f3d4217036f64a9ba16e6f06438c82c628e16080a540616219\",\n                            \"earning-account\": \"one1kxw3ul6vpq4nup6as5nkemxhjakvlrzg069spp\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5e5bd91b46238b7d3c39aac1dfbf646948b51be978088e520b7dffb360765192df9a33ea2fbf3be40c1d758f069b5c8e\",\n                            \"earning-account\": \"one1lae40kufwqh9pqag4a7ta33zaez0egqzgrufhp\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bd2701b5690c0dc0f98308c62cc9fe3327fb1d9b4f18b9252d6d755930e111a8d75cc2f8cc9c47794f40970721c65585\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"0a96b4332a7f3973f7693a2f6a80755981adb090a25200a4c67d231c5490af2b66e4ed5edd520c8b096bb3b65b121315\",\n                            \"earning-account\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7749703184439000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"449e9459311d05fc44573e79d394de90a535bb266c31ad8d7c85168231445e111aa2fb0eef24d564ec9e9128728a7b85\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.001995286403364173\",\n                            \"voting-power-unnormalized\": \"0.006235270010513041\"\n                        },\n                        {\n                            \"bls-public-key\": \"164fe2da87e1e07700e93ed752924dd9243b1e4f1dcb437ab2826f4e381cfcb14035a24ce4f464d24aa3f4462a9ee815\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001878399350130978\",\n                            \"voting-power-unnormalized\": \"0.005869997969159307\"\n                        },\n                        {\n                            \"bls-public-key\": \"2dac109932443061c99674e0f25a2f2f091e60ac50904b8ceeaed85a014adae977a943e2a91814c40b0aec2d55a09180\",\n                            \"earning-account\": \"one1ehes8t79lrc7sqagsjrv28e29xlzkmelax7zkt\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8047e6aae13b6c4cba7707529d32ffd66e935fe0a624a0b9b744898dcf5e8ea84877f1809cad5d7d9e5dd5eba2ef6189\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001824639212758298\",\n                            \"voting-power-unnormalized\": \"0.005701997539869681\"\n                        },\n                        {\n                            \"bls-public-key\": \"7b02c517a5065f8cf1773a75b23542365330c16e8f97e3a01ee2f293b8c510d2d2b6388e8bb89e7fc1605d6aefd56208\",\n                            \"earning-account\": \"one1j2z57yrqazy3nnuta20daqrced0gfx48cqlhdw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"267f3689f881784817cf6878688ad0c18b17f086f79a21f0410c57740fb73069b9a7a3a27ece051522302e114058320d\",\n                            \"earning-account\": \"one1xevk8k8rnlhxwkh5xf2ghk92tr6pans0xvk3re\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"413ef5bc7ce1ebaf352011ba39106d8fe63b181462b49978649425a95f563e0412ea0a48a5dddd4ba2d6135375a36999\",\n                            \"earning-account\": \"one1427qn37jngpu78lrdaw5e0q923jjcjkcra3t84\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8148304893344000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"fe809303969f91a644580f1515e6d3029802c3a964a5eb6413ec2a72c1e17c70c795ae72d8647af9aa68538b368ac009\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001810542114289891\",\n                            \"voting-power-unnormalized\": \"0.005657944107155910\"\n                        },\n                        {\n                            \"bls-public-key\": \"5438b795c8652f901b948e886085d6386608875c5e8c1474813c82a6079df3bd8b261f25241c3ed825675f58a1f79491\",\n                            \"earning-account\": \"one1ff0e7furnnhhnkwy3x7dz7uex5v2tn9p25hycw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"87970ebfed4e6e27cc7b546537c4de38248d985918c6576b6559784fe6ac02a6841bf856163635e6e93f8a476b924c85\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426022077632278790909090.909090909090909090\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"985e263ed18e57aed7913bbb9d6b2dc1e06e27a7cdb1e44b16128068be1f3e3b79338043a33629bbb97dac2ab622c391\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.001995286403364173\",\n                            \"voting-power-unnormalized\": \"0.006235270010513041\"\n                        },\n                        {\n                            \"bls-public-key\": \"d3895a8bab3769a8d9bb524b6f824a0a99796ed2bf7ca6487cc524f8ea63ffb0b1f0bd29a194c250a88c5568be459519\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001989014039091579\",\n                            \"voting-power-unnormalized\": \"0.006215668872161184\"\n                        },\n                        {\n                            \"bls-public-key\": \"4b12f2255cde93a0ff6b2bac2965887dd46e96f554c943d760393b7973435128bb7d5c93ae2a17ca757071e4a4e98319\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"voting-power-%\": \"0.002145385689983959\",\n                            \"voting-power-unnormalized\": \"0.006704330281199872\"\n                        },\n                        {\n                            \"bls-public-key\": \"278993988a8c07ffac9d0244c59f8b8c7a3f003dcf2d91d11856df6d6aef44f5289aad2cadb863bf6493322de4e9c019\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002078848686633439\",\n                            \"voting-power-unnormalized\": \"0.006496402145729498\"\n                        },\n                        {\n                            \"bls-public-key\": \"e3750661e4996422239dbdc369793e3cd248c6f4ad54f17145a5396347af67abc8fac82a5e51a45055b483874b9ac691\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001810542114289891\",\n                            \"voting-power-unnormalized\": \"0.005657944107155910\"\n                        },\n                        {\n                            \"bls-public-key\": \"5d0f9e2e4b97dd567bfb5e486d4d32303eff1bf36a1b484dbb5a499c83e85d6c3656fe3a3a56187e032de612355e9419\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001778050256875432\",\n                            \"voting-power-unnormalized\": \"0.005556407052735724\"\n                        },\n                        {\n                            \"bls-public-key\": \"a84342997e747ed6aad830ebac6caf7abd628e6e7dcd2b9615a56c3a98c0f05c3846c79ecf6aa84e41790bf0f99c558b\",\n                            \"earning-account\": \"one1d7gueevf4q3k46qnt0tj8rdca2vmzqu6zkp7wt\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"861e2d7cb713051e9a2ef95479e9da5be4d192609cb7af95737187abb0cd327aa70cec44ac26dc6844f231ebcbb06081\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002222745180336335\",\n                            \"voting-power-unnormalized\": \"0.006946078688551046\"\n                        },\n                        {\n                            \"bls-public-key\": \"aef0ce484fcec7227492e55a8d311172cca44bb40d657c44c984a709b0302211761e0f109b4a65d2ee9a8a88fc928595\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"5ca3a829c80c11bbfc662e522aa385240acd53742c696de3e33812d43403b460f5b032ec349a7e5d09f4e74ace7ba082\",\n                            \"earning-account\": \"one1ku9r7hgzxqdeyeagtezrge0mdw96w6zqd9clml\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ccc797f918528cea5ff7932823b503ff264718d9e4d1797fb8ddb3c57b7c49175d0999290158cd800db399e62d810115\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.001995286403364173\",\n                            \"voting-power-unnormalized\": \"0.006235270010513041\"\n                        },\n                        {\n                            \"bls-public-key\": \"0df729418ab50873f5b266ca2b8abb3d8a0b1a0df89d3893db9cb6d5c441430d11d50d368f9dc5c827d4dbc1dfb49a89\",\n                            \"earning-account\": \"one1rjl48v6v4x3ae7j04qpw46frvjlavxyqnp486s\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b06e9dd188cccf5bbad858cae1fc63fe55bb92103dd7aca9622f8f28568bc74b498ce306dc5f0dc5c09a0914e1e20a91\",\n                            \"earning-account\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\",\n                            \"effective-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001932310888860921\",\n                            \"voting-power-unnormalized\": \"0.006038471527690377\"\n                        },\n                        {\n                            \"bls-public-key\": \"10ad4173cef1909c35ce7464816b9f6809e336e8b70d92bca64b11311722bcbf33b9578a60e96d305b3a9f013c297c8d\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001822983720121132\",\n                            \"voting-power-unnormalized\": \"0.005696824125378539\"\n                        },\n                        {\n                            \"bls-public-key\": \"a110d8d1a3626e6b23d61a012bbfec6536c5f2c93d395a2345354f17ffda220e9cf0b4a3ac7a5e4009b80c0453a0dc82\",\n                            \"earning-account\": \"one17h885c4jrxhp97k5vrvp09trt5g9ajg23fnvf5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8518ed7c513fc710fdffe9d2929d9a4c7d242c1ee6edcd07402659a01bdb8f1133b42d01b4661dc46d2f633ad2063281\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002078848686633439\",\n                            \"voting-power-unnormalized\": \"0.006496402145729498\"\n                        },\n                        {\n                            \"bls-public-key\": \"743fdce65c15a85da507535ceeeb2ddea98931dd6afa2d748e742622710d95094bb4c6157eb65dfc9c1c1d550d360911\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001867913620932126\",\n                            \"voting-power-unnormalized\": \"0.005837230065412893\"\n                        },\n                        {\n                            \"bls-public-key\": \"e3ca514b3fdd4680786f565b4f504d5d85a35de326734c2991acd775627737ae0f1808c1ed0676df7c940005305ca08d\",\n                            \"earning-account\": \"one1dy6d7tyrxjdg4z28wkq8ac7lqkq8yn2tfjqwrd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1181a673448c0b135574063249f0754b9a521c31d5955441bd975f33291c214731c57308176877af57e801d3433b9409\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001807078546641525\",\n                            \"voting-power-unnormalized\": \"0.005647120458254767\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d668e1c2ac9bfb632ceb654042eee79ff927de2b290440b0c55d8b323130b911caa2599772f69d2c0d823ac2d6d2a11\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001786944730064369\",\n                            \"voting-power-unnormalized\": \"0.005584202281451152\"\n                        },\n                        {\n                            \"bls-public-key\": \"1d6f1f85f26322febbf7a4e247fc5eb596c6dbc423b189882764aed458ff331f9039f83faa336c0e8d62cb48b1fad905\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002119307027015564\",\n                            \"voting-power-unnormalized\": \"0.006622834459423638\"\n                        },\n                        {\n                            \"bls-public-key\": \"cb053feeacdb08786c04fd4b31e621a929f16fdebd6e2e8ea5687deb6cc756a07e511d8c46ce6cf9d86bee03f4d0aa91\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"voting-power-%\": \"0.001895253887752998\",\n                            \"voting-power-unnormalized\": \"0.005922668399228119\"\n                        },\n                        {\n                            \"bls-public-key\": \"f7f8425f0d57c469cfa7dcf2af856792c1ab07e94762de09d53e39b4897e9b75f865be8ffc2f2bab8c88f177f86f3c01\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"1958891e8ab1ec4e2c528f5a89310cec5d52282c313765d256954b20568683660deb834b291ad603cc564fd1cd6af099\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002119307027015564\",\n                            \"voting-power-unnormalized\": \"0.006622834459423638\"\n                        },\n                        {\n                            \"bls-public-key\": \"ab5fa18cfe0e59bcafaf2cbcdecd009b62d77c2b67535fc143714b11ff544f793b0b700e45856e7b1633e380f7dcfa99\",\n                            \"earning-account\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\",\n                            \"effective-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001916074374239796\",\n                            \"voting-power-unnormalized\": \"0.005987732419499364\"\n                        },\n                        {\n                            \"bls-public-key\": \"a7fe02c4f789c053f8061cfa72ab6fb41c58eac7bb17c0d1c699e6c49182ef95c0d72a4be51b828870c6b4c279ce9f95\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001778050256875432\",\n                            \"voting-power-unnormalized\": \"0.005556407052735724\"\n                        },\n                        {\n                            \"bls-public-key\": \"b021214d1bc3719324cdea55a2291e20822866758add096e823bd2cf0ebe8161b86ca5dd098265c82f8dd59389f87808\",\n                            \"earning-account\": \"one1fhwkcx446gxn46gwaz9zpkpddlqs8xwhrqgxad\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"aed665af6870561fcb0054832e35fa773a2d8b82b6ed7bed0500c5e7c1015a5a6325042d5e8ef954ad5d45c467055601\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"f41c4e124f7d78ca0c6205f2ab45fa0d5d96944623c1c376cf86aab07ca1b4b14238121d0850a951c74907d23c25af05\",\n                            \"earning-account\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\",\n                            \"effective-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001916074374239796\",\n                            \"voting-power-unnormalized\": \"0.005987732419499364\"\n                        },\n                        {\n                            \"bls-public-key\": \"7335f5c266cc3d4223004af9cf13ad41bb69a7748359ea115e58ace47ccfae64a2e9d2e9e6e9e06a2f5c78465f8a2489\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001867913620932126\",\n                            \"voting-power-unnormalized\": \"0.005837230065412893\"\n                        },\n                        {\n                            \"bls-public-key\": \"277845856fdaa0ab4293ab18e2e8dc43edc5163666025eba00a9fd5c88a3d48b39eada8a9ca14d2c6ab6ee34179d4499\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.001995286403364173\",\n                            \"voting-power-unnormalized\": \"0.006235270010513041\"\n                        },\n                        {\n                            \"bls-public-key\": \"3346dc4f8d994567f8635971552ca16645fbf98dcb5f0f021d4d41ce87428d7069440085dca0d9e24c7d3ed07b40bf05\",\n                            \"earning-account\": \"one1kqmrl9e4r474a2gs5mxx7uhpwjlfx2p42uqtye\",\n                            \"effective-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5799590080333333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001932310888860921\",\n                            \"voting-power-unnormalized\": \"0.006038471527690377\"\n                        },\n                        {\n                            \"bls-public-key\": \"00f97b06aa7b67db2dbcc7f3ddcb05cfb9e128de3c672597fddd102b827424d183865178dbb8759a098fe8b274cca405\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001822983720121132\",\n                            \"voting-power-unnormalized\": \"0.005696824125378539\"\n                        },\n                        {\n                            \"bls-public-key\": \"5b98ca41ddba38de2d7b3e5a227d40df268f1121e1653cd3896c3f7719db364fa4c8383e1a30ef183066dfcbb1261492\",\n                            \"earning-account\": \"one1962lp4zkn9nafqghz2sdezjlwywr4a83c5s37g\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9453f11dd452d9cd2c0bc2c5bf272d4ffabb0f9f2605955f7f6e5dd5028f91c4fd594c15360f9477a853bc0f5f8dee8f\",\n                            \"earning-account\": \"one1fu2mda5qe5rc0vmcamgmwpwe9uh375kr5wtjm0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"fd77e1e3b2db565623d986fc29ae46a620d4e945455cf4ad2a383e30c61aa95c851fbf2f8e774f732dd654de5dc79f8d\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002086658261271194\",\n                            \"voting-power-unnormalized\": \"0.006520807066472481\"\n                        },\n                        {\n                            \"bls-public-key\": \"d7f3aedc704744bbe78a2e85068c2307e6c3c7a3b8bc6495a1a39dd4f2dc503170b3d0e4cb40943d41fa8e795a363e85\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001824639212758298\",\n                            \"voting-power-unnormalized\": \"0.005701997539869681\"\n                        },\n                        {\n                            \"bls-public-key\": \"1fb8c58a2d557f659cc11f423df5efd7eb9e7160b3d77425dcfb650a5714c640aa3997e548462c82fd65a122399f040d\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"a19ebc874d122fcdd3e809f5e2d08317f96093d96ff401e7a7648641e8ea290539095b8963f67792e01766dc0c82c995\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001935737817320260\",\n                            \"voting-power-unnormalized\": \"0.006049180679125814\"\n                        },\n                        {\n                            \"bls-public-key\": \"a79b037697b9f7d3c0e0334d9faa249abd3b4f32e525da18cabe275e102869a24f6e6321e3dd9b2347a9591d00d8b70d\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001878399350130978\",\n                            \"voting-power-unnormalized\": \"0.005869997969159307\"\n                        },\n                        {\n                            \"bls-public-key\": \"4c20bb0b2837e06c60e7a377798987a66f216c6d6c466b31d024d174a120267a65cf91d25308c6d9206bba1a37073b91\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001824639212758298\",\n                            \"voting-power-unnormalized\": \"0.005701997539869681\"\n                        },\n                        {\n                            \"bls-public-key\": \"9756abbc889d65aa2739fecc1bc7188640395c003de39c4704525136764d5b607750fb86f8d6b93a784ff52456147b01\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001810542114289891\",\n                            \"voting-power-unnormalized\": \"0.005657944107155910\"\n                        },\n                        {\n                            \"bls-public-key\": \"91fe8bdee2c777922a33cf5d701c7349697d80049037e130eec2ab75664cd63292d67d264519cf18e4d24a7151858113\",\n                            \"earning-account\": \"one1jfjfp656k9gya46p5wlpfpgck0hduqkw8qph84\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5945bbafb90bfd39eb39d5ff78e7ef193aca0bfbde7d56360ac9750d82935758cd16c0b0df446e2837ea90d131e51c15\",\n                            \"earning-account\": \"one1ksqcladc3r5s90v494h9tfwdhkx88tq6j549f6\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7705518108147600378500000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"cc5f9acbe434aacf87b6059571452c558eb8519f1788dbefc8c589c75580a304fe7e4546166cf7712da37d1aa284d215\",\n                            \"earning-account\": \"one1rdmpel0fam355u3xdda2w037x6dq8n7xsj0e3v\",\n                            \"effective-stake\": \"6311311720000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6311311720000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002102806610575244\",\n                            \"voting-power-unnormalized\": \"0.006571270658047639\"\n                        },\n                        {\n                            \"bls-public-key\": \"77ebe15da9054374ec1614ae5aa40acfde825e2b64a6e3f1e0522db9e33f398c8a33ef8a982f3743dfabe4130c22a319\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"9adf49ac1fb43ddbcc28d9a2e4fab7519504db9df44ee2b3d4d2a8a157d32f90d06e501cce9f449fcc771900a7ec9711\",\n                            \"earning-account\": \"one18h6suyhvqwr7lcf3s6j3csfgnc5sj2vh252f7p\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3aa1b10f749b926ce116ed55fe87e948a45b748b7450427973f936444f504ce3bb69f74cbb1eb5507bb2949adcac1405\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001935737817320260\",\n                            \"voting-power-unnormalized\": \"0.006049180679125814\"\n                        },\n                        {\n                            \"bls-public-key\": \"a0d453943f069eb6dc3cdecf5c96783d2076d81ffb995251d19387bdf48423035801f1229792feebd381a1d25f91f88e\",\n                            \"earning-account\": \"one1x24etmqfva9f2m39hljmlx2sumvh920q7lw5dy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d5351b8c815a3d89685a82ee7173f2759ccadc9fc2faed0b9b0b4f63c7b9021551d1cc78f7ec0aba62e2e577e8aa68d\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426022077632278790909090.909090909090909090\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"3d95117eff84aa5e20b50b0bc9f7321e19dbb991d45396a227711ee9ab55aa7e2057216516c3612b6a9444118f356199\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002222745180336335\",\n                            \"voting-power-unnormalized\": \"0.006946078688551046\"\n                        },\n                        {\n                            \"bls-public-key\": \"ae5a7f0981b71b588df866bbb7457c42549824f8688743038c7c0c8a5a181be0747373d690989c09265d7b4802a6d30d\",\n                            \"earning-account\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                            \"effective-stake\": \"5423582662007333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423582662007333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001807032512517113\",\n                            \"voting-power-unnormalized\": \"0.005646976601615978\"\n                        },\n                        {\n                            \"bls-public-key\": \"8d52d8d24204859abbc0bd68594d88745b2cbb0e9fb892adbf6a356b0268e8e776016fa8337eec989ccf854d9067f799\",\n                            \"earning-account\": \"one162qad6qul594runfeuk7t3vdayvkexnvzph45m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"04905b31875575fb2c51d75261efe27c61f9181eac69d4617e678a954a1ef9f987c3c22646be919097e5d5f8250c8009\",\n                            \"earning-account\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"a6898ff36da875376516e205f687a7590e124337f0cfad968624e05a1a3f472e04ff0da9bded67922a2beee748136b09\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001807078546641525\",\n                            \"voting-power-unnormalized\": \"0.005647120458254767\"\n                        },\n                        {\n                            \"bls-public-key\": \"9cdac12c6507e3405edd521d5cc892840b5f79b140ff3c71b6e7c9a4010b886608fc3f83709e1a60232fee0bb2b00209\",\n                            \"earning-account\": \"one14gevvn4z6vmz6htkxwp62pe77c3dwj3p2cvrv6\",\n                            \"effective-stake\": \"6521433223504999999000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6521433223504999999000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002172815018683840\",\n                            \"voting-power-unnormalized\": \"0.006790046933387001\"\n                        },\n                        {\n                            \"bls-public-key\": \"b7ed2a4cf93689d442165afd9b6a88e15858f22b919cd7aa210d711d03e2b3b7a253bc507b98cd1179cd92c1a77ece99\",\n                            \"earning-account\": \"one1v80qhza089aege2ngxv8xnjv36ga4sxwhajau0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"81a756857f00c78b7d6299984c482d6b380afaddf60c95f55de354e3e755ed2b8bdab91fb8baefe4a5c36dd3c2bbd78b\",\n                            \"earning-account\": \"one1yr623algghp3gm6vjrg9vfh9mtmqkfc5e9zply\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"17edd1db18446e06a591e5d213c6727f2da5a137e1378ad34d4c91264013aeadda5da4bc424c0ea6cfe9f19195eb6393\",\n                            \"earning-account\": \"one1mag8nkvdaau5epkwrks0zedsnxatdgq4equ7sr\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"07f8d68fb254a919dedb2246ab54492dd1e346916d8244b2a12158fa84d2a2d5d680395b9788547628c81a4e64838e11\",\n                            \"earning-account\": \"one1wt9cvaduxh03n8rhw7aqhhx3s2cpffws59xjya\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"33482866000000142857000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"5074d8e57293ae73a10ce2f9ebd970872ebe972c377ae8fefd4f29da42d8cd4941c7a27831f7d31e3b7c4881ee31e711\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001778050256875432\",\n                            \"voting-power-unnormalized\": \"0.005556407052735724\"\n                        },\n                        {\n                            \"bls-public-key\": \"73e288038128e27b1f3b78352f919f44a6e9015589945f63be8d917734c45470b91e79859ce6487adab956a312ba2281\",\n                            \"earning-account\": \"one1qz7rtkl7x3rm7ys4e43d6rm0jl8ug35970nvex\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"14cf9ffa4fc6279849ee3c26fc6028a4d455df52b9431d7fea61064c37ab6b76ef233c596deb3c414c136fa0c217e891\",\n                            \"earning-account\": \"one14z6m6u4gp6xaurgrnnmxx6h7lacz3458sssnkm\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"83cc0b3f49335a03945b09a34f54ccd2356f2c985280c61e27732d169d1b394b688178e6a24f81e6646f4dc5e29d6f0d\",\n                            \"earning-account\": \"one17qqnjy4llulpcs3g2uzryhehk5rcyedy4qhet6\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7898511301676366666100000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"29ed233600cfa276295a61f5161b6a3e9671c3ae711f8454ad2fa32fa4cc11aedd57a5c8ddf61e3070c154d38bea9e95\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002078848686633439\",\n                            \"voting-power-unnormalized\": \"0.006496402145729498\"\n                        },\n                        {\n                            \"bls-public-key\": \"62a077a367af05574d7a380c6ad258c888a7266a2127ea68a39321753650a05046f1e408281e19ffe38d9a6129972895\",\n                            \"earning-account\": \"one1ql3w33ys0u80r938y66sndl9z7upkde5m99agx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1d8eadb7653f29928ba01d8ddd83fef588019d1ee125d1ee9d4365c4077d089a7fe9018d32d6af0a86a75a8f452d6b05\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002086658261271194\",\n                            \"voting-power-unnormalized\": \"0.006520807066472481\"\n                        },\n                        {\n                            \"bls-public-key\": \"00b3f69f0e90d2373555dd6827794945d7465b067fe4b1e8a9bc695508f9071af2ffba3b330fb42617534f23ece5c409\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001786944730064369\",\n                            \"voting-power-unnormalized\": \"0.005584202281451152\"\n                        },\n                        {\n                            \"bls-public-key\": \"7a3ce87d76839d870f2c27bd00fbe3731323a24c3142ee32470783e792a03adb6e7487d09d85aa118fb4c44c73b70009\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001786944730064369\",\n                            \"voting-power-unnormalized\": \"0.005584202281451152\"\n                        },\n                        {\n                            \"bls-public-key\": \"5be15de52c6f3ef44947437734e1d9c8f2e16d71ef1eaac70cefa58e2de5dd950d35edc624d69f11625c01d3102af085\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001778050256875432\",\n                            \"voting-power-unnormalized\": \"0.005556407052735724\"\n                        },\n                        {\n                            \"bls-public-key\": \"85747fd93d0b91c60c5d2c3f6adcf79708f8330402e2df9096037690d68b91636ff9ebb110abb9b05e0c2c5aa02e5c19\",\n                            \"earning-account\": \"one1cfx2x23um3w2x2rvqcue9vem0yy4p0h5vyzuua\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7432e4013a3a9fa4922699132e39a6c4fb1e4d867d1d5bbcb4dcfb41f11fbc1b97992e232678fa11500aa56a7c4c6895\",\n                            \"earning-account\": \"one1wael8exj25pw63qrjmcuk0sv6qp8v2p8yuzjtr\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7949748585611733333000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f1eb7dd04d6c789c7a5b949063bba2978ee0c0be3a81e873f36ddd2e0b012256cd45d7218205bf44ce7113c01460795\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"voting-power-%\": \"0.002145385689983959\",\n                            \"voting-power-unnormalized\": \"0.006704330281199872\"\n                        },\n                        {\n                            \"bls-public-key\": \"887dd858614da4b6f81b3f5039334be0fc7efba7cd2ec3f9f2cc070df734b09b4889092bb0097beafafa581361bbb88d\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001935737817320260\",\n                            \"voting-power-unnormalized\": \"0.006049180679125814\"\n                        },\n                        {\n                            \"bls-public-key\": \"91ffa107972781b9ed07953c1efeba35d4c25cce2e2dd22bd21ce9c75658dd880e03440006fe1aba9c1d7fcd537f2211\",\n                            \"earning-account\": \"one1tkumu4trrrce6v7gll4wm98hw0nurlcmjahtyq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"94a9742a5683b6dbf769932494b8ff08d6a7e0a298b2d252ef61079fbedaa1a2f117a4d3bea20b7466c8a30396e7af03\",\n                            \"earning-account\": \"one19yhxw8lvnlwv2anuqt02pu4twswespstver580\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"149f779d10538063c0d0e826e9911a9425de161d06d13605d2cb26182039f8730af0c5d439fb044516e58fa0d7a3cc09\",\n                            \"earning-account\": \"one1nswvtja66psr5kkdcqanc57mju0aqhguu5t6v4\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6866156087766666666666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"f0c2ed95d5f41301a689dcf6a3271bdfbeba45e235e71056c1dc67e0b91eafab85a09333441afdeb3b2acc5a5f984391\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001996876422838579\",\n                            \"voting-power-unnormalized\": \"0.006240238821370560\"\n                        },\n                        {\n                            \"bls-public-key\": \"c0cf1af7bb162b8b9c4e6496cdbfffadcfdc11ee98235637624b9b338c9fb15853961ed163da9677df2e1a1c8a977299\",\n                            \"earning-account\": \"one138p2807r9ywy9ux82kk3pc0z9mff65ystv3hpg\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7546861671224666666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"9f68854a0d27f0af2bfc447cd0cc724857ee90b10fe668e8bbadbbd81a6051f593813f15533004a76c2a0ccb25306911\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002086658261271194\",\n                            \"voting-power-unnormalized\": \"0.006520807066472481\"\n                        },\n                        {\n                            \"bls-public-key\": \"97fe22f0ecb1db616d51d741cbf9afe27ed45ded467f45227b0d837e142d59b49bc84400b513ec2e939624aa4957e181\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001989014039091579\",\n                            \"voting-power-unnormalized\": \"0.006215668872161184\"\n                        },\n                        {\n                            \"bls-public-key\": \"8c8698dc1ac6697e0bfd29eb3040a992c8eaf9c2ba60559731309e3b2fa472b3948752e1fdc09219d113700aea63df95\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001820496924789850\",\n                            \"voting-power-unnormalized\": \"0.005689052889968281\"\n                        },\n                        {\n                            \"bls-public-key\": \"248288b3a44b0775da68d6cebd4fdafb45cc8e7e4b90606c0ce174b09c941fec361b61935aa77746a98eeafe11b81689\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"d4e9a9e708070791c0f9cac4b91cc3c60b6a97cbc38b36b1778d74d7266cad68731f36a471359bd513e9b77e76a28c91\",\n                            \"earning-account\": \"one1v63cck8d08708mlgz8rmrku4l9jgvtmfn8a6wh\",\n                            \"effective-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6671292375000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002222745180336335\",\n                            \"voting-power-unnormalized\": \"0.006946078688551046\"\n                        },\n                        {\n                            \"bls-public-key\": \"f8162589f9d7075f720e92448b7ba37068d47c55445916a7d7ea87678e1e047de12acf4126eac6b740fdd26a0c25a00d\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"3a30d5f923cfd0e3f673f62b4161c47b452743e1f50044de3df07c0f51d455385893668fedd75e63248a02f903dc4a01\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426022077632278790909090.909090909090909090\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"a99e95e5d0dd8e9555684df0676c42bcd16a4a593d71bffa53e19c7beda44673b6b401596c477e341e072f9e1792a499\",\n                            \"earning-account\": \"one18xrw6c8a7hrrpxayflmsgwq9k5rxhfqjgsqdd5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7174942266052657142875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"7fc4ee1eaa81a6287c6d9d94b13c0f8f6c5ef4da02a44905220a57e2dadba6a787cca7c0804c760247458c0835f28681\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"4a017b97577cc281915d97de38d741281c6beda42bf24f9d44bc100e86c7fc749951f87f61ba74a53dcd04409a7f1215\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001996876422838579\",\n                            \"voting-power-unnormalized\": \"0.006240238821370560\"\n                        },\n                        {\n                            \"bls-public-key\": \"d269d3fb01d5a3a1c615f8904aae5cabc71e725eee3486f567e14d14bcd5e02c1e54e4e9eb5accc2b774b05c1ba2f119\",\n                            \"earning-account\": \"one13vpshpmcfdm07hqzck03wwzfrfepaslyjm3ys5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"eb2bb03ff0a8502769d3718469bdd4acf592d752b372d6c184530bc19c13fc18786d4301a478f0572b22a8e42553f409\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"22ef49408747a9553e4a3f77832a15aba9294f8ff22ac9566826b384ef1c2b4eeafc791c19f729393f4a1a08190f3d19\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"77310a150e5df07db4ceed3daf98967b70b8156beb7c39a046d505bce3620ec048a24903d9a9432724b6327808e66499\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001989014039091579\",\n                            \"voting-power-unnormalized\": \"0.006215668872161184\"\n                        },\n                        {\n                            \"bls-public-key\": \"d5e71c145152c7a53ffe5090fdd5dbf8595428053d8e85f858c2d831926a933e2be76d86aa8ca7feb2146c3a6c27668e\",\n                            \"earning-account\": \"one1267mpm2mtyrf4nfwuw4f0dspk7mptk4hurr2fc\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"843f409bbd76af738342d111fee0017fd5fea404bc1cd646a5c4992f551a16238d7d53a6fa8b2a6b1eada235c2eae285\",\n                            \"earning-account\": \"one1d0pg8zsy4tg5n4vh8tv8fggplm5cp6nzt5gu4v\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7749703184439000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"f1558e3fff2d89c37acec3d055bf0131c864fb222574bef27ca0af13dd3fd73173d8e818d842b117f5c6d5bcd545250d\",\n                            \"earning-account\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                            \"effective-stake\": \"5423582662007333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423582662007333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001807032512517113\",\n                            \"voting-power-unnormalized\": \"0.005646976601615978\"\n                        },\n                        {\n                            \"bls-public-key\": \"e6ee4dd21bbafeccfd88c393577d15a2c4dc52f2b78e3582038f40b49c2bac84da4c6959f8a0628372a0dcacd592cc85\",\n                            \"earning-account\": \"one1zdz826ruk0rfp78vg3dw98epwn33ky3cu9udmm\",\n                            \"effective-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5993375476123857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001996876422838579\",\n                            \"voting-power-unnormalized\": \"0.006240238821370560\"\n                        },\n                        {\n                            \"bls-public-key\": \"80e43b7381b0d2405b44a6a6293a5174fe4ef3e32b26a10c4af20e213d6ae17d778eb54e7129f5ac69343eac40fc1b95\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"2a2091d221e02a0982a4c4501f94d88980ccff0a447b3d47d0f78aa1e77504daca95cc35698ceaa1c984b819af5a160d\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001810542114289891\",\n                            \"voting-power-unnormalized\": \"0.005657944107155910\"\n                        },\n                        {\n                            \"bls-public-key\": \"27d3591a48b4cac3c7801db17a57d35b04bc2af97e286c7c9f948cfa318bb53124a283b6f49f99d3fbf87524cf41c80b\",\n                            \"earning-account\": \"one1t7nrh7s8zhujl0lt3x5d6tdfwekqy4zkeqx770\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"eaba02b4c29ad6dce8109579cdc60d89730d2be7ac10ef426f8c1e47707592d223dc069c0dd59cb9f7ece5ce71aa0f89\",\n                            \"earning-account\": \"one1s568nnxwqqjxypx53edk8vg8z29p605qu0j90p\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ce157d08213d5480ba16234419b37271cc4febb02a99271c32a6f7704ad614ba61e1f971513822d5971873c668486299\",\n                            \"earning-account\": \"one17qqnjy4llulpcs3g2uzryhehk5rcyedy4qhet6\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7898511301676366666100000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"1a675b05b7787b10c0cdbc08a1ed3881a841082ab0b62bdfa7fadec77a02aadedc3d47c096c598d403a2c06410f51281\",\n                            \"earning-account\": \"one13jhphrfzf2qhexqgaqufu76hg6ag934fn4rhhj\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6831715306952014285714285.714285714285714285\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"ebd22515655a3ef506c68badb47d8a8271624941d92c0258e22796261ba89c0fe5528f1484ac85a2a91f2bcedbae7209\",\n                            \"earning-account\": \"one1zu69u7qt5uquh2mgl2pjrspvv4rsn7qnsq7wdp\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ebc506a607d843521bc0362c74495ba7166894a7fd1d8bdb2858783b0655f4b542e54b46820ee504a97491a35a354e19\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002086658261271194\",\n                            \"voting-power-unnormalized\": \"0.006520807066472481\"\n                        },\n                        {\n                            \"bls-public-key\": \"a48c5f98e7060f9c2cd0e95efa6047ce20771ce99041466afc3e417c0c9aa22ad072af95418529e9406fc590c55f0219\",\n                            \"earning-account\": \"one1t3tex27l80cs4eltq5t7wymcxwwct6xxuyf7w4\",\n                            \"effective-stake\": \"6125281242565200000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6125281242565200000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002040824864929766\",\n                            \"voting-power-unnormalized\": \"0.006377577702905519\"\n                        },\n                        {\n                            \"bls-public-key\": \"ede3a3edb3469c8ab63665cac359af0051956f1c6a036d88c26bdb09885e9dee66f3fc0a78530f948dbfed1a72abca85\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"6e749ef61bc1d9eaf0a36da6cb4ce7ae5f32615647fbe5a8f074e664359a8be4c45995e6a265339a82ace3d077f6eb8b\",\n                            \"earning-account\": \"one1a4y6qz32f6qjp8p5z30xh4fpux9mlxm6uxgesn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c9d8c73e69151bc5020d22a6e0be30def18190aac28e2752e6759530adbb5ef715ce783f617ec8bba29b5a064e48a502\",\n                            \"earning-account\": \"one1fwg40dmtat2pq30p3a707qz0vu726l6tr4e0lq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6791ed00d62bb5b90014dcb2a6852fd4f1a6763dc5d28e822da8371c4168eaf64b627ef96d6cefd544bea24ba56b4915\",\n                            \"earning-account\": \"one1wrvlznh27fywscexnc2l9fxk5gjelcqdnw8pvw\",\n                            \"effective-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5750858207176333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001916074374239796\",\n                            \"voting-power-unnormalized\": \"0.005987732419499364\"\n                        },\n                        {\n                            \"bls-public-key\": \"11a4a7b7323dc3e5e6bcf64cd97b65662bdd5cf516ee85dc72647e22f7fb983c08b01906d7e8fa0d9a638bc5d691e711\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001822983720121132\",\n                            \"voting-power-unnormalized\": \"0.005696824125378539\"\n                        },\n                        {\n                            \"bls-public-key\": \"73c059d291361151de45f3b34c9eba861fbde72cff5a00c24526d017a8414b577ab2b72291eee615501b1e336e54d891\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001807078546641525\",\n                            \"voting-power-unnormalized\": \"0.005647120458254767\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d5dcc9d7b3f4c973a3f91e85b77ede091fe3fd2e494920a1c4026355998694864f7731b8c3630379adfbeaa17849a09\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001778050256875385\",\n                            \"voting-power-unnormalized\": \"0.005556407052735724\"\n                        },\n                        {\n                            \"bls-public-key\": \"33cd7292140a550b203328ebe44e19cd50ec9114c52ba2cfb94a302039e3526580c4d3a9f8b8d5f931ef66eb4c66c013\",\n                            \"earning-account\": \"one1u27tstxep9ntkaz92y92mxauy06y2kv7lp0ve4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"93c3332eda5a0d3e3c481f5320b60df4be663f7df1a365d28e6b26a10d7577102b4f3c1bea575103131750f19a762089\",\n                            \"earning-account\": \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7747952004070000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"2864f5f1cd848f2c7302faf6bdfc7456984365226c3d53c7cd63cd1dd316fee75a7ae48560ba5658ab47497b952eea99\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002086658261271194\",\n                            \"voting-power-unnormalized\": \"0.006520807066472481\"\n                        },\n                        {\n                            \"bls-public-key\": \"0cd4f33a299dd068042d5423bd1fe00f572a44d20137c093c6f636a069c0913e76cd04131554a8f4c4a91d892f161419\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001822983720121132\",\n                            \"voting-power-unnormalized\": \"0.005696824125378539\"\n                        },\n                        {\n                            \"bls-public-key\": \"d72a260c8325571aa5cda49b44d7f5fefe86b22a2d93bcd2dd3958a2ccc391f38babcf9a8a4571517df3307c65378091\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002086658261271194\",\n                            \"voting-power-unnormalized\": \"0.006520807066472481\"\n                        },\n                        {\n                            \"bls-public-key\": \"b6cea881ce7ecd6efd223874e509647454ce2c96ddd25955bb7e00e9e72cde34a3f31e66fb61c97003f60d261298d191\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001878399350130978\",\n                            \"voting-power-unnormalized\": \"0.005869997969159307\"\n                        },\n                        {\n                            \"bls-public-key\": \"e43d5ed52f2e09eb88604874f5ed83f7e9b480f78047926d53c98831f090144f26be7587586c6dcb4139b29b7f9bce0b\",\n                            \"earning-account\": \"one14t98zuacc6jgvj2nh06shfgl73l59cmu6pvy45\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"551019b5fff1e43c5c969e5459d599c2ffb8d85b358d6a0fc4c9d6b5f884cccd3d474f84be88ef11121c851a08674b14\",\n                            \"earning-account\": \"one1274jyz5qspmjuy8wwrh4s4lga6spumwlul6ufk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7b7a755f65c51a28957d3143b1d02e924675ad90b8474066f8013f324a3eaaef1654b6d87e8c1ebdbc022d0ebef46d15\",\n                            \"earning-account\": \"one10ucm2t8zpemv6r6v0deka86ztvzvxld5qcuu2n\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"fe51bbc6b3565fcdabea0ae46ac18fcf3a98413bfa3b7e24f676d16980e26d33de4d567808e897b874ad037b66ce7883\",\n                            \"earning-account\": \"one1e4t557ajgulyz328cdezladvctrwk80srrursl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"dc0be4d95496d741547821ed34271dde5e5f072c1672010f75fd052af44ff592d5f07c75a8c4328913a0b4a7cec17195\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001878399350130978\",\n                            \"voting-power-unnormalized\": \"0.005869997969159307\"\n                        },\n                        {\n                            \"bls-public-key\": \"92c7c513efc442974e784863a6e1037601802275094b907ecebfb72a2ab915cc5a3c1b599f1b50d0433211552d0c6492\",\n                            \"earning-account\": \"one1r4g3s4x3npuufc40vdd43teu0r3fepzsesnp8k\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6b922b2188ab7cf777e66f4447c18dc9d733606a7c1c5a50f61f528a12dc461e2db1e47e9af78d0a2446ed2007a6de8a\",\n                            \"earning-account\": \"one19khjzk9230e3c8rcshzuzt7emw94sh9902kl5m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2343d95555916cedfca8627d6d5a02a665260657c068a29af628ccf4dce0037296c9b4010dd1a4d8dabe10a7eeedf002\",\n                            \"earning-account\": \"one13fu462suvr2x93dadtsxers9hdq4a89s4hryy0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c1cc6891a6234bc6a1c711def8a2d15942a4f6c17eb2758583c0bd37ed59df55d7aa0eb26479d3d5b9ef151a762db295\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002086658261271194\",\n                            \"voting-power-unnormalized\": \"0.006520807066472481\"\n                        },\n                        {\n                            \"bls-public-key\": \"d3a862d872780701c6f7f495c4309bf1afc21fe394e7d903380c18ff90c80e24603eee3a52287ec2004b73fe883e7f04\",\n                            \"earning-account\": \"one1nzxn9m4ull3nvaer2yvvhhk086sqrn6emqwkge\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"cfda73a32b8d612aeb5b9a4c963086da8daf44ffde42ec73107ab2dff56f1568d2a9d453fb0c6040995317a3a268b78d\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001989014039091579\",\n                            \"voting-power-unnormalized\": \"0.006215668872161184\"\n                        },\n                        {\n                            \"bls-public-key\": \"c7f6d67cd32103215bdeb574bac7576f553a9dd3028afd138dd8627d200b8c3b09c34e0b2178d3bb85d1ff13bcf30919\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001824639212758298\",\n                            \"voting-power-unnormalized\": \"0.005701997539869681\"\n                        },\n                        {\n                            \"bls-public-key\": \"0b12ee68ad020e4a72cd302c1ba112b51b631221917a0862485bf9520af2ec60bc2c9ee387964811c5e009bbd258b191\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001786944730064369\",\n                            \"voting-power-unnormalized\": \"0.005584202281451152\"\n                        },\n                        {\n                            \"bls-public-key\": \"6cc7cc110633d7b6d3cdc473cbc85e76af002d9cafb9f015b08943e90426aad96b1dbe1a02b691722b2a6da565b50a0c\",\n                            \"earning-account\": \"one1sx0rs80aqzwkupclgssl5vhhf9nejpyg9k2g92\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a4c2e977e695c5ce8b3b9ef25bc450b6d2a8d1a6f2aecee2465a56693fd8e9c783e661d3a2e779902d16cb4ae1e1ec05\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"fad66c30983f8a7e5bccd3ccd237e8443c36fb07f50abfd988793ada2270c1db717a33730a8865ba0da5132f6c15750d\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001867913620932126\",\n                            \"voting-power-unnormalized\": \"0.005837230065412893\"\n                        },\n                        {\n                            \"bls-public-key\": \"880106b3aa920518e46ad26ee3a13c7a13426235f3d5ded0c19f75e113628d1807bfd9d8cc614e114dab51a51c9f3719\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001807078546641525\",\n                            \"voting-power-unnormalized\": \"0.005647120458254767\"\n                        },\n                        {\n                            \"bls-public-key\": \"f0760d3ece1c214357937cb93f9081a999bd9adf38445f2bcf5a6f82919d7ed5b803c7863d5776f50486b95618beb615\",\n                            \"earning-account\": \"one1k6asaq4dsz5t7us2s89l7jxxe627c6vfryld83\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"17e032d34402caefd647ed2779d1c94aa2a0f164682b5a050000bce0f77a96b59de9e25c9cdfd4e67e6a28d81703df0d\",\n                            \"earning-account\": \"one19ugus2az5a9m8tcgeq2pazcdht5kn3pe86434u\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7747952004070000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"6480fdc6e2c7f03c9cc419aa9f3ab79b0ad5279cfdc7c45363a17de3832d97d2ff280487c9482ba4622768d5ed208681\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426022077632278790909090.909090909090909090\",\n                            \"voting-power-%\": \"0.002226098489918300\",\n                            \"voting-power-unnormalized\": \"0.006956557780994687\"\n                        },\n                        {\n                            \"bls-public-key\": \"48427664b04ca99d1ecff349d0a6eab684ce682559f5cb1398716e5bf5288b9d77eaf3d5d9969b1d17bca70a9f633e95\",\n                            \"earning-account\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                            \"effective-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5969777512126584854466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001989014039091579\",\n                            \"voting-power-unnormalized\": \"0.006215668872161184\"\n                        },\n                        {\n                            \"bls-public-key\": \"d960c67e552dc2c73ee0679cbd3bf501704a001fe5b14ff565d4abc820fe433856f4cacd605e89670dd418d9db160c91\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"4433b28696fe69b4bc8c10ff24e0f1ba918f526ed9f3b9e90c616305d7c35038be656936ffe9186c009bead57cae9509\",\n                            \"earning-account\": \"one1aha9g2d6scsyktjgx7wm9jwssxjp6lrtl8959z\",\n                            \"effective-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5817509500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001938281291814293\",\n                            \"voting-power-unnormalized\": \"0.006057129036919665\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c64925d32333c570fc42d8d059c8d51c0c6891b7d01949839924b9406af82f3e0c67f7ea8d613013783ef378509ef0d\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001822983720121132\",\n                            \"voting-power-unnormalized\": \"0.005696824125378539\"\n                        },\n                        {\n                            \"bls-public-key\": \"61d3f282094624c95876b1828649dd4cbe80db24e9f94e8421b9f1c466c11416a624961a7a5d2e89f49db51e34676f09\",\n                            \"earning-account\": \"one1rqc0529g9amtr5jtgpl8f4cdrg9u0qgfv3yq7f\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7c72c90d54ea5498e14098bc364b7ddb991b5f2aa0f926c328c6ac61351ad18f70d453373f5518107b71c587814f2005\",\n                            \"earning-account\": \"one164n7p8jhu2s97w4zc9cpx3tvzwta2u7eeqth7m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"61c835bed899c970e375f6ce1e1b29783294a386b262efacbb46c69306f345815a6046507b20f301c1438402e5929701\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002119307027015564\",\n                            \"voting-power-unnormalized\": \"0.006622834459423638\"\n                        },\n                        {\n                            \"bls-public-key\": \"044676e308214dd178c20ef48b332f70ab7cb4c0f6c489665dcdfcb73717b22ab8ef5806f0f81e01c8b3e63e10ab020d\",\n                            \"earning-account\": \"one1xrlz4kjut6rpq4ghvernnjgxwcrq27kwqresgc\",\n                            \"effective-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6239405000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002078848686633439\",\n                            \"voting-power-unnormalized\": \"0.006496402145729498\"\n                        },\n                        {\n                            \"bls-public-key\": \"7ec92621a6cf99e7cf236f9c218a6fc6120696d1dfe8687cfbf5b0d1a0b7785a9c6e7633b0829078d77ceb00b7d8d109\",\n                            \"earning-account\": \"one12jell2lqaesqcye4qdp9cx8tzks4pega465r3k\",\n                            \"effective-stake\": \"5423582662007333333333333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423582662007333333333333.333333333333333333\",\n                            \"voting-power-%\": \"0.001807032512517113\",\n                            \"voting-power-unnormalized\": \"0.005646976601615978\"\n                        },\n                        {\n                            \"bls-public-key\": \"852d3b996add6a693b2ddccf23b8fb28f6b21be416838752e490bb90ae35f868a945bbef166a9d9776a7674624e69d83\",\n                            \"earning-account\": \"one15ewlqsk0gt4ekwy9fdr48v7nph5r3dxekyl7ek\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0090a1b348eb265400f6cece55967e3f1acc626b1c401c75ba0c85584811ed941d0ef997b3c349549a7cb4a8cd5a3e89\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001822983720121132\",\n                            \"voting-power-unnormalized\": \"0.005696824125378539\"\n                        },\n                        {\n                            \"bls-public-key\": \"c6c008ec354ac776fce5c24ce46d5a9897449b66d91d8bbe2ca0249f1e1fce1a5577cf6f91067b060ee20114ac726297\",\n                            \"earning-account\": \"one1u0kt4ng2x9c0zl0jv57rwj4rvw8fhem2vqksdv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"56c8ebcce3dcacd9fb4209805b141c52efa79842de0098821b4010e2998b7441690245476874878ef07d8fbed32aa917\",\n                            \"earning-account\": \"one1ud4zg04zmvw9jc6yw9dpes4vpyqcpuh4wvn9sh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"26c08b3f7c2ee7ca282f1d4c176cce478749f448581a8d2e54a6764ef6e0ba17b216c4bfc2d12739cea1ef3e6d75bb0a\",\n                            \"earning-account\": \"one19mrkhzvp90ujk9qrufn9xt2lq7hvfhwhj958y0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a1df3858018981dbb31a0df7025cae7d6ef014a4c65ee46bc926ed6d7f277332b4f051413ce2fe52416de3b76e68b513\",\n                            \"earning-account\": \"one1xklewq75gd387vqlld6qalcn9x8xyx9p5r3s7h\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e40fac4db93914df760d92227beef9208d26b2dced6906093acc740cd0dc79ca71e7d7266394c84c274aa97f86b6308d\",\n                            \"earning-account\": \"one1zg3vxjv5kgv86pvg85vvgk8arxawzhas62ataw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9d61af8a2b8526f9761415e0bcaa3ae33f56e03c79610166c67b66384a811799a92853275f9363e37b568f29ecfbf710\",\n                            \"earning-account\": \"one17x66fkapn4z24tw2f8cpyvnc4s8fm5kve3zm2m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        }\n                    ],\n                    \"count\": 250,\n                    \"external-validator-slot-count\": 160,\n                    \"hmy-voting-power\": \"0.680000000000000040\",\n                    \"policy\": \"SuperMajorityStake\",\n                    \"staked-voting-power\": \"0.319999999999999960\",\n                    \"total-effective-stake\": \"960440080530045564413085720.978253812713363096\",\n                    \"total-raw-stake\": \"1011979676444616079149903036.995569830029380393\"\n                },\n                \"shard-2\": {\n                    \"committee-members\": [\n                        {\n                            \"bls-public-key\": \"3a483fca6153214c083b944b69a65eab16aa58b94679ff80151dcd6447541390ae1d0fa176179fc9973c20568abaf88e\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001833744957926151\",\n                            \"voting-power-unnormalized\": \"0.005730452993519222\"\n                        },\n                        {\n                            \"bls-public-key\": \"89859b63f358079f5283674e8d77c3d8dde1f87d36efd022736ba7bd58b5529fb4e853f3a30e1d27214fbd85a2892789\",\n                            \"earning-account\": \"one1hzh2pax485tukes9kmt80f8ruy8n00u64yrfm3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1c9c5b067ef960dec0ace80c2f56a630d63827b98d29c2a7a564d730e01d31f510802980bc5d291bcb7f4adb799e6f16\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"1d920cb4c5c279dc179d39ddeb7d8d4e89f8a375e022a7d68c06e63a10ae460180854054b6c62ff4f99485aa355d0a8a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"f8500000c59d4967899d60d9e3533cfc039f3da912e7408101d58a2051a905775d0954bd12c94946b7c431316d14cd0a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"4af3740a2400c6eabbff5db46e214c6aa6e2c288210cbfbedad40f2672f7359b101fe102f8bb3ab4a4badc4f99f58e92\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001786923502841832\",\n                            \"voting-power-unnormalized\": \"0.005584135946380724\"\n                        },\n                        {\n                            \"bls-public-key\": \"860b2ccf90c6177f3684720ad63f61467d32f7fbda63bab4eb4955235bb84f71408a5c53d393e04e20e911f5bfaf2e0a\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001786923502841832\",\n                            \"voting-power-unnormalized\": \"0.005584135946380724\"\n                        },\n                        {\n                            \"bls-public-key\": \"1999921a42476a425c9eba4e2cabee38104281d29cea37449c08a703198b3cdfb4473906f3ed8be332d451e9c9042317\",\n                            \"earning-account\": \"one10t6gdsp736ytpkusc0eng75hts7mhmm6f2gfpy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"15485b6e8a2a2f5056107cac716bec92c0606d5a10af1352b3ded931d3553b90595afd6c41cd3751c9ec33fb582fd48a\",\n                            \"earning-account\": \"one1cesdr3sq9pfk2jwwxm4a4v6ryq903lk5t3keza\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c7aea66f2724a5a618ae2075396e8278c772ab5ad57ecedfd5a425c67e5e0ed940af8f8bbbfdad49abeca9edb8292a0b\",\n                            \"earning-account\": \"one1lqq8gk54sysaf022dd5xr5mk4p4f3f6ns2hnm0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f8ab84a6a98cb00399aa14938c0ca3ffbf3b83555c21559254e5a96047394cda67d2c97037a2ae1d44d6c32b3666002\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"bc2dacfaea70130fd69d18c08b691e7a3fccac4835240211f9853aa0bfebcccd325d33904570f22fbaa6c2d7a58ba08e\",\n                            \"earning-account\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                            \"effective-stake\": \"5562302017833250000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5562302017833250000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001862499641402424\",\n                            \"voting-power-unnormalized\": \"0.005820311379382576\"\n                        },\n                        {\n                            \"bls-public-key\": \"8b15c8ee223f937f7c4f4766d9b328c5bc7737a1ab5fb042995439d50800e880955e43d3700f2d67d3c883484604db95\",\n                            \"earning-account\": \"one10n6twmhntftsarymkvq964hzr990m5sj6km64m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"892b77f0cdd8f37fe9f57cfedb59d5d93b3a247ef11d1d6e3e7f2a25190be95d84239cfb7507d3bea6e0edde5507e50a\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.002005243752410975\",\n                            \"voting-power-unnormalized\": \"0.006266386726284296\"\n                        },\n                        {\n                            \"bls-public-key\": \"a7d0040ac7c79df54009fd3dc7ceaaae6dbf33cd2c144f75c2558a614032fa846a54d8d779bdeb6ae63590b19c533382\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001816096656429453\",\n                            \"voting-power-unnormalized\": \"0.005675302051342040\"\n                        },\n                        {\n                            \"bls-public-key\": \"ee7f6c0b27b74b5963f10cf0a8ed41dd08df9d415cc3ce829aba9eb73c8fa47a167ffa996eece94c759c4c8014d1900a\",\n                            \"earning-account\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                            \"effective-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"voting-power-%\": \"0.001766360375243464\",\n                            \"voting-power-unnormalized\": \"0.005519876172635826\"\n                        },\n                        {\n                            \"bls-public-key\": \"3f9300b09bbea78a3b8dd80523e895471e6a97131a8e857c39cb3fe5b4f36943dd3f12d1745768a072fd20d80a669c98\",\n                            \"earning-account\": \"one16prsvszmprxxrepxszatjjn4pq42uytwzrmx9e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0ef2242d662db9c66469431464152bd3e321eb888fea01cf4638ebc41788eb840cb772842a5ab73208e9326fabb7dd94\",\n                            \"earning-account\": \"one19ka07xz3mv0xq7hcyynu7r8vjqyj72wsyzpgzk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"42fa89ee6e6296133ac05bbfd8c95976540ef369683864f0aaa3c7f0f5390046d077a3f4156e51654ba8c14234654c12\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6195835895002875000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6195835895002875000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002074634224397318\",\n                            \"voting-power-unnormalized\": \"0.006483231951241619\"\n                        },\n                        {\n                            \"bls-public-key\": \"97f4fe2ac8d22e53261e118dcfa42511e0dabacb45e19daf74a920320f4990011278c8a7bde278428beb984f8942470a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"133acf05ac9701c81ffd1150ec12dc016b2f6083a979aa90b1f8c63619700b8d8fc85661d186dee6dbd4bbab465c5392\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001832081203658973\",\n                            \"voting-power-unnormalized\": \"0.005725253761434291\"\n                        },\n                        {\n                            \"bls-public-key\": \"244170fb2374a10997f4f39b0540d98a4fe30c4325ff84ce7812f6e0e7660a4b3583bf4214a9defdbaad3db3ef76938e\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001832081203658973\",\n                            \"voting-power-unnormalized\": \"0.005725253761434291\"\n                        },\n                        {\n                            \"bls-public-key\": \"8f797e45b12648c3b9c8e8bb7eaabe7eaac7836d901eb798470cccfb6414e2e54516cbb2de1aeaf7a5d381651cdc5f0a\",\n                            \"earning-account\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                            \"effective-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002099038656576616\",\n                            \"voting-power-unnormalized\": \"0.006559495801801926\"\n                        },\n                        {\n                            \"bls-public-key\": \"54c3cabec33735721eef52bcfe94282d19919ccb90b9675bee8a8425cc15bac27b9dac5fcfbe560eb39ec619efdda386\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001786923502841832\",\n                            \"voting-power-unnormalized\": \"0.005584135946380724\"\n                        },\n                        {\n                            \"bls-public-key\": \"0742801de415cfe72c5845ed5992ce4357a287960392cc49bea625a07f6f3539e24526493226975c4f6fbae67aef8209\",\n                            \"earning-account\": \"one1g2tlyy3qf6tvhk7sygrya9xd575wlgy9x5xdly\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f8a01368befc5c2bb16afe993a45eceab9f552841064550778be5a05b851c143d7c3b9d5f8a50324cc8b65efe92fe995\",\n                            \"earning-account\": \"one1m4u4l7m4h6cy3upmhx2zpaye94vptdvzedzk0k\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"014d802636d36a50a687512b4f81f4d93324518c8099884b90e5467fa3d7f7fd52ed2e65892db70edf6df4a30530a78e\",\n                            \"earning-account\": \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"15537035000000799999000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"e2c5dd827855c9cf75c9ae81f6d98f4227bc2069f9d8a047852df975fad9ca36956540557b18b537d37d5b9e50729306\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001877235324263305\",\n                            \"voting-power-unnormalized\": \"0.005866360388322829\"\n                        },\n                        {\n                            \"bls-public-key\": \"ffe60855e10c485185573d018ea635efee2887faaf7f598ce703a44068d23b310fd549a1dd053932704845739a1f6c8e\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001829581998134808\",\n                            \"voting-power-unnormalized\": \"0.005717443744171276\"\n                        },\n                        {\n                            \"bls-public-key\": \"88ead1cfb1433b2f7de1b5ddf9f7af711db3aca5681352a580807d1684dcdb91c5841d508b2326162f573cfcaafd5b95\",\n                            \"earning-account\": \"one14eukajuvgwsu4sn90qvpvkf3he3npvyhm3y2nt\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7f6ced5becdad6859fe9082f70062fd107ee4aa647621b0e7894138a52768f98f562f9624b20a804210035eb322cf302\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002152884992454017\",\n                            \"voting-power-unnormalized\": \"0.006727765601418802\"\n                        },\n                        {\n                            \"bls-public-key\": \"c0118989b68debda37f191ce46ec6473a3f3a4b9ef454b459d03af059b6fb180b82fc7fe622cb77e299e1a7a33c0f886\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"2d6a4c4c21a67c9ed0b729ab12bbdfec058e54348d0721906137afc22f2400958c42793ab7c4dc890f9cf14896ac4082\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001786923502841832\",\n                            \"voting-power-unnormalized\": \"0.005584135946380724\"\n                        },\n                        {\n                            \"bls-public-key\": \"8022b31fa599e1d3449bb5ff31c85d5b021a0743c9e9fa978e523e326dabb2ca18ade21f3452bea1de2d09111a676380\",\n                            \"earning-account\": \"one1e7d8ldtetx3qlehvdrefdws53mfrv3sndqulmn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6c6d16bd9e0e6be6bbaf86aaaa27c072dc1a641adc386f38e6f570479329324a511785d00183de360acf97958717ab86\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"8bfc1e7554db8a9e177e9908a98321ea3b0e03c373d8d242dfba7435642eca4973340b40c12b15697bf9872f2ae17e0a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"d08a410da71e4803475e85da2df27e0e6f3c8be47124111dde467c816df5dd54ea7fcd2913cfee4c85b3d7df11de990e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"efad1c33a977ab6587fe2b6023a241a4d239128c5d8604e548acb8720d813009a42b0c06f849a9700c7ce84abe11fe02\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001829581998134808\",\n                            \"voting-power-unnormalized\": \"0.005717443744171276\"\n                        },\n                        {\n                            \"bls-public-key\": \"35d2d5d9f93c2260e976215313f3221cac528415e61c3c231a1e5e6219f8c6bf65fe482bf1bcb53f013dc92329d51792\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001829581998134808\",\n                            \"voting-power-unnormalized\": \"0.005717443744171276\"\n                        },\n                        {\n                            \"bls-public-key\": \"f9ff0de79f286d8d745bad5e763e517ee4f5dbcaeeacecdf8270245f4c036bba6cbb4499b68be0cea7d01fda1ab0008e\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"497a4af6682e07a7b2b0e5a2b9df08099f31e028a2f2d17498c091d83cac69ff44016ca7fc0196121c9e96e2300abf06\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002152884992454017\",\n                            \"voting-power-unnormalized\": \"0.006727765601418802\"\n                        },\n                        {\n                            \"bls-public-key\": \"ae4f6380cae8d0ec4d364a8d98bb34d12aca8a42ea9b28925abed150fc991d78a88dce948bb2e79798efe79ab7552516\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001963021574532875\",\n                            \"voting-power-unnormalized\": \"0.006134442420415233\"\n                        },\n                        {\n                            \"bls-public-key\": \"1095b61db169dde214612df0caf6c61bae3bc9f3b1e27a1c246d1218d58fe76e21f7f12a8c0934c147180db27832d68f\",\n                            \"earning-account\": \"one10mk9xtejw6rkxxa93zq3qtr4tlaelyhzrjv3y3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8fd5c4406e6dc3b3c6d10b36d6b7c81887a77e32e968c3af7f591dfc8a611c1550078d390714d49934aeb52e7f879116\",\n                            \"earning-account\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8259178000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"0e293e1acda56f1c622ed3d99a4d48d53feff6fa834b2fd3f8d32e49aa15f01b4d1e7d8f3e6e0113779a4970b5a01282\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"d0c5083510829c72bd84b46cf35c1daf98bb11af492ded14503e10f857e29e0589d45c2f05d678f73d95d115b865a816\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001877235324263305\",\n                            \"voting-power-unnormalized\": \"0.005866360388322829\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d14b744ddc346f422d50d9df92e885732fa4963192cec2023390056f04afebe7accb5fdb8a17deeabba46b0d055a802\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001819577508790411\",\n                            \"voting-power-unnormalized\": \"0.005686179714970035\"\n                        },\n                        {\n                            \"bls-public-key\": \"e50d21a3ed5426fcbba8d3868f3ba60326b5c6ef19598b3cb0c7ffc780ffd729dadff51eab93c5c6fb53145569a06991\",\n                            \"earning-account\": \"one1dlg4j5ytf5kqpd0e5cwsjp8qc45zpq2s8pnza3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a0301ee493e3a78516929e7a89b6779e828962b8516a4dd41b1374e21a179f00fa6c3b75387c357138d5d1eca6c2d312\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"0e6f1a87d949df686c7fa2c8e7768fe548f5954cd47ed4faa1d17d143b180d531a17832e45e015eb1fd27433c1b7e886\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"7d701eb6b7d76cba7865372b84a58cb09a50a3182cba2dd92450a9ae446611a85d45cc91065d54a94efd4a9ce3b08907\",\n                            \"earning-account\": \"one1ewgnqhkg6rkzxmtazulj6wgs9mvwhfw2424m50\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6cd2373975822fca7075ff2f574ff2752fdf8ddc36e29535682f912437f0904a7f77b8a6c004c3f1528c0661a101ef0d\",\n                            \"earning-account\": \"one1twp8kvs3m68yttul56q0n85rkzykc5alv8nm98\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3aaa1eb5be574ac38f38da872e8616d95330dddbadb6bbbdd6143d412ada53704da59f9f295c88b7af88a01d9e4b3289\",\n                            \"earning-account\": \"one15u4q72hplc9kjx9uyxmsmqawrh6e2a4k34jzms\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"41261930c23c0a5585f5fce4dc5b39e91dfc76bc67677210a79a462a2ce62a41fa68fa6ac80e2db372fda35dd95ce016\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426022077632278790909090.909090909090909090\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"3959757a500fd43d61ac2a9b7c9f4c697d6240b52a13568d5a41cc89f32541f861c69c50f100b9e549b5a26246122e92\",\n                            \"earning-account\": \"one1nswvtja66psr5kkdcqanc57mju0aqhguu5t6v4\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6866156087766666666666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"d26aba7946b7c6233139c9a3eb59b76f690ae17100b588b7fcf1797b5d6a56194a45d7e1da8452c80b71d454bb7fc906\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001945397992961037\",\n                            \"voting-power-unnormalized\": \"0.006079368728003242\"\n                        },\n                        {\n                            \"bls-public-key\": \"2cf79ace5a9a85483d69f19ebe92c1fed7509fcf528250fd162315586a97149b67159ce4a4332d4dbb72a4c4cdb47482\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001829581998134808\",\n                            \"voting-power-unnormalized\": \"0.005717443744171276\"\n                        },\n                        {\n                            \"bls-public-key\": \"62e389f040a6dd855e9676ab463aa5f04c6ea7766308e8f01c5ff9be43b83e980c734c48a7023a11a9b23a847bd0a889\",\n                            \"earning-account\": \"one1msk55usx4hf7ph7uvjwa0ese3qzkytkpddk4uh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"93bc8f47504cb05c6d0134039b3692cbb768e287627030580c065a0180cfcacabbd6cee09ba135a8fe26682a6e843b96\",\n                            \"earning-account\": \"one1w7qjzw8tcg236c5aflmvqae2ryq9d46cp9fef7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"64658387641d11c408de92af2d351d4a7b24890de71ae3c50a1e37101ce71b123ef4a7b8f7878fcf5c5714b118326786\",\n                            \"earning-account\": \"one10lwqhmvur6yflljmm4k9hghvtyw355al47slel\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2f82943dbc8cac77c3697ec7c7eb4da57d8433d1f8261633d9dbc707b2d99b660e1c1740e774fd618e8109f9d21f8f8a\",\n                            \"earning-account\": \"one1e2qtn2fsy7cj4xxeammhhr3aldgtrdd245zyem\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a7f48834e984de758645585d0a481e32044c9f55bfe70119daa63a1605a1c31f66b9dac575ddb9271d7b85848ef6b812\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001963021574532875\",\n                            \"voting-power-unnormalized\": \"0.006134442420415233\"\n                        },\n                        {\n                            \"bls-public-key\": \"5b13791fa1787deaefb5edaa4c614865660f041ce6f99017bf26b28fe6734b564fcf3f1827706dd11a729fbf58a8780a\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001815863187359830\",\n                            \"voting-power-unnormalized\": \"0.005674572460499470\"\n                        },\n                        {\n                            \"bls-public-key\": \"32ac4f9e3fdd48b1f98266624e6dc91ffe66119ccfbeb87ff5c0c8ea37b66eedadc88e85aefd6ac8e70a767e52c04502\",\n                            \"earning-account\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                            \"effective-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"voting-power-%\": \"0.001766360375243464\",\n                            \"voting-power-unnormalized\": \"0.005519876172635826\"\n                        },\n                        {\n                            \"bls-public-key\": \"8f467670e6a92df732d1bc81c3bd85dc472a82aca9dd02e8db1c69658f8093525e65f1587d817cb325e673e86d5faf92\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"433bd1eb567b540d1cf324abc83b3fc33d4a96d7daf9644901cb339bc393b0f300cae82c800f04590cc74bc5f35c6d02\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001833744957926151\",\n                            \"voting-power-unnormalized\": \"0.005730452993519222\"\n                        },\n                        {\n                            \"bls-public-key\": \"97e4ac35faf0cac6fe497058f6393ee20f4c5cbb9ce11b425150f36a720b98ae0fd718c6a7db246b1774bb78fa4f5a02\",\n                            \"earning-account\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                            \"effective-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002099038656576616\",\n                            \"voting-power-unnormalized\": \"0.006559495801801926\"\n                        },\n                        {\n                            \"bls-public-key\": \"270770ae9b5b0f041e54579989f97300a556a5df40ed8cc93e49400b8609c9b7feba0f5696e1d2632ba0e0b972a85c06\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"bff7b508f8c1ff32b633cb4585e7fe6fb468acca9b141a87e081fd1a1e6c4b55d1faecc726beb4c6a4b36d0daacb9c8e\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001877235324263305\",\n                            \"voting-power-unnormalized\": \"0.005866360388322829\"\n                        },\n                        {\n                            \"bls-public-key\": \"01af43ece70486159d0fcbde2986037dbd6466ada58ae584c8a38f5f4caafab86835c9643b3380fe357dc19d3e97fc8a\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001832081203658973\",\n                            \"voting-power-unnormalized\": \"0.005725253761434291\"\n                        },\n                        {\n                            \"bls-public-key\": \"2dbbc34c15c05c549e733cb03513f8bd5a6f2b851eb8a330b4042bf932d997112da0e3edd7babbd06a8c18d79a017e0a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"8ab17ea9edb91b841a25475e1ca4d4ae57af9f01586ab870895b1be0560bcae7b3629a28d6770f431db3461ca327e806\",\n                            \"earning-account\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                            \"effective-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"voting-power-%\": \"0.001766360375243433\",\n                            \"voting-power-unnormalized\": \"0.005519876172635826\"\n                        },\n                        {\n                            \"bls-public-key\": \"8c63077f4197d6de0922c71f237a55c7185fd83a417bcde574a3254dc1b29487283d695e96c1248c9b353e8042da450b\",\n                            \"earning-account\": \"one1sqq8d7zpdypzxsphl67pus82nmkrcrpug4ucah\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f4dd8b7c64ed00914ca2a122325ec45e2ff86997f22f533fb8f4fbe974b2db07a88d4ae1cb14713ba18bcd33d0d6d38f\",\n                            \"earning-account\": \"one1uk9ravmvp2teg4euglmfs8vvd538he9tttgveq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6e531167a966b68b4278a93afb9e2e6c612902cf02ea6ba1f31d3aca40bc9e0e2f869188a6dc4a6f0d27ac6d711f188a\",\n                            \"earning-account\": \"one18z2wrn0xkjzsr4qzqe07fa5gr6ntul3s54r9gj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f9f036489ddbabddc3ffa90d2490b7bf144b9df5e0c870b4057a0247255b2c106b27245d41557df905e083b686212716\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"e3debc5e712557d2143963dd8dbfc6ec607f4fc5683a87a4124b706cf76c7b40b8228e7770cd4e9923848c324bb4d20a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"cc3be3eb86a06ac143407f0ef5ae6444c05d78e351b5a67289d9f173a12458d0792448867b2dd4fca9a1a56826a60581\",\n                            \"earning-account\": \"one15xu8xd0derxjqg85wx3ku2ft34tnyzltm9sx84\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"cd9f9bf5715d6c7e6b148914c6e5a6bfa6f09e9881732a521d98b8148a904b58c6d8283fd7826f4c2bf2420d37b64205\",\n                            \"earning-account\": \"one1dsjyp3zq0jcdw88rj80ynzqf7m2suepxhs3hwy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f15d1c1e51c9a9051ebf663171ea304b533ef021b2b954d985d9d5b0bf6d237517936c0d4526e4d124b540995bf98c92\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"663d4bc56f2755ca00c8dc7a7802d5913a1b9642b87a34f986e6cd56963c590dbdb4c2fcb1fa0acdc3f0b3f399b04486\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001945397992961037\",\n                            \"voting-power-unnormalized\": \"0.006079368728003242\"\n                        },\n                        {\n                            \"bls-public-key\": \"07b329c7c1d2562936c5695bdea948b9a6ba61e574dc170a7ea696b0da2393096e855ed4399782137e8d9ce6b77a2c97\",\n                            \"earning-account\": \"one1hyuj93fj7wlr7j663tf6pm04u4nywqasy8dl88\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d8877d886850445bbe2693bc57c0df0fcdaf0c88247d396afc2738d036fb56c4534db9bb3a1dd19dcc6700a07842a987\",\n                            \"earning-account\": \"one10kpdu07vn6y9axvyrrn6wcn3skxhsnm4clqrpg\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4b2f5d50d469f865cb9a1f65bced9992a5012f737b5a5c1d32fc9fc462991d931871275a733ff4989d206f31932b7d82\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002152884992454017\",\n                            \"voting-power-unnormalized\": \"0.006727765601418802\"\n                        },\n                        {\n                            \"bls-public-key\": \"8133ed48cc607ccfcb890d8780dc8610b038a0e0e09c05f8f61981cc53486ea6672293cb9c249ac86fd2aa50bdc19b12\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001815863187359830\",\n                            \"voting-power-unnormalized\": \"0.005674572460499470\"\n                        },\n                        {\n                            \"bls-public-key\": \"284b1b62eb0adc25e42c5519c19740ecea247b1dd9a7922a2a2ee0a56598db4b5dcd0b1ce94b9eaa73334da3ac39b48f\",\n                            \"earning-account\": \"one1l7ms6mc892p7ypuaruvm8tru8ada3ufuj7a7ym\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"edb61007e99af30191098f2cd6f787e2f53fb595bf63fcb4d31a386e7070f7a4fdcefd3e896080a665dc19fecbafc306\",\n                            \"earning-account\": \"one1tqa46jj9ut8zu20jm3kqv3f5fwkeq964t496mx\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"18654500000000133333000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"1da48ca1279c4945c620c2e5358355d2dff218ea4b36c8a90e06baedbad673a749854593618000de20936205060d1106\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8048323145552555555575000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"eb37778ff56f77889fba694d66dccfa722f9801b49b9a33cda83367aa04e85aa89c8503f3270022f67ec765ebb552816\",\n                            \"earning-account\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7796224637159500000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"3d6a5d62a2277cd465c5c7ff4c3927a537903cf58ace18b9bf025351242043bb9ca76084d593993e05de0d079bf9e00e\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001963021574532875\",\n                            \"voting-power-unnormalized\": \"0.006134442420415233\"\n                        },\n                        {\n                            \"bls-public-key\": \"417c2b9d293c24c03cce180d279968855abcd8407a56ad3d38ee41f7231da51adc90f9afb1f6f054c28cac4465cb9296\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001819577508790411\",\n                            \"voting-power-unnormalized\": \"0.005686179714970035\"\n                        },\n                        {\n                            \"bls-public-key\": \"0fef08aea16a13e694d84dfa7d4a852564782d22a71c6a9e4ee184c8e3bac533f0c5db11ed42d251ecd892f697eeb105\",\n                            \"earning-account\": \"one19qvsgtqu7fuqscxydejxe0y3pu9qyzcy8yf7xu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"55e536cf0cd5c3744e4f728bc84e5d96ddd94db50ce7d245a9b10e2ebc842779cad48a583cbe0f7ecea0053415d1ce82\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"0fb881ed1d2d8ba0f1ce94a1ff278d934bf2eb0817a3d1de9a41e944b35b2f56da676cf949219e1538554205705b2f86\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"53cb821ec3a3385905be1b2319956f6dbf9d023cc59ef50b6a3c9e88a7779aba506741eebb42eda0ca1a76d86ea4d98e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"cd21fcd82f7175dc4231f47d28338197ff1950b9ac7e8bcd7a6df025cba26708c4e0b215bc2410e42d5cd681cda8be86\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"7857d57c31d1904d50e8c678db57372f5d75cc13a136e6750523f881017c64d3efb83f2fb992ce55f80e51ec103a4682\",\n                            \"earning-account\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                            \"effective-stake\": \"5562302017833250000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5562302017833250000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001862499641402424\",\n                            \"voting-power-unnormalized\": \"0.005820311379382576\"\n                        },\n                        {\n                            \"bls-public-key\": \"9b4f2ed9b5b7046cd635f986add792518994cc162be665802daff25728e505f3e84ee42ca21b966f078427cee00b568e\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426022077632278790909090.909090909090909090\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"490adcbda4dfceb740486a620ea2d52d57c544b9e3896f5cf522545f02fe0a915637b4ff3ec87497a9f7b92b8ddde10a\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"0715a9c2e509c5c48ac7b3e93e97c667d575db56a4dc91920845766372026e83114d9c84f879925223f1115ff6bb638e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"f9a835dac43236ded1899257c904da922a9a86242ccced1f782eed8f9df6732c0d44f56280d2ca1689db878c2f14d285\",\n                            \"earning-account\": \"one1xdnm2fj6hyk7e49af2h9dmudkdlta9q354094e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"16d34bbf17f0028aece27d1658a2d317b757c5d2b44664b41ad0d1edec4feee7abb5aa0e7e92e8140bf4c553bea7b394\",\n                            \"earning-account\": \"one1mllaxy0qgcs4ylwn6c82wquaytumc04hdqc2p5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f80d8e6f125401bc6e6d3798cadf09de5eeba25d35697a3e122bd4b7886f581d4ae496bb6442c18f9e6c3ebbce11e10a\",\n                            \"earning-account\": \"one1h2h7d2s3gfltre5n3xz4lcra8hkt9myjnp9dk3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"73db00059344d9039cfe25d69d904ba89ab8d468ef9e84d5e046375445ee2b04b48f87588e0d39df69eacc9ea5653016\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"29e738f57f1b36f2e98aed34975b827abc43785a7c2fada657c45d1c5d94458fcd72840f66a9314133b98b17f8738d14\",\n                            \"earning-account\": \"one1s9dzuzhce504pmphdnhzphf473mkzqc8z8fqnh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"52b0e9c523aa7f5f989c1610d4f3fb12462a857ad15ed7ba82f88677ce11dd4505d8b13b12d224aa8d725ad9f490760e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"e18afae1c74f676cf72b8a0f8f3c8fcd87c4ec284b8eb31c70dd9d855bbbae4a736a92e2dc5668201cc9ac2245eb3b02\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"0b70c31a49b53761b2259674a2bb28034aaab0dfdabf3cceb8ea0bdc451333b712c2d897a32578ea877a4195847cef86\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001832081203658973\",\n                            \"voting-power-unnormalized\": \"0.005725253761434291\"\n                        },\n                        {\n                            \"bls-public-key\": \"907d2fcf1857be1d1880f86af693e0def624a2d886eb19ab6002e2aa0965a06b0bdcf065ef768da4ff7d0fa5f1977d0a\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001819577508790411\",\n                            \"voting-power-unnormalized\": \"0.005686179714970035\"\n                        },\n                        {\n                            \"bls-public-key\": \"dd16b9e77c883093f9481a84ff96823a5aa4b09f5a0dc6092b8db98ade5302c9b4074c8028f3347dc522c9686592cf02\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001816096656429453\",\n                            \"voting-power-unnormalized\": \"0.005675302051342040\"\n                        },\n                        {\n                            \"bls-public-key\": \"8881cda12fd07d1d55b5d615e345164e3251a959636d3c6c89eca39bf2f3d7bda4790c30e97f4aa3e05d65f7ae24188a\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002152884992454017\",\n                            \"voting-power-unnormalized\": \"0.006727765601418802\"\n                        },\n                        {\n                            \"bls-public-key\": \"19048be9859cf270ccf888013bba2a1e726a52f6913d8dba9b01c14398a4f7228562281d30440ef6a4ab825a0bb31a14\",\n                            \"earning-account\": \"one14n0geey23eflc5q0x3rv4meh5q8cw9z2qyn7kl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a8f84dddf6682f21b87855b7c34e0f1ff272aa13b8206671f952088e3a673c20b0f064a95b074073dc01d4542b633d06\",\n                            \"earning-account\": \"one1zsxraf7yexaedjqjp6sh2prycsupd0yjx2x8vn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5f4e20b6ad0cb25c0d2a9eb1b109e8e873b405d6b25960732a28c5af378cac3df86950bd136f622e31f0e5cf76f0130e\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426022077632278790909090.909090909090909090\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"7bdb0450438e55d56e21e08ce2a881b6fe5cc7c8f3b5b053cde6358af34d36fe53428656ff19a7f7cb757b58ac40f106\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"0b1949442d1bd94f4b48499fd39b9ad218dc8a3bde8760fe61465565642948a13f54fff5ebdb6f8c4a0f492552eb5416\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"e1cac822f129fe47fb636a0ca3575bf8f979dd5c353abb1a8441a5b5f486be4df286b1b6ef01916734ee2e8f27a45b0e\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001786923502841832\",\n                            \"voting-power-unnormalized\": \"0.005584135946380724\"\n                        },\n                        {\n                            \"bls-public-key\": \"6542baaddddd181cf1b6f68fa53944bc0f948486f2377e1a2c25be8502d4c5ae3226c073a7bf3d8d33bd06d971281d01\",\n                            \"earning-account\": \"one1ymgdeayg6x8w2wyew3amw8y6vyzr0dskclpdce\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b831ee28db84958e2a43c6ffca19a8453aa818dc196d7f0058e028a642caddc5146a9ab0d643802ab15981971c54cf96\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002152884992454017\",\n                            \"voting-power-unnormalized\": \"0.006727765601418802\"\n                        },\n                        {\n                            \"bls-public-key\": \"b922a394cd8aeb54d35f4aa01ec21179a177f4109bb25a2db6ea3164a0276ec28c2dd047ac8ab7f6b35e96420019758e\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"6de75322ebfaa0954863ac66047fa39bf03a8af92be500a18c6b2610625e2b122bf46e85470cfbf6cb4e8803747ef20a\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001829581998134808\",\n                            \"voting-power-unnormalized\": \"0.005717443744171276\"\n                        },\n                        {\n                            \"bls-public-key\": \"0d21a26dd23aff30d17649436b0195d68f13a405f844af4ed29ff22a13622c497434b467f52d3161399e01cba3bdb308\",\n                            \"earning-account\": \"one14m0g544vwc9qyqzvlv83tleq0g8xzkwle3kml9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3013edf854faecf8884d9ec5a250ff31ffc64c8776e43c3cb0b68c44d8b36cbb121962bbfa50d5f25df27aa636fe5c06\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002152884992454017\",\n                            \"voting-power-unnormalized\": \"0.006727765601418802\"\n                        },\n                        {\n                            \"bls-public-key\": \"b1cf54323f6285c959ed261f58b0f452d93659ad7a62e1237c1a66c6ebfc3af6a11e76b1c20f26aa9ca86d01ca57270a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"6a924159a7082d438cc1b8176bbeeef57f107ce62eb0a63cfbc92d2cd85b2544126dfe7d01302d578689f9b956fe828a\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001786923502841832\",\n                            \"voting-power-unnormalized\": \"0.005584135946380724\"\n                        },\n                        {\n                            \"bls-public-key\": \"e6d5510db8bbe97101506aac487454f46a554f80c905c6229fffbf917f4c500af372caabb566154d28e51b78b80fc492\",\n                            \"earning-account\": \"one1mrkpczc2xg0528gjmmmxnr8r9gqac7gd0uylu4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2826d70c2bc234515f5212cbe2e0cdc4b49c3f0ae74bc5413085e0e4cdbedca5b067967a8e3f5ec5bd2169aac4b43600\",\n                            \"earning-account\": \"one1l5pjd3rw85x469m4eyp804gj350wsmejn5xhun\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ca5395fd8e6d4fceb979a820a1b6f5fa46248eeaa58719c2a2feb2d28905d4832796dbcf7ca3e11c2e207f79001f9c0c\",\n                            \"earning-account\": \"one1c69epw2x9m5ts8hu6t3agk0wr9u5pjcxyhutzs\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a041f6c328f0cc0da8b3e3e4f786e9b769eb1aefd4fac75e43f47ee4421e0d301d29162b4fa4d36ce3152d1b1efbc292\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"af019886714fad9215add0f578bf2b989df75bfc6e9b46b00c33a41e2c6a2f7a396270148e549b8d96ac20d27a8fd50e\",\n                            \"earning-account\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                            \"effective-stake\": \"5562302017833250000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5562302017833250000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001862499641402424\",\n                            \"voting-power-unnormalized\": \"0.005820311379382576\"\n                        },\n                        {\n                            \"bls-public-key\": \"960e0536729697031f7656f05a13b7eca9d5b6cbcff0bca3e7240967477586da5c83f0d3a3c3ad00759227e5905d320a\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001829581998134808\",\n                            \"voting-power-unnormalized\": \"0.005717443744171276\"\n                        },\n                        {\n                            \"bls-public-key\": \"1781c77e68eb73118dc75cbaa5c3531f76434462463b2e6a07a91ed5c0a6cc85c14491f64a8bce7165feaf619519ef86\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001819577508790411\",\n                            \"voting-power-unnormalized\": \"0.005686179714970035\"\n                        },\n                        {\n                            \"bls-public-key\": \"fbef5b00fcc9291ea1601b30e3c1ec30b5bf87aedbaa64118546975a01b28b909f17b11ce59a1471ba0e7a02d6282810\",\n                            \"earning-account\": \"one1c55yz6eeh0zdd28zr06c2tjkqw758t8km8k0tz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7fc0ccc3154cb611318def73b241644a610dea20a5edebf2837dd3898d46e2ddbd2d6038e5aa4a7e553c5adbc5a41c86\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002152884992454017\",\n                            \"voting-power-unnormalized\": \"0.006727765601418802\"\n                        },\n                        {\n                            \"bls-public-key\": \"d9700e0c3187201017599418f5fd330547265cd23adf6ffab61246e0e764479f649065f0ca09cbdd37c70988c8e8fb8a\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002129883293044217\",\n                            \"voting-power-unnormalized\": \"0.006655885290763179\"\n                        },\n                        {\n                            \"bls-public-key\": \"930db5f31fc1a4d50298d3bfb8799693b856fa2d65c19298a5c0b3d500d7b24d03848a5650f7b2fd069cc8466385b68e\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"014aba5f2a6ff7e60a6b05eba5d2b8a8b862e3365bee6fef2f740328ce04a6f8d9effd4356c74f945dcf79feaa960996\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"75b30e36db669855515207d26c85032b8124e602e230f61af1f83d359652ed2c75fb644ffd5c03414207ef54208acc96\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001945397992961037\",\n                            \"voting-power-unnormalized\": \"0.006079368728003242\"\n                        },\n                        {\n                            \"bls-public-key\": \"506d40a45f71d7e3a026b7e1b7538cdcb45babedd0994a7e8f26f154daa68002c49f85b6179dc6c9056e7e14c6193a05\",\n                            \"earning-account\": \"one19x7kt3spkc43eg06c66ydfz3883huffwjfp5rv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1e09f6ede6b7cca5d2c53a2b6de6ea70a8ca1b4d2fbbeb8758c599afd74cfa8964842de85b7b783b7cc86fb6ccb11312\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6195835895002875000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6195835895002875000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002074634224397318\",\n                            \"voting-power-unnormalized\": \"0.006483231951241619\"\n                        },\n                        {\n                            \"bls-public-key\": \"3db51e1ab47e33b2eea18327a19ab3ce4e0496636d88c16d08b2e78f6e4d161a5a75e117fd696353ef4be9f67f0e0a96\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6195835895002875000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6195835895002875000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002074634224397318\",\n                            \"voting-power-unnormalized\": \"0.006483231951241619\"\n                        },\n                        {\n                            \"bls-public-key\": \"39bccb23d3e59e3cc45b0bd96de484b2be838fbb27433a1306153d880f76c7907a80db982a4a589639b7fb41f6a9e782\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"80d7f1ffc547259e1cd13fe62772d151a8d0921f965a05b05dd9730b617e10a116cc054a3bc1a28f851d173d0147220a\",\n                            \"earning-account\": \"one1s2ul88upupj9mz8ep0nm4wfltcgkxw4ehrde37\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6321797c2ae95f7a42e51d5de9c6d3606961e5bc6fc1e95bc937c351e5a0b23379076fe463284e57d5e6438b751bb898\",\n                            \"earning-account\": \"one1q8xphjw6xk2ckg6k5d9fnx5t73nju7lxjsqsnj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ede1d8e5ada2b32c7c8f1c2110463a92600a7511eccae25ad656c5e962f7f370ebe013243658ce42e265fc13bede690f\",\n                            \"earning-account\": \"one19ftaccekh3s4nglps7gssjx3alxhk3mgnex630\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"faffff409268a9814259560d6e1172eea22f9a5d0a020cc0a658dd9f142166d63406e6db5d30d31dd3f25c58e6ff2517\",\n                            \"earning-account\": \"one1c9jucpaw607ardwnfm644gkgshqfjggejckd6y\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"804f4659bbd2c3615bb749bdd363395c6ffea3a3bb95364073295585477c17ccb9fdc4b0fb0dc7620a90c71fc4056012\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"b92c957e384e890200c59f98f8d0489a9f23a2be148525f20572b2d4d1eeeccdf6190305d6c89536aff695dbd00fdc06\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"4e0f36a24c1df21024587a4ece5b1c57ed20d636f9da0146f875260205bf20eb324763cbda6d1aa70d46baf5d4886a96\",\n                            \"earning-account\": \"one10z5d98vpm5pvzw32vpma3p70vcdk0ckq0znapk\",\n                            \"effective-stake\": \"6195835895002875000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6195835895002875000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002074634224397318\",\n                            \"voting-power-unnormalized\": \"0.006483231951241619\"\n                        },\n                        {\n                            \"bls-public-key\": \"7c5ca6fd99109e79b2ba94caabba3e8b0e40785fc15e9b62a6804ed7ec6ff04b3a954172290b1e2dd9e26edfefd8ab02\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001819577508790411\",\n                            \"voting-power-unnormalized\": \"0.005686179714970035\"\n                        },\n                        {\n                            \"bls-public-key\": \"9b33b36c5d82e80d45fd49f136d76da580b77a21eb68692b0b44accaf8cea8647ad75086f3f872385bc8d25236fe8312\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001833744957926151\",\n                            \"voting-power-unnormalized\": \"0.005730452993519222\"\n                        },\n                        {\n                            \"bls-public-key\": \"c1fdc6946494e5caf6590c04b8e38172b481cdd570b884628dec1a1e4c8a553b697cfa5c6ae678003b6b73e5903d638a\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001819577508790411\",\n                            \"voting-power-unnormalized\": \"0.005686179714970035\"\n                        },\n                        {\n                            \"bls-public-key\": \"f4288750c7d2f0b42a8ff9343132a404be81991e43681a0f73de8807e05bb60b8bceabaf14cd6ab215b37526b8d2ff80\",\n                            \"earning-account\": \"one1e3zxaa4nqgjfecwy9s84kd6m0vtzdkuj3v3gdu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"cc1a5a00adf5ea2bcd79fb66842bd739fca501ccfd4c57658eec2c1772a2b980042d5c44a31239b83d936b504c679017\",\n                            \"earning-account\": \"one1u9aespv97yxc6xuvege8lmnfujx6kru988fcx5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9f1d72f5a31ea54b06461275e6b01005ffe50c2fd4df8afc6311de8c2bcb876561cbae53dd205b8f7a4e6af12e705210\",\n                            \"earning-account\": \"one17ag4ynz8j9ka6kqd7uv0wf4cmd74hhq8k7548u\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"18110d1f458866fdc4b79870f95e6fb9c502bb3779dae5aaaf5b554a5246b33bea7f14296f145e6f74543229a45d9c06\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"07f91bb48ee0ea1176a9b81ac05172e283bd2123d31f7e0217da201d6e928b2ebdb0be246dae53ebe4455205b169068a\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.001945397992961037\",\n                            \"voting-power-unnormalized\": \"0.006079368728003242\"\n                        },\n                        {\n                            \"bls-public-key\": \"113e67f99f63082b0e21dc9f4b5ceed2d56c053ac33fde30e851fc84ede3331331f361ba13ea7c7855bde7792fd46892\",\n                            \"earning-account\": \"one10jkalqqj4k6t83ppzwm6fp7kln2jstuaafekmu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ed59468d36e33f0e2cd21951c55e41420a6736d23ef013eb3a39f6b4a9290c6353c0a3ea996bc5ae65bd4a5776f76c96\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8048323145552555555575000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"2c0fcb56b8bac1845eaf87d244ea5aa22f5da9fbe62c655a76b16aad6ba8770f56db15faa51dd63d19b5af2f7a7d498c\",\n                            \"earning-account\": \"one19nkvnauqm72nh4rrazqmkvplwc57htynx646r0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"640314f1b32d5e0a12d3f5b5879b2283801b55232923c01acff3797d2d61a50350adf7179611f261a1c8ceb179a17393\",\n                            \"earning-account\": \"one109fyjvsgep3wnfafer82zagqy2zwrn44mmz3j4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5ccbf592850d59157162b7093b16d7e0ada245318c57923745e814b3c6d56036b7458cdcd1a13a5e1b0988bdf7a04510\",\n                            \"earning-account\": \"one1egh5983g00lpftwrl93ua6zgkhtlys8yq5y9rn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2f2d2b8fb2bdb66be4b382f8b8cb37f06288a039afda72d37684b69300153916b5e16232440cb510a88c3d41d84f6c82\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002152884992454017\",\n                            \"voting-power-unnormalized\": \"0.006727765601418802\"\n                        },\n                        {\n                            \"bls-public-key\": \"bcbf5434cf3885d07076474141a23b666c9ebe56480bec8f4d384f0174d935ce613a2edbbc8a33be5c023392d0656c02\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002129883293044217\",\n                            \"voting-power-unnormalized\": \"0.006655885290763179\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f4d1ca9f1ecde65af73e44e4ae7912f91ed2aa7ccacdf11a660d172200b06fc509b4f5fb879cb364269a547bf72548e\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001832081203658973\",\n                            \"voting-power-unnormalized\": \"0.005725253761434291\"\n                        },\n                        {\n                            \"bls-public-key\": \"6293a49990f20a279f0c7c5078f31a28b3ca10a9053a64de020dccc63f4f910a46e4c421d8ef550cece6130662a13e97\",\n                            \"earning-account\": \"one1h7djn98fyfdxylf8h29eyqhqd99x2pfw0k2yk2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6e04abd18900863d3723722810d82d63a392519f4d8f548fc6b487be1a2fb407026bd866f4b0bf9630f1dcfa068f6704\",\n                            \"earning-account\": \"one1kpywkg7fh2vldanwjh87d9ecte4q38gpmnu0g4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a96a7c06a48b2b0c0ab2a12b33302e038eb5e3523e8d2ab24b169811219d44d5f41a303733c964f0339fcf261f5ddb07\",\n                            \"earning-account\": \"one1cvnyvtz9cux9m8m3fqxrd0l5qyvf54rk5y74m9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3024268dbe06cc429e5a4407596ee3ae8f675acd0ffbb13563f08136e45df4cf8b67e57a6d8908f52939241e43df0498\",\n                            \"earning-account\": \"one183s00qdh3jqdemt0af5u2rlfnlgj27dqg3vhqh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6f7c7997c84f2332b86966beb38728a5bb7555a3363ed1e65071e941ba44f49b6681e8b9d00bcdd66ddf6eb1f0be6c8e\",\n                            \"earning-account\": \"one1cv534gglmnumvdf35xhkvmt6mql60p2twy7p4w\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8259178000000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"e6590054e2cf8056d94751242c67478e611f910377f2c0e9538f7e5027659cfb393191fd435d81e8890aa654aa30a302\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002152884992454017\",\n                            \"voting-power-unnormalized\": \"0.006727765601418802\"\n                        },\n                        {\n                            \"bls-public-key\": \"a449d0c57160c61d47f57172dd03f8e0a25ef352087e4b822a59a5ee29d2213cef631cf22d29a74f2a703a5ebb92de83\",\n                            \"earning-account\": \"one18x9xm7t59wt20flltj9c8qfqy3c7fgxr7wdysv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a48545ef22ee18af83058f25ecf1af2e462895ad50b03f80d3bb3fa3b25614a9056719e1ea4b53d418da492fdb6cc58a\",\n                            \"earning-account\": \"one1un846v4lfr6e6h0l4nh0fg8qgywlrvaezz6hqn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"989fe76334a392542b04726a3f0088a285a6aa44c7868fbd60dd6b32fd9856f81dfacb2dc0fd4dcc2ad0699e2f3ae302\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001963021574532875\",\n                            \"voting-power-unnormalized\": \"0.006134442420415233\"\n                        },\n                        {\n                            \"bls-public-key\": \"3faa1e4d144872bbf6d3168aaa8c2d30b000fbd889f943da2a96edc54ee50c08e7208416f494685ba521b50d0295fe06\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001816096656429453\",\n                            \"voting-power-unnormalized\": \"0.005675302051342040\"\n                        },\n                        {\n                            \"bls-public-key\": \"04cd3f68e6787a9d101509e956ad159e18e5217f116fd2fca3388ff328cbf0db2a70728503ac884f7d63c170d80a958a\",\n                            \"earning-account\": \"one1q7hhwe6a4rxp2aqjql92y2xzrdup8968r740ry\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"23e1fd371b179cd2abc2adac5a9b237ae61c812a3cb8b5e7169dc8841da0d8fadb815a16657f73c8af27256298a7138a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"27eb98e93936f76113b03e7191c6794621c5e72e6e39a553edf2314af293ca955e2370bbc87d7a911f69cdce55249016\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"98ec8e7ba1a44bfaa9051c5dd528d528965ca1ad982a953cba2db9e5ece0eae2719a64dd99572ca6302df2dba3e84906\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001963021574532875\",\n                            \"voting-power-unnormalized\": \"0.006134442420415233\"\n                        },\n                        {\n                            \"bls-public-key\": \"abb7806e847b46ac4918a2fc5654a19884d487d4668253696f5f29ecffab8bf261bb488af78ac368459e01ecd0de5882\",\n                            \"earning-account\": \"one1gatgnyyv8heemuhtewnd4rq8tu0zjmv8v9awj5\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"379f01616041deb6c030976b00a32bb47f99dc1bd1c4016c9be01c4563468892cc1e106ebcc3764b75d9913aed24f792\",\n                            \"earning-account\": \"one1mwetv0sqhmfah7cqcpk3w8p9hp8u9gxk0ey9xn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"ffa92142b8e5f20a8baa650b68b42366fcc8fd73e6cbc507a8cf961e5721af1a53736b715aa48585f8b901ab499d6f11\",\n                            \"earning-account\": \"one1k9jw2f0vqd7q3ufgkw48vqjfu9dg2psh28j5de\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5a76dea3da90cda648ac99912d3ea71f7688341cc6d05c48b91d460c6ce23b58aba59516dd0165af65112b5f63c64e12\",\n                            \"earning-account\": \"one1sqy7dgkrrmc4tacrzyts37vf8gvmtesqstg8ff\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7796224637159500000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"be166c82632ee7cd22cb4682b8865cc8755abe2b87f2d3e8e2c168b87fa357c8aa274f2b803b16f5ffe40d5b048c3d96\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"653b5e6c6b33d23b243385ca2b247ed8a9bfc83b71a4f3959d914d7f105f2eed4da6dcabd72f94682889856a9ffb640a\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001829581998134808\",\n                            \"voting-power-unnormalized\": \"0.005717443744171276\"\n                        },\n                        {\n                            \"bls-public-key\": \"c80f9cbdd832bdbca834664988b16164ab0f79ecd1b4bb2fc3565993cff1e8905f3ecd4c7deb637b04f3b25e08faaa8e\",\n                            \"earning-account\": \"one1v4rvlaudkxmj6a5kmnqtlqm2e4crh59h67lcw2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"40a3db7ddc08f6ccf6b257cff8537ce629077c922533bf06bd4dbfc02b3d278edcbf77169f4bac31e746c892be307182\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"6af0e04244cddf4a04257da24ed802fd59ee09fa678335bcfbd80529b588449b649ef0bb45e5797577a79c7ca8450219\",\n                            \"earning-account\": \"one1h6dah902u52jjm6tuatqr69nt6plcs5twhfkzf\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"879230eecfe6297b0bd6d2f2dbf23c367b54bfe1ce2fd3591a00820d06c83ee31da6c70560251955ad5e542e16aac38a\",\n                            \"earning-account\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                            \"effective-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"voting-power-%\": \"0.001766360375243464\",\n                            \"voting-power-unnormalized\": \"0.005519876172635826\"\n                        },\n                        {\n                            \"bls-public-key\": \"bf8977539a2ad43d42ca73c46e4a363f60dadcbdccf1de105dd3fe06e32f8b95e0fa1c371ca88d96f515a320b7a8598a\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001829581998134808\",\n                            \"voting-power-unnormalized\": \"0.005717443744171276\"\n                        },\n                        {\n                            \"bls-public-key\": \"4ace32c030558cfea4b215615a2225d379e6a0c3f5c0bdf11a694b88bf7477c308e9617298e6f836853523af63cd6602\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001786923502841832\",\n                            \"voting-power-unnormalized\": \"0.005584135946380724\"\n                        },\n                        {\n                            \"bls-public-key\": \"8b780674629f8aaba03bbd1b9aee1b1723b3011d832cf50500c9cc9edf75ffa8416e3a8888ffcfec14eaceae93693316\",\n                            \"earning-account\": \"one1gh2mr9nyvjdrlmmw6g8rfjllyr5xv3yf9mu498\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"fd9c72921080d260172436041c82be458f2e9fd5d313ddbde16330f24adbb7d8d3526d8f26e329887d25436af4472a10\",\n                            \"earning-account\": \"one125rkvqcpdzuv2u33l6x29we0n4klwahudpderq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8fb9c3c23a1e89db55cd54088136fe7d7ef8edfde02783dc05afbb5859013687d16c980acc8192a0386902890cb6f999\",\n                            \"earning-account\": \"one1rq2q0hstj89znrflcl6jr8rqer7dsq8l8xthde\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2ddb885bbfde9daf8fefc28b357188e99e03cd7d419896ca4763d5d1660021a932f77d76ab6a81c43dc81910f524ed16\",\n                            \"earning-account\": \"one1y8s2xl8a0zmav27t43p5dzukuy0gnctmevkh07\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5f4dd3a7989049bc0701bc05e1d8303c0cd2471790505bd361902b6d15e796ff5b21b1aabb4b7f17ff73df6c50f36a82\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.002005243752410975\",\n                            \"voting-power-unnormalized\": \"0.006266386726284296\"\n                        },\n                        {\n                            \"bls-public-key\": \"5928b3ae2a2b482b830f1030071a0871f81fb15b2d67ac656e141138b60679454cf9a559f9834d1ae226c8e11ca09786\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001963021574532875\",\n                            \"voting-power-unnormalized\": \"0.006134442420415233\"\n                        },\n                        {\n                            \"bls-public-key\": \"bf2323360d5a1d35f708b801284f50aa0420f5cda037c9f6a0d903366d5cef68a70df1e8ccb6f212252ab4905ef59794\",\n                            \"earning-account\": \"one1ap5edkh50g8nyjdym0m0482v67hjh8kc6unhc2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4fad10de908b4e2eb37f62127a5e4d9fea5f61b062351722d01f5c88aaa6a3584edd1f65faeabc73ee0786b1118e678a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"f069e740cf3ee3a8cf7073aac4915b37fb3f111d9112d04762ea560f40f550292ed283201cde7b52f6ca4e2b71791780\",\n                            \"earning-account\": \"one1gxkp9d9cz0fd9x3hq6h9fncmnyve2wqg9gsyeh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c900d922cd24922320047bee538daaac2bbae7cafb77bbf6c7b5ee9e58313c1973560148d38a3ec7ea45d8b642381a08\",\n                            \"earning-account\": \"one10zu0an9zrlkku09a2ncnmx0hzu8ur4hu6jmnza\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1a846c0d8c648c4c029093e21d3e5d64179ac94e74b422cbd8a157b760fbbd8b556b0c4cc2eb04f155ff22f38c288b02\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001832081203658973\",\n                            \"voting-power-unnormalized\": \"0.005725253761434291\"\n                        },\n                        {\n                            \"bls-public-key\": \"e1c465d5d4b654b6d9a4244fe62dc417adbffb1536c6adc179d0d60ab584869ca5c653175ffebd9dda8c374a1a25c90e\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001815863187359830\",\n                            \"voting-power-unnormalized\": \"0.005674572460499470\"\n                        },\n                        {\n                            \"bls-public-key\": \"c86a5171077eed06fd29e5add5561e649f60af1455130d15fecdd2784ba7ed87fb68c4e72ef01f4f64c0c4e51b3e3c86\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001815863187359830\",\n                            \"voting-power-unnormalized\": \"0.005674572460499470\"\n                        },\n                        {\n                            \"bls-public-key\": \"f4dd50ff795d7ac3947c2eed19b6a029ce959c1ae753d6ff0ce3af8d9570c00fad3897a6a5cde612c0a72a524c952106\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001815863187359830\",\n                            \"voting-power-unnormalized\": \"0.005674572460499470\"\n                        },\n                        {\n                            \"bls-public-key\": \"5b28add237b2207ecbd9eb6236511c542bd54025e3956235b69a10ef250bd09e6e3b6c4a6ab463713bde8a7bab540490\",\n                            \"earning-account\": \"one1mm0hcdjf9emqrnutq66saufh4t73qfad30stcz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"817c6a12af36c867b094fbb51aed5ec7f959ba375c77609f230094a0b7d53f68fe27b7f78e29c73b333c1cd8ac84328a\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8048323145552555555575000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"8cbd3349056be05795b3c7b9f45d4d985761693379f0d34847da4545d0b9c5bfcb586ef8ecd86ef5e04bc77e78eda90a\",\n                            \"earning-account\": \"one1hlxe68d7trza48k0n4y77antwaken3x99pgw75\",\n                            \"effective-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6268719035132111111000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002099038656576616\",\n                            \"voting-power-unnormalized\": \"0.006559495801801926\"\n                        },\n                        {\n                            \"bls-public-key\": \"9e32a40615e85c1caaec6528435b354a569666e1f6c4b144698541e1e8c483db4cd547592b17d01c6a4ee36a6285370e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"8c0f977fc49b0b5741c4c4d25c8db148f401c7e14d9bb4b829931418b47349e6079aff8bda5e1e5976fa0c0bf4162802\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001833744957926151\",\n                            \"voting-power-unnormalized\": \"0.005730452993519222\"\n                        },\n                        {\n                            \"bls-public-key\": \"038ec53f77c4f8d58a81d9c13cfff5f1f0d57eea309bb0632fe76687a8f663c5ba83faddd23845d20ba25a359dcdf592\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001832081203658973\",\n                            \"voting-power-unnormalized\": \"0.005725253761434291\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d1c51044ecda0c4e872d19c3cb00fdac157c0f70460c335e450291c29d3a5ab450dd4a54c7f22996ff0e476fcd2cb12\",\n                            \"earning-account\": \"one1920vfl67pucex2pfw059pylsfr8hpleal925pc\",\n                            \"effective-stake\": \"5562302017833250000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5562302017833250000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001862499641402424\",\n                            \"voting-power-unnormalized\": \"0.005820311379382576\"\n                        },\n                        {\n                            \"bls-public-key\": \"52d655352e524c9e018c8fa56868d1650051dc3892a66572b23b516a0e79ce292dcad125ba61c17d4c69c28560f1ad06\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        },\n                        {\n                            \"bls-public-key\": \"2826b297f1c212b89e510d7fafd7979de781116b44277e3c879286088be7b4d26cf4e4d439d99ff85944d9e0266c528a\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001815863187359830\",\n                            \"voting-power-unnormalized\": \"0.005674572460499470\"\n                        },\n                        {\n                            \"bls-public-key\": \"aa70ed1b13435ae2dcb18c94441aaae8bb6875f82e3b8ac79e0b150aa19bd80eff0e645bb7f9c11357f3eec08cbb8b86\",\n                            \"earning-account\": \"one1y5686zfh8vnygxglrhztahh7hcn2tvk33vsgrt\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"8048323145552555555575000.000000000000000000\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"42ee77919b4a3865a3e4444758a93265d44b4d9dd83967fb6d0a7db4f824cb9736ddfe740e84fba9000e08fdb77c0501\",\n                            \"earning-account\": \"one1zxhcersrsjna4j738uvuelpd7kzggm2l6vs08m\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"efed465dbe488d9664fed0e57f6a8be786c6c26ac36406848eee4dd96ec4d922b9c82a255f981ea8f96763d3bc6e038f\",\n                            \"earning-account\": \"one14yzt0ynfvl4f0gljjjlwgmlcesxeq36aw9uk20\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"94a6a13450375d4a08f1b106a746ed837fc2fbe91a914853d64da28191fe321f94e9a0bdf79b06a7fc6a2618004d8f01\",\n                            \"earning-account\": \"one1kldkaew003840u8fyv6mr9nkwj2rvl8c956hc9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8a8baf28a1aa17c58a30a8472ddba616e9b5c37105f2d754530850927722144f4b5b263de9339aa13a07013654559586\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001819577508790411\",\n                            \"voting-power-unnormalized\": \"0.005686179714970035\"\n                        },\n                        {\n                            \"bls-public-key\": \"74a4274fa9f794536921cb84ef4c6644a278a1bb8778da6c6c694aac1c12bc618a78c2eab321662b1a5976339c20c402\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001815863187359830\",\n                            \"voting-power-unnormalized\": \"0.005674572460499470\"\n                        },\n                        {\n                            \"bls-public-key\": \"90f954e7e9550b536eee456d491e75fd19d66a5a0e18cc891c6e6c0144db8ef79ce630d4bc3a585aec3fa06b52305c11\",\n                            \"earning-account\": \"one1r63tj5dft2ydd9j72ecy76k7c73svxh8wa8kq2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bdcce1a78421fc57cc256bbee3bc81f833ce318600ff326202d318c3267e5457d03c2cc1e06906013f46421f543db68f\",\n                            \"earning-account\": \"one1tvcgqxuzpanv8ngaruc07ard8twtzk03c07tep\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"050569b98c2fe451e981e964c13d65e0b922825d0570c51f2f8883b849c32fbc15415e71045544f803c1286037abbe8e\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001832081203658973\",\n                            \"voting-power-unnormalized\": \"0.005725253761434291\"\n                        },\n                        {\n                            \"bls-public-key\": \"bcbe661d60d81334dcc30881f18ff6f4c64f8071f0f21d62d99b992ed28d6051aea58c691cbfaee674c98355c1de5182\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001815863187359830\",\n                            \"voting-power-unnormalized\": \"0.005674572460499470\"\n                        },\n                        {\n                            \"bls-public-key\": \"a9a95b8838e874dcd356231247fe5beb26bce648f3a016b6644f0cbcbfb722bef12c1babbe0b70188149ce83c4eb5699\",\n                            \"earning-account\": \"one18ta9zs9hjwktpyv0n6sdn44fk5h8ur8l93slmd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"02546cea8be3aca28538769cebc4d936a8af08660ac3aa1c40221b7676aaeda941668cb4aa2a0412f619215c69963a93\",\n                            \"earning-account\": \"one19pqukwecfnl4udz2t8rlw6qcu90ursyc6y0y3v\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1e1425f1c35c111db2ec31b604fbb33023c3f076cb61cb75790d5252e6b65fb5f6e0e8c737880b5c98f2151ab7add48d\",\n                            \"earning-account\": \"one1e3pmzp5zyf9jnq667ujd9mwx5uk3dh3ga05vqk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"93163dd25502490419d81d1c907c1cf46489ff498aad233e81605e80bd78a054a90ff309ec70f0d21347b8ee04cbc20f\",\n                            \"earning-account\": \"one1tg86xf7ryl4mr0ulw3u5g7fp0ql0nwz5wu9rfx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1647af99e7a9c71fdec8f2496deaceb5876814388c4090461de3b28231c242570bb7b5ce551c7f07798f9e6bae7c7b0a\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"01a381a48ad4840510433cd65eae2191833c4f1abb50b8df8bb412c8ea2b3981b422da4baf50e1278df7741ca3e3b68e\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002071926878517924\",\n                            \"voting-power-unnormalized\": \"0.006474771495368513\"\n                        },\n                        {\n                            \"bls-public-key\": \"5faf2fca9820ad39e5f5989cb6d08e8b64b7daa22bcf7ba44538f0acc7d9678d5b32950d8d89b58b234d6123b91bd997\",\n                            \"earning-account\": \"one1whczkx4kyyhm7km2vqydcgpmfkefj4guxdy94z\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1efe44ddb21ca28cf2d15e357a0ea292e57bea000981f2f467163030cf70549412c0529a3cf774d9eced7e61526ff402\",\n                            \"earning-account\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                            \"effective-stake\": \"5915760698888981099450000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5915760698888981099450000.000000000000000000\",\n                            \"voting-power-%\": \"0.001980852917547130\",\n                            \"voting-power-unnormalized\": \"0.006190165367334781\"\n                        },\n                        {\n                            \"bls-public-key\": \"ae3b45eb3751d6c357b27561afdbc040d5b9bf5be71e8fe1a71024b58ded6fd52caff5eea9967498ab78abaafa71ca19\",\n                            \"earning-account\": \"one138y824wrjk5sce6myhndaa5yv26vldw8x3rwgv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"50db25160b6cb6b7ceb20edc1c6e7829a8265c9b01bf89f4fb98704566cf6bd5c7a5cbef0a7fba7caec676acc87eb901\",\n                            \"earning-account\": \"one1y70egf9s9gfa6udy90pnvhcdqx7ekfvjth6yr2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9041f6288833afeca1f71140b578c37ab97b72b0dd090b69ee2a1ffa6d6f82ee55a2c1efcbf02966b2263e64376b380c\",\n                            \"earning-account\": \"one1thtd5cc0gyu0t5rgrnw2tfhuqf2acqdkk5a8pz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3f91a010a3037020469ad89cf9dabff813ac2a75ebb1f27fcb7ccd912bd74fa979d3cb8426abddaa6855abb7fde6370a\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002129883293044217\",\n                            \"voting-power-unnormalized\": \"0.006655885290763179\"\n                        },\n                        {\n                            \"bls-public-key\": \"298a240c89c51bb025d613d240c7d9ac7f25efce5e78dcf709cee013b67fbb6703a961d7a5e8c561560fcb07218baf8e\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001815863187359830\",\n                            \"voting-power-unnormalized\": \"0.005674572460499470\"\n                        },\n                        {\n                            \"bls-public-key\": \"21a94c1f5d0913e0e0471e5b4d4e2b476a1070411e9d98944821ddf1c933bf63f9f4c876213fc33a07fefb93ff401316\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001877235324263305\",\n                            \"voting-power-unnormalized\": \"0.005866360388322829\"\n                        },\n                        {\n                            \"bls-public-key\": \"464a3efbcf1790a2649b02101c308dedf6b53f3ab98e794ee7bc6359d23d67e76059fb76c8158f9b474f39fdf1981696\",\n                            \"earning-account\": \"one1qzyy8shzm9ux5w78lz4jtr0paucmxwp9fh3n8n\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6da4c813c6e79b070bab33444cc52cf60fb5b37d943309349f86bafba1cd2f5ae7e1cb070d2428fb327e695051523b0a\",\n                            \"earning-account\": \"one1v28hrtafn3dd2cyqgwd3dzpys7470qknpq4vkz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1c41579d398d49e225f6c1ac09600e45b2b05cf7c85ec000d21fff2ea532731139171d7cdcc07b4c2d6a74c5e684e595\",\n                            \"earning-account\": \"one18p0md8cgjy4wdk7fqsafqc7p2y8vafyr6y9q9l\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"18caa96991cdfda9ad7f6b95cfe2d77ad3102956e6865a211ae7d751937092f98888938655ce3d0cd238860114a82702\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002129883293044217\",\n                            \"voting-power-unnormalized\": \"0.006655885290763179\"\n                        },\n                        {\n                            \"bls-public-key\": \"42dab286776dee71b918d5d5ab947f43321dfd59c939f77f0936ccc972e3615f3063044de78a1916893d528415209506\",\n                            \"earning-account\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                            \"effective-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6231013742875846153846153.846153846153846153\",\n                            \"voting-power-%\": \"0.002086413291560277\",\n                            \"voting-power-unnormalized\": \"0.006520041536125865\"\n                        },\n                        {\n                            \"bls-public-key\": \"202770994a16d8bf6ed5d8c11985302352e5a9739588236c0d4d1a2a99c2dc97a74542b7cd30a7f6515b6e36a44f8c86\",\n                            \"earning-account\": \"one1x8fhymx4xsygy4dju9ea9vhs3vqg0u3ht0nz74\",\n                            \"effective-stake\": \"5915760698888981099450000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5915760698888981099450000.000000000000000000\",\n                            \"voting-power-%\": \"0.001980852917547130\",\n                            \"voting-power-unnormalized\": \"0.006190165367334781\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c058667ee38145c3f2ab713faca07a06a3f4da7de4834c8c08e49cb85670b0d67c2e3b54e941f708d1b9914efdd2e02\",\n                            \"earning-account\": \"one1v00dn7wm898es7m6wrzjsusw77rnv7tupdn8l2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4ff1796bdb8253078163ab11f64186aee7230b682642b0e8eca4c935e7060223084406ce334474b451410131f0120f0a\",\n                            \"earning-account\": \"one1k87w94sdeztdewl9uahw24ld7sd3w726y4nu0x\",\n                            \"effective-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5862507901935857142857142.857142857142857142\",\n                            \"voting-power-%\": \"0.001963021574532875\",\n                            \"voting-power-unnormalized\": \"0.006134442420415233\"\n                        },\n                        {\n                            \"bls-public-key\": \"70a36816c4d0c0b97f352378cc22ff7e0d337322c89962867b5017cb0565197899cc0d4b151985d7ab25e047d8563502\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001815863187359830\",\n                            \"voting-power-unnormalized\": \"0.005674572460499470\"\n                        },\n                        {\n                            \"bls-public-key\": \"044b97305780a0cc6b24f649fbe8b507794bf6e4d0c1268658cdc7b64d38fa0adf45ad81aba61aaef769c3c0f9b0ba0a\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426022077632278790909090.909090909090909090\",\n                            \"voting-power-%\": \"0.002237207691905193\",\n                            \"voting-power-unnormalized\": \"0.006991274037203728\"\n                        },\n                        {\n                            \"bls-public-key\": \"b414dd265101cf32305fdd7ee8eab64cf4c847c4fc38fa23b1ab2621e518577d77b270bf63a1dd254006c5ab6669fa86\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002152884992454017\",\n                            \"voting-power-unnormalized\": \"0.006727765601418802\"\n                        },\n                        {\n                            \"bls-public-key\": \"6302b0a03e573ffc8fd6a51ee48f0d1d66d9320a67d40f807469bc6677d678510c8d72fda9cbb170e06a22efe2dc890a\",\n                            \"earning-account\": \"one1kf42rl6yg2avkjsu34ch2jn8yjs64ycn4n9wdj\",\n                            \"effective-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6262844464043719691444146.526315789473684210\",\n                            \"voting-power-%\": \"0.002097071595724753\",\n                            \"voting-power-unnormalized\": \"0.006553348736639852\"\n                        }\n                    ],\n                    \"count\": 250,\n                    \"external-validator-slot-count\": 160,\n                    \"hmy-voting-power\": \"0.680000000000000040\",\n                    \"policy\": \"SuperMajorityStake\",\n                    \"staked-voting-power\": \"0.319999999999999960\",\n                    \"total-effective-stake\": \"955670866259272969214005992.928520805736425383\",\n                    \"total-raw-stake\": \"994439100130783310773537594.660122537338156975\"\n                },\n                \"shard-3\": {\n                    \"committee-members\": [\n                        {\n                            \"bls-public-key\": \"16c76b244e7cac2017f505234579991d68e40f6be0989e501da98e6adc271526a69b4ffaf232b1e137a85ade615e740b\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001871447679130417\",\n                            \"voting-power-unnormalized\": \"0.005848273997282554\"\n                        },\n                        {\n                            \"bls-public-key\": \"0481607fa457d677650a287804a6a249432798b5eb8b292392c208e9fab59136f3b004b77c6159f87364a6eb37b3b504\",\n                            \"earning-account\": \"one1gnd2c4c7jw4h6fsz0l064nsg546v9sxknk56lu\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0a62f4f4e25aad7ac77845b5e5242570637d7918768ffc20b69629e918c1bb154c78c196c563b419dcc8070db187190b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002004947610731240\",\n                            \"voting-power-unnormalized\": \"0.006265461283535124\"\n                        },\n                        {\n                            \"bls-public-key\": \"0a2b57cc2a8574f56033ae74aa4e597012218bfeecaa3f3801a0dc3179b60b92cf99bac581f6b1ab8e6fb00dcc496617\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001888162137121748\",\n                            \"voting-power-unnormalized\": \"0.005900506678505463\"\n                        },\n                        {\n                            \"bls-public-key\": \"d57cd6de45014b79f81a7752deb0c385a324b0efaed86a8c06a1b5d4212430d21a7361f2f799f434967d5558aea85e8b\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001875275697821028\",\n                            \"voting-power-unnormalized\": \"0.005860236555690711\"\n                        },\n                        {\n                            \"bls-public-key\": \"851e2ac1306d867851b618f0343bb1ffe2ca5d6cacc642defeb603c807138320bd7f33d83184e7865cf5ee0cba242a87\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001871688294806496\",\n                            \"voting-power-unnormalized\": \"0.005849025921270300\"\n                        },\n                        {\n                            \"bls-public-key\": \"87cb22352223067db94c29e67917b4a0824e551c06b7baf9f15cf96a71ca58cae64c771b43cc222ba6d1a60a178cce93\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001934698448225128\",\n                            \"voting-power-unnormalized\": \"0.006045932650703524\"\n                        },\n                        {\n                            \"bls-public-key\": \"b9d80fa33835f8795b43046f393aa956f3eb010c908d5c23e5f42317bef40070f6deb9956f3f3717683b4116a797f603\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001934698448225128\",\n                            \"voting-power-unnormalized\": \"0.006045932650703524\"\n                        },\n                        {\n                            \"bls-public-key\": \"b300c9649d2ac7c7669543fe9bfa9b52afd0853d32928cbee765647a94db5a11b68a6d8c71bd4ba0e476fcae968d3e13\",\n                            \"earning-account\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                            \"effective-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001842386041667500\",\n                            \"voting-power-unnormalized\": \"0.005757456380210938\"\n                        },\n                        {\n                            \"bls-public-key\": \"b68713738f5385048ca97b5188f331b0763937330b0ce306548f07d5401065538d7d1cbcd4bae5ed2d0eb1c9c36cde8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001841622136213431\",\n                            \"voting-power-unnormalized\": \"0.005755069175666973\"\n                        },\n                        {\n                            \"bls-public-key\": \"1fa897cd45f1563053ffd61c04447e4be71791939eb793aeadc65a05bec5b44f0c54316c5c04d048c0ce80de2906c788\",\n                            \"earning-account\": \"one124a4e3tyl866jeggtcrrg56sz38ztuunsj9cya\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3ca448ec1158475459c2b8d97cbca0dbca9fefff79b2a18c7b76c918bd17708448cf0c8f52885fa68b4de825bfcc7e13\",\n                            \"earning-account\": \"one182ququ2ytzpxldss8hkp6lrkd9td8vglvsfk60\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b045a47f8f8976fc489ee79782e13fd1bc5fa682b6df4eea158aa2cb9ad313b168cecdebd79723aef2dc85cb2ac14d93\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002218785892356101\",\n                            \"voting-power-unnormalized\": \"0.006933705913612816\"\n                        },\n                        {\n                            \"bls-public-key\": \"226dd250b580edbed2239bfdd268cef37fa5e8ec5f323cb0eae5a830c1e17fb8d2e45dbb0ba90e383ed95f10ed9e5593\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001888162137121748\",\n                            \"voting-power-unnormalized\": \"0.005900506678505463\"\n                        },\n                        {\n                            \"bls-public-key\": \"a911bc83a580cf27c4db1e9e337571eb4a9a57e1a20683db4b2458d566a4486869085c7173e8d28b89743b4ab1ec9113\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001871112701003556\",\n                            \"voting-power-unnormalized\": \"0.005847227190636111\"\n                        },\n                        {\n                            \"bls-public-key\": \"ff64e929ee6bf37983e13f495437665416c0f6e7862b56c0caa84f932ff48fe68c379e4d483e6088198d25023e949b87\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002174428307386441\",\n                            \"voting-power-unnormalized\": \"0.006795088460582628\"\n                        },\n                        {\n                            \"bls-public-key\": \"adefd13f109aa759825fec4741aef8df56fa6808c9600da42b7c7e7a29688bb9855cf13abc2e562d80dda58d05546417\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001871688294806496\",\n                            \"voting-power-unnormalized\": \"0.005849025921270300\"\n                        },\n                        {\n                            \"bls-public-key\": \"08aca306ce6f5b79f0f58c8fd9e91f4a0864ea7354646a5c0d38f8266f93902ac43691ee73d0578d707fc364d6655987\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001850834619747777\",\n                            \"voting-power-unnormalized\": \"0.005783858186711802\"\n                        },\n                        {\n                            \"bls-public-key\": \"cd3000f11dae857aeb5c36c9021bc5299549df4b74f783018e735817f4f5c170d54066b9f5b9de1dfb7aeebc606fcd8b\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"5b993e01879f8bc389a42f6ddd22430681937bc34dae44b6660afa944b2888c3e23dd2321a3b11c58b02c245261a4697\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001945559081062852\",\n                            \"voting-power-unnormalized\": \"0.006079872128321413\"\n                        },\n                        {\n                            \"bls-public-key\": \"aaf368cdc10490fe1f3f6e61f21456c1b614d8145a9b9c90aad073b119ed2b7bd5ac3bef722e34f9999f565f64172b07\",\n                            \"earning-account\": \"one1uz8fywak5yhjxa86rxlhkpg548nvwm4rh52gem\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"90953c98e139de210191c57a01cde123cb7d2de7517da0270c78f0fb8ec222341165ca1569077dd7951accc0b5070a03\",\n                            \"earning-account\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                            \"effective-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002234106398801582\",\n                            \"voting-power-unnormalized\": \"0.006981582496254943\"\n                        },\n                        {\n                            \"bls-public-key\": \"b2ec089fe7af1194c317b2135d6acac70dd6fb14264014d4c2917c0f80dec29180fcce3d5a3b382024fdd3d02d2cbe97\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002218785892356101\",\n                            \"voting-power-unnormalized\": \"0.006933705913612816\"\n                        },\n                        {\n                            \"bls-public-key\": \"596f3d0e70be4958cf1279e59ff3630c425ef3a0ac9016a53f41bed463acbf4cd5e5f5f9d8dc8810239c8dd761f6b58f\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001871112701003556\",\n                            \"voting-power-unnormalized\": \"0.005847227190636111\"\n                        },\n                        {\n                            \"bls-public-key\": \"4777ebcf87fd9516004f92c7f3fb94e3cb9111e6fb4da681d61d790ed0fbf10aa68aed5fd66d2714896edfb708fdf797\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"e1ff573a1291604950b6b7a6bfd5a7608f517224afd2b4afe50f2172f507dcf9081372b03de372d1fe05aa3f89866307\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"be79b2d9fb4b9a56683d40ee445a6597332e298f0ff3f168cbf5c5acfc4a3ae73b20672517ea06ec9b8b9ee4fcf86203\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"a1c07365e8016aefe0ca4a820c281445d4d5e89bf68ce2b9e9f15de7b973364ac2b9e109464295c8a3d7e124629ae197\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"d0215dc5b03b98ad218854499e5ec74e5c4c924113c58b2aae4699ade5e9da9dbfb00784a5644ce728dd81919906d783\",\n                            \"earning-account\": \"one1ps5vuzdestghqmmyvwrvfn3yxq82cs0saunded\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3a16916352fb68352c4b266a594a2ec823b473c11e5a175401096597cccf19c8978859dda1718f2b2ebffcd41cea6d8f\",\n                            \"earning-account\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                            \"effective-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002268126644615756\",\n                            \"voting-power-unnormalized\": \"0.007087895764424236\"\n                        },\n                        {\n                            \"bls-public-key\": \"f6c38f1a9b256850069aaae5329446c50b72c0f0ffe76bc28cc8134afdd0b40d024a038454fc85409773a6ae2645b487\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"dafd8989fd7dcc29ccbd5e38f90f27c990488b7875c3a83bc51268d60f1651ade03bf4c990278351ee4835dcf9234007\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001889876819749617\",\n                            \"voting-power-unnormalized\": \"0.005905865061717554\"\n                        },\n                        {\n                            \"bls-public-key\": \"04cf6b75d961be22599741dafb25394a1fed85e0232744e645a8720acbb9b8f2f7a46909b1d70935e500e4ad0f940d8f\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001850834619747777\",\n                            \"voting-power-unnormalized\": \"0.005783858186711802\"\n                        },\n                        {\n                            \"bls-public-key\": \"55e43dab3c8e107c3221c11cac7ee959e776317347a53e752c48a7b50707ea039eaf2a6890c3358a85214f7c099b6694\",\n                            \"earning-account\": \"one1tdahkxsfq0pctyl920sffwaprlvg5025yn4ryz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"e643b9551730abc209c3a85de47e8bf15836a4ba90b4db0d15ac9f1afd7db48654824766946ef42a896a42179ab5850e\",\n                            \"earning-account\": \"one1ek6sd5su5gcdx6gn8cm7g22nelnmucmgq36zu3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"614e8d1344bff19f5e1a6e7886355beba087cdc0947d2b5ad1eec36caa18325e0585534dd20a37546bf11d44f1e31e13\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002174428307386441\",\n                            \"voting-power-unnormalized\": \"0.006795088460582628\"\n                        },\n                        {\n                            \"bls-public-key\": \"a12729cb8a958ec2ee376f223b47f04bfe7b002e180a4aecddbdb2023ca3b59ba3bcae1c58fbdab18cf45dae3c1a5697\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002004947610731240\",\n                            \"voting-power-unnormalized\": \"0.006265461283535124\"\n                        },\n                        {\n                            \"bls-public-key\": \"a6081239b7110e4e325cfbd868e0228a3346c2dad0324d243bfe4c5fc1a9b0c584f9ca272f758e3a845ca50ab973c107\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002195080099278644\",\n                            \"voting-power-unnormalized\": \"0.006859625310245761\"\n                        },\n                        {\n                            \"bls-public-key\": \"b1a0a8631459f7988e7c5ab6bd326f5c60739735698892fd3531014710864890ca8ca9426c22c287186903238703c883\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"9d5f3a3464b1cd835417837400af8b31bdd9e47de11cb131c4f7024a52df8329074b11d54296d8ba26d57fe7b0bf9197\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5495388933221700000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5495388933221700000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896420459034337\",\n                            \"voting-power-unnormalized\": \"0.005926313934482304\"\n                        },\n                        {\n                            \"bls-public-key\": \"519a4a3518b7c5e677586f4294b2af46f18b791f574fa11386f022c1c40bd5c22cb43545dd768fd9822bb91c5c1a7b87\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"5c2ec551f85045ca67864eb9413ada94cee75bd3bf2b27eb7b53303fdb67f95a7695dad48087fb541955209a3c587a0b\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"949e0e2fa9643fac1ddfe01c91254ca2e53cd29aa8a37dbf52df804a02a6f58bd34f9f7b2f7c84eeece714715459df83\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001871447679130417\",\n                            \"voting-power-unnormalized\": \"0.005848273997282554\"\n                        },\n                        {\n                            \"bls-public-key\": \"d3f1a3b936e89bbb11de531bd70cc015be4be97a91e2b110e23ef468ed5f78adcd948f1f95f844684e315811e38b7796\",\n                            \"earning-account\": \"one19d9u40zn3hzg2z0pkm608gsdqvg788u9vz09et\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6f1d634f7b34eb377f0dc59bdc1f30c32d8c6ddd1646e5b1f890022cd510e4083c2cdb701b5c84843789f9261720130e\",\n                            \"earning-account\": \"one1ydm80qk804p62c5a5m3cmf46pz26mgc3pw2gys\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"101662ca51b09da1dafeef24844371e2c3e66daab77c07892439e137f0bab143da26361a6b18e665e974f619fd0ce397\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"94253962d70e43ca53ecdd66d71a438dc10a0aa3b97e67ad608c214026b082713d757b6777bbefc32715172f55cb8c0f\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"voting-power-%\": \"0.001963016230803322\",\n                            \"voting-power-unnormalized\": \"0.006134425721260380\"\n                        },\n                        {\n                            \"bls-public-key\": \"fdf618fbaab9588f74ac1b681018f474459afb047afec0dc9df9da8381cebe85a08790bf49f121cba75c2939da9cb68b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001889876819749617\",\n                            \"voting-power-unnormalized\": \"0.005905865061717554\"\n                        },\n                        {\n                            \"bls-public-key\": \"960d35be94f9915fb5e6f9127726ea6bc1ace83e34923b0157328ad4e85cec2463b36d0e4950ec645ef2d03f01c7db93\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5340292559410811666600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5340292559410811666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.001842897780295642\",\n                            \"voting-power-unnormalized\": \"0.005759055563423881\"\n                        },\n                        {\n                            \"bls-public-key\": \"d2603e11fb0bb0b0b86003aa4fc6ba865c8395d3e460774c9d38b477018dd42f01bcfe6ae5c160ec77c667a8b46f0a18\",\n                            \"earning-account\": \"one1e4kkxs2vdlzp6aak3vr8c5tvajx6yan8ks06x7\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f6f4a2410f6290c23e5092145f4ba7c03e120acef009c4f2962f8d0d3cce64fa884deaf8006caaa134316d1163652e94\",\n                            \"earning-account\": \"one1cdajtyp6tq8uuu6q2xc8td25wyua3yfgfe27pk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"df4db8eec78a8ddff9ccd4db7cb679ebe0edaf21341fcb188583f0b084ad73bdf3e9685fbd78e985b8f7163481a68d02\",\n                            \"earning-account\": \"one1kcfu2k7st309m3zjuec7vg08trcsqe4c5rsn0h\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0ac01bf36c064ca3c695c1c5fcc04c79b28e64f6db5e3338aad46159752579c64b59a4f9d683528bcb5084545905ed97\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002218785892356101\",\n                            \"voting-power-unnormalized\": \"0.006933705913612816\"\n                        },\n                        {\n                            \"bls-public-key\": \"59cd2977ef1f46ade77b8dc56d26883acf9f1e8b05eea76f1a35f4ef636d241d4d63c35a7aa3873ce64bcca76018e213\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001875275697821028\",\n                            \"voting-power-unnormalized\": \"0.005860236555690711\"\n                        },\n                        {\n                            \"bls-public-key\": \"4c02492dd86d59fdc5c8a283e9e89f5d35d8877bae12faa18b7e1efe6422531419a488f9d44fc67b4ddbd048fb5f8393\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002218785892356101\",\n                            \"voting-power-unnormalized\": \"0.006933705913612816\"\n                        },\n                        {\n                            \"bls-public-key\": \"686dcfa82b4ea90d7578c7dd3ce806d112c14659335e0b780fcf2768da6e340b78e06156138e500e46f45dc7e18e2807\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"36e590fb7218eff19874c8c9b9cdde42f93ae823780b031370d2fa711f544ae00ec8358fb9e715a52e222c3e9e05b787\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"19a42db0ada7e82134f72dd17e20d2d3ba2e36a33dc8a93c5fc4e40d472403538af282b1a427abfa61371c4814818e13\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001889876819749617\",\n                            \"voting-power-unnormalized\": \"0.005905865061717554\"\n                        },\n                        {\n                            \"bls-public-key\": \"060d9560fb4432157c8791db5db20491e72e2f0d2dbff06db56106e7756085b41aefb0c7fc2f352e3c6a3856aa80ea94\",\n                            \"earning-account\": \"one10qxczyswxdgmfp7dchddqjvxwk4zap2hg8czf6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1aa713611e2496a7136b9bcddeea0dba78ed1f8d7f2d67cf1c6f3cedab549a00e2dc45e7dd8a58eb0f81e93f2feff507\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001888162137121748\",\n                            \"voting-power-unnormalized\": \"0.005900506678505463\"\n                        },\n                        {\n                            \"bls-public-key\": \"4454ff2ad8b8027a0a00e9d0edbb139cd4e61a425d3a28e5e48492f00ab7a2db64df6efbce3013d74e2f320c30da4018\",\n                            \"earning-account\": \"one1hvdkvlavg7ej82yd0qrr08fvyvh9ajhz6ck6mx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3ef63d9e8c9f045c6a2fbc4488a92688337ae5b3386964057ac8784bae5eef8227f3bbb8e4f099102b62ed0c6917e417\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426022077632278790909090.909090909090909090\",\n                            \"voting-power-%\": \"0.002305689752340925\",\n                            \"voting-power-unnormalized\": \"0.007205280476065392\"\n                        },\n                        {\n                            \"bls-public-key\": \"38a45b90cb3ad2846fab846a8026e8b539f41b4aeac984ff32dbfbf1b857931027eb44e22ddc785f59d6c763941e008f\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"a1f03291f3c358caa913e4c14f8b1eb7ff73176da03c9d57b76b9d84be48900a9e50e0626e72b2661571df67513a130f\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"voting-power-%\": \"0.001963016230803322\",\n                            \"voting-power-unnormalized\": \"0.006134425721260380\"\n                        },\n                        {\n                            \"bls-public-key\": \"0285764f8567b87ba42ecc4c029a91218040bc22527b106deda3184f035698b7f1520105100939ba59e941ad747f1481\",\n                            \"earning-account\": \"one17vp47fz4yf0wgpja20h3ej0u07mgkswzm5p6u2\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"fd3968117c0a20dd52ae8c3396302edf8eb2f9561114d4b3d62167af21f599579fba63d8955658624511e45a7d65e411\",\n                            \"earning-account\": \"one1krcg468lkvdemz5xm0fj2uaapmyfl0337nwa33\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"437e23a8aa249c3c5de408651c6bfb5995b6f99f438ae8191c287fb128160d6ec7f51e86fd101d139841d32c6a927f05\",\n                            \"earning-account\": \"one1xu9vlpa6arkcfls69qe9dly25vddn5h5nnqrqq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2dfbd87976f454aaa989391cdb2ad9fb46a386ad52042d1aaf18c4b2b28dcd05d7d272a5fa36af1f7b3a7d8348be6593\",\n                            \"earning-account\": \"one1r7kvnnxg5nm3q0adkv4g82erdj5ntxmklc552d\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"11fe3720af7c383558400a2ab16b76caee83bb158d973e5fecb7b21f2fea82eecca2a68d1c8a50814d54f80041edac0f\",\n                            \"earning-account\": \"one1d2zjm9czlfzdes97pfuzdydflw0t80kspwst0x\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6825556873936133334900000.000000000000000000\",\n                            \"voting-power-%\": \"0.002305689752340925\",\n                            \"voting-power-unnormalized\": \"0.007205280476065392\"\n                        },\n                        {\n                            \"bls-public-key\": \"a9c5cbb9ee93e31d42dde922a5bac46844c08d98cec14eb352c61dd7716b73d9f79bcee6da30b73747ffd00df8cae583\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002195080099278644\",\n                            \"voting-power-unnormalized\": \"0.006859625310245761\"\n                        },\n                        {\n                            \"bls-public-key\": \"2f78bac8fc8e2dbe67d711ecff25eedb160607dc92db2b079c07a98fcd84a99c2fac0e06fa53705844f2f5af9de1e08f\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6163501886082581250000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6163501886082581250000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002126981587308914\",\n                            \"voting-power-unnormalized\": \"0.006646817460340357\"\n                        },\n                        {\n                            \"bls-public-key\": \"883b02bd5e72bf44bb478e5018e00ebf8bcba72076409d69436af0b6e74e85c4de1b6c2f2e365a0440b39db65f3a700b\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.002066625279185558\",\n                            \"voting-power-unnormalized\": \"0.006458203997454870\"\n                        },\n                        {\n                            \"bls-public-key\": \"b4935662c7e22ca724de5d0a75bfa6950cbeaa94d58e81ba9c7221f6d5958b5ee35e1d7ead71c8d223e06f8491b3550a\",\n                            \"earning-account\": \"one1m92x940drnudndflac926reqnaaflkz2a0csmm\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"43be3ab583c52880b5880e3b4da7e79e007bdf479dedf6e9bda52edb1e3d735c87e429f30d518a1dc1709aa028355183\",\n                            \"earning-account\": \"one1uz5kkgl0s49lgdfwd99r077ykqh8q6rfg6xtw4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6156e8b6d3f6093dced13a858071eb0b7f49df8baa56ab3c6da0c74a0a0ff020187e288e9414402ffbd05b8b5080c910\",\n                            \"earning-account\": \"one1ddtng7666jlwd854zek4sjp49kzsqcesuja3cq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"18c2767428893999b576c838c1228623ea457ab60b38e342fa5cc4366e3712133106436bed0e55c08902ed7062e3f091\",\n                            \"earning-account\": \"one1tkfscarayuu296l97uglh7y5ffudp8cey4ystd\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3325cbb57ee9c83269f593be1bc8fe1cba61b98bb41da6834203fd9cb022a36ad89806c9c7a75dd910a0dadb9acefb17\",\n                            \"earning-account\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                            \"effective-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002234106398801582\",\n                            \"voting-power-unnormalized\": \"0.006981582496254943\"\n                        },\n                        {\n                            \"bls-public-key\": \"f772638b2125262f47fe20bd658508c1739c9c6d2be3dae9eb30670b6a04b09679bbdfabf88f1e134e1736538885a313\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001934698448225128\",\n                            \"voting-power-unnormalized\": \"0.006045932650703524\"\n                        },\n                        {\n                            \"bls-public-key\": \"114c651af75381bca51c11c613a553ab622d1708001bb0f3e56d7f69009f5a9c611dd1e2576e345802766b064c3cea03\",\n                            \"earning-account\": \"one1jy4lwncutk3gvpn9l9eszsn4vtaw4j48d08fdj\",\n                            \"effective-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5275184843546800151200000.000000000000000000\",\n                            \"voting-power-%\": \"0.001820429560865475\",\n                            \"voting-power-unnormalized\": \"0.005688842377704741\"\n                        },\n                        {\n                            \"bls-public-key\": \"e04d925314bdd07876a72ecb13b1108164ecf3cbba7fd81bf9eb62810243fc065f89153ea39e5c7e66a1ac7a2daeee80\",\n                            \"earning-account\": \"one1q6pvrr5ewrefuky9n7khk0lztmynzgtxfsa0ye\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4a7a0453f2d35c4c0ccb69e666576785702124d2206808c0aac9e22dfadd0dbf01c38564a5fc80f7fdef62829d250193\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002218785892356101\",\n                            \"voting-power-unnormalized\": \"0.006933705913612816\"\n                        },\n                        {\n                            \"bls-public-key\": \"8a38e74bc302f0cd1a200c2f6edc2184c3af577a6f07456f19af063940994d803012da53a399fc15279682e743bf520b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002004947610731240\",\n                            \"voting-power-unnormalized\": \"0.006265461283535124\"\n                        },\n                        {\n                            \"bls-public-key\": \"b45dc538a61047e8bb8105502f08768dd976a754d6ee558254f0eb81e439cf14c1bc7464bc628f1fabc6cd57bce8cd98\",\n                            \"earning-account\": \"one1qnmlhuzce59cp9nxclmy48f743ut9033zsqec8\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7ee08151e824b093b6758c2358418739c45e9076345ac60f199e95e97ba9008025c88a33fe5599b56ef7cc82a8a50510\",\n                            \"earning-account\": \"one1979srjehvcepgmaak37hsxykwmarsfgd25j8nj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"753e6805bfe904009cd8823ae5029e8fc1929926fb524d442dd763a3a5f2bb2e4e9a04c4b3c710fa79e83381b9934102\",\n                            \"earning-account\": \"one1ukhqh7g6yumqftee7xtfx9vnw37pudxgryceya\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"de8db4849f50ed858bdcc6028a38c2755a7c66dfe6dfcbcea938af7308bb87928b4b188cc53de84dbec7fc698103d803\",\n                            \"earning-account\": \"one1y7knq5knuppehm6426y46hf3crtzga4n5l9hsl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f2efeee18134f78a2ce7d483599358ed228eb45e1124e8eb3cc741486d6eac76bdf6dfa2450bf54cb75a71a2835bf83\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001888162137121748\",\n                            \"voting-power-unnormalized\": \"0.005900506678505463\"\n                        },\n                        {\n                            \"bls-public-key\": \"179c14684b1d39715563d3cb0565782b37a231c056886fe5cc0c7547a7e95439f5feab4199ae25b8bb191ba4b4d93397\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001871688294806496\",\n                            \"voting-power-unnormalized\": \"0.005849025921270300\"\n                        },\n                        {\n                            \"bls-public-key\": \"75e991e1b581086ae2f97d47db63a07116e8d4f2b705beea1f1165f936f7d5e91d324ab0c10a4704a89e47d7f194ab97\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"voting-power-%\": \"0.002222091170995955\",\n                            \"voting-power-unnormalized\": \"0.006944034909362358\"\n                        },\n                        {\n                            \"bls-public-key\": \"67d87257f4ca7bb59c189c5c0d06059054d0796024ec3684b8624cdeb1996628d1bb81a63e23f4cbeef622d70b77b987\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002174428307386441\",\n                            \"voting-power-unnormalized\": \"0.006795088460582628\"\n                        },\n                        {\n                            \"bls-public-key\": \"0b7b6970db2069325c2b454a4d64d3fdfb7fa59e4b4a1076c0511a632e50cf1198afa9bdaa7e3145ead3b58e70079117\",\n                            \"earning-account\": \"one1hrsy5qzp2qhejteltnaw2qlm6eeuwdhzsp55fe\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"570f7bb9c98bd4b465edbb5777208e2202c846076eecbde29ab9e3a5ccb78d5ee3afefabcbd7c7267199f17c86de788c\",\n                            \"earning-account\": \"one1t02rq9q6jlt59j7hp289h0sjm08xeueh5p2n7x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"5baedd510cfd70c7c3a535c0adb589880c8b65641c14999e8f19b39498089ec1d9ae694a18d28bae538376811798690a\",\n                            \"earning-account\": \"one1kar0d902emdqq8chzatrdceh46q605v2cvpf9v\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a67d755e2216a1d7b86b8c710db2539ad8b6b31c7308ba38dcf89ecd861caa07f64231f1c5348c3b5778a239f7df1f11\",\n                            \"earning-account\": \"one1agvwswhwjd4p3lldznu77rx3nsp3xpyav9cnqc\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"fd6dfccf944686498bc2017af7f27dd7f44c61a408e2b414eeee7f181d1aee309d8f89f36be9cdd9045616c6c1226815\",\n                            \"earning-account\": \"one1xc452j7x630q36epjmaq6xts4zgflnf4r66ssx\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"028e33a20bdb4c3badb5b32107899b3e6abef57af2f9d330e47c1318c439938164fb9c4d6eda4c133089648e33400987\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001871447679130417\",\n                            \"voting-power-unnormalized\": \"0.005848273997282554\"\n                        },\n                        {\n                            \"bls-public-key\": \"ddb2b11443f746f0b3f2fd6fde9869173329e7e27aee724a689ee6e414e90b59e38a8e8e0f6ed47f791bdfa796c93493\",\n                            \"earning-account\": \"one1vgyd7aghzgyusks48zy63g7p45x3wzc8n6jhwg\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"520ddf63d1997df10f75c05e4f7ce1f535c800204f31904278930a7e0bedb8e5bb6468fdf9e7906da01abaf92c22f10e\",\n                            \"earning-account\": \"one1tkhj70kmg94pdgkh9wq6rwcfdg8hfh25g2t7u6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"01d685b429516222d81e2c748f68789b71e1d36da01d2c242322411d7f14e5bb83623a770cacf221f36db9daabac0b97\",\n                            \"earning-account\": \"one1ad6yqls22z9fcserd0ftt4u089g023gapathzp\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a25141a3771f001f9a519406e1c36babdcb90a8f31d5986dfdcb5e4519515b3070420e27869ac6103120ae75b005b50b\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002218785892356101\",\n                            \"voting-power-unnormalized\": \"0.006933705913612816\"\n                        },\n                        {\n                            \"bls-public-key\": \"1d58c7643cbed3008def6729e3eb6c1e350a3034589c6086d616c2ec34ec44f77069df41f8db92203328ce4d4184d10b\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"57a8ee9c36352edb47e1a65f8c2342918887c696ab06ec04a2dfdcea741bebf851a42ec707d1ed94f287b59d5fd87199\",\n                            \"earning-account\": \"one1q9dmx7ma60jgwfh7zptzf8x67666cduvytsxex\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"92e8bcf14ce756c301d5bb450d13fdfd9e91e4a8b36cf281829eee4e00584266904ce869124ce650a6057b3d85f3e404\",\n                            \"earning-account\": \"one1ef4ea3dxe9ppzsxfz6tkv0zd693rcqvjuj5tt0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"91f2651bcd7416fdd2275338588ee02473753a5f1f8ca26aaf7d3d6b5fc402694593f6fd62ce8d02d00c696af9514e02\",\n                            \"earning-account\": \"one1av3umx02y6nqxrg02w7vg9rc6lg9rlzpc8uvyv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"38f4891a6abe036c75d1dadcdf8c19f8769d0ba01c421fe1b8fc2c5b681416251ccb77abc51c336228bd74bf345bc407\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001875275697821028\",\n                            \"voting-power-unnormalized\": \"0.005860236555690711\"\n                        },\n                        {\n                            \"bls-public-key\": \"55d36ffc75e6be957415dcfb8bdf3235f6e95167d644bb6d50ddfcc868594f852b7ef520140a5d44f3a0723a16d0d417\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001871447679130417\",\n                            \"voting-power-unnormalized\": \"0.005848273997282554\"\n                        },\n                        {\n                            \"bls-public-key\": \"4cbbf20d0c3bb8f4e2de88040f321bd94cb88c5ec427401993be0be5016fe22cd6543810b4737eb9dcf2739e922a8387\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"voting-power-%\": \"0.001963016230803322\",\n                            \"voting-power-unnormalized\": \"0.006134425721260380\"\n                        },\n                        {\n                            \"bls-public-key\": \"66ab282fbb88b2dddb564dee12064f61cb11041aa18ed553338867b0ab8a3f4ea7f48a96ef98a81fbb10bb853188a78f\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001889876819749617\",\n                            \"voting-power-unnormalized\": \"0.005905865061717554\"\n                        },\n                        {\n                            \"bls-public-key\": \"d4eaeaaff529c66ded783947df40503622ea653bbc3bcf7d2f6165550b76a053842a18acec09a230babb3579f6444683\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001871447679130417\",\n                            \"voting-power-unnormalized\": \"0.005848273997282554\"\n                        },\n                        {\n                            \"bls-public-key\": \"c965a109ff099836ee94ebdb3725d8319a14bef46450adb3fbb20720cc413b9369d6371d2763729711b9714e762ead0d\",\n                            \"earning-account\": \"one1p0m97qfps6552xfj3dlnxx7htm7489752w42r8\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9db4ba11e160d494c7165e89bcc337910a63bd5c1be97165445b8933d8321aae017dbd52ad7bbef0444082dce7be0804\",\n                            \"earning-account\": \"one1azaekx9sj9jsarv0ydu96njfn8vxtg28cc36x6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b3b16ed2405cdec87d276aabd97f7b99ab30115f4f91d7befa89bc80ce5c0cf150ae8813c5b7d3edb9d51f528d29b995\",\n                            \"earning-account\": \"one1pp0saz07zrm6n009mfwfz68a3dpjyxy7u9jgpq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7b9e606f6653dd3ca3c6d06117df1f2e1a40344ae1deebe1f1fe5b69c4ed3300b96fb0eafb318aaf8db34f72c7b96500\",\n                            \"earning-account\": \"one1kc62r540tp79746l709vyqkm4mzwyzrpnecf7c\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d1bb58d9ac1f55bdc8ad93c22a8118b932df34899813ac63a1b406e24000d36e9e38d1542896c51d6d763aac9b252b09\",\n                            \"earning-account\": \"one1ac4j80t2gsd9rhg637yfa29d4rn6rz4elh9lmh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c625906b4a10a9772ad58099ab35cb0e959e5e7231a05a5bda30141b5448b4e8cbc4f623d4def4633f8845b48c09183\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001871112701003556\",\n                            \"voting-power-unnormalized\": \"0.005847227190636111\"\n                        },\n                        {\n                            \"bls-public-key\": \"2aba11e4239383c631fcf0796c95241508a2a60be7302080e356638141bc01144787b68cf75d130ca596ebd01b57b107\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001841622136213431\",\n                            \"voting-power-unnormalized\": \"0.005755069175666973\"\n                        },\n                        {\n                            \"bls-public-key\": \"8e20d06a6a03bf3a2bd2cfc0a8faa820316b2b8fab35d317744316a0c5c65936cf45ce0d8744427920b6dba7a8df0c0a\",\n                            \"earning-account\": \"one1jg000qx9whdgkvc8kyy8muq0utfhj3qukekakr\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"56a139f6c146e4489008e85075a746f7d62864d68f437ed10e5d544a42c7e42097cb6e1ef46a444f1b048c8ae8d1ef15\",\n                            \"earning-account\": \"one1232aejapdp22vms5734v34dl5ch9mw3q0g8d68\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"43ba875e76d9cc1b40fae255865f426de64a7ece1b4caaa9954747c3c766894de034f372e825cb09313a9ba588b6d68b\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002004947610731240\",\n                            \"voting-power-unnormalized\": \"0.006265461283535124\"\n                        },\n                        {\n                            \"bls-public-key\": \"9f28121f54bc1619b0f2534b3fd7b4c14837e385b76e28554a706c042f38d8ba075a3e2e46b8d5808b3b0d7cd7d0a80b\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001945559081062852\",\n                            \"voting-power-unnormalized\": \"0.006079872128321413\"\n                        },\n                        {\n                            \"bls-public-key\": \"8778aef9a71ae1cac71a8c86e07df5e0764d0b1287e03f92cbe0bb4ba4fa278ee8584d33048e69425dd6b7d732f9f887\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001871447679130417\",\n                            \"voting-power-unnormalized\": \"0.005848273997282554\"\n                        },\n                        {\n                            \"bls-public-key\": \"efbaa34fa66af2525ae1c26b2db7663a96a7b4d67bd2324494d144dec8475ec7c532f36ef770acf5aabf239f01052207\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"e87c6169c06c08e1d777926e325717891a17320eb18a0e36f4237ec19c6693a548d7b37a157b0ad88048241659ca0797\",\n                            \"earning-account\": \"one172p9es0epthd5zvnvnztw2nqsgc40vxamr6u5e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"45d3193d4264e007094a169059db65ebcfba5273eaf7e442aa048c881adf8640ff8432fed978425e129f35220c104715\",\n                            \"earning-account\": \"one1636w878jacdyphtj9kr4wjl6qqfqx4ztcfyt9h\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d4987f2d4013fb3cc422b1812e37804cd01e7ce82fd9eb4e74653b325f3d97afc33c0bccdf3233a5b9d4ab4e856c590b\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002305689752340925\",\n                            \"voting-power-unnormalized\": \"0.007205280476065392\"\n                        },\n                        {\n                            \"bls-public-key\": \"457fead0248f80dc8a63afe6bd5b464d2ac846192b7547a72cda0cb69ea485eb7ed31e75ccfeb64eb1a985210948e113\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"4a034d3423a8f70ec406315fa777f081201b28ef94d4b385b4aa4059a657eae806ee228c0d676c855d5fe17f51b71487\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"voting-power-%\": \"0.001963016230803322\",\n                            \"voting-power-unnormalized\": \"0.006134425721260380\"\n                        },\n                        {\n                            \"bls-public-key\": \"333ecde4bf0e8c1b4e1410d92694f0f3ec93a0d90fad285ead06338e8834ad97b244e2d7c1eaa575652725cc88d0590b\",\n                            \"earning-account\": \"one1kw82fz834ghptg85cghudrpezqmxmn2k49y8kt\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0c8a858c17af55b4631b9f6b98300281b34d510d84b9ee72110780ccfce0d540ae1401521a13825bd427439e43c68317\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002195080099278644\",\n                            \"voting-power-unnormalized\": \"0.006859625310245761\"\n                        },\n                        {\n                            \"bls-public-key\": \"365ebf1f7867198e2c3291e515717e0caa0b8eb65dc181a178dfe5dde0cdffc354d3c40fd5cedff9e192cdb6ffdf350f\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001875275697821028\",\n                            \"voting-power-unnormalized\": \"0.005860236555690711\"\n                        },\n                        {\n                            \"bls-public-key\": \"f06e3520dc2cc1f14751aae2e27959f9a78c8e06c9ef87104b68b5d9f0cf09587ffb11eb0be0fde522ac6f0fc400de01\",\n                            \"earning-account\": \"one1ejt8qtycp3un63wup46m8gq0t2smddux2cer97\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"711e58fa111fc60019f05f0959ca57cca4ef3cf83269be59937db1a725ddb36938628d6ea4e48623819fba475b58e481\",\n                            \"earning-account\": \"one10z246ajxuzzzmszsfudhdwlehtrrczs793uzw0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"8fd42f4c128a790f11c89f44c8bab27cc47ac16f7186cb8d70ce1f692403502677da9f70e5a1f0dede60fcdaff477c83\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"voting-power-%\": \"0.001963016230803322\",\n                            \"voting-power-unnormalized\": \"0.006134425721260380\"\n                        },\n                        {\n                            \"bls-public-key\": \"a472acf4f4f3faecb283217b4bf0b99eb019c55dc079afacea88695b63a1b7f3371074981db77929e3859fb2929e490b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001889876819749617\",\n                            \"voting-power-unnormalized\": \"0.005905865061717554\"\n                        },\n                        {\n                            \"bls-public-key\": \"fcd49de42863a6059a8a60a1565e4616a7933a5f918b8eac986da5594fa3b0f0177e66f01b5f54c453c4adfda836c913\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001871447679130417\",\n                            \"voting-power-unnormalized\": \"0.005848273997282554\"\n                        },\n                        {\n                            \"bls-public-key\": \"dfbe83358f924eb424afc0b25c5f44d35a45ceb353446cf976ef9988e9a4147f634df1c8afd8b3661e68de2fcfdffc17\",\n                            \"earning-account\": \"one17495f2cxc2f5ej2h3v76jhkxjhg84v2m4azf55\",\n                            \"effective-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6360835661546000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002195080099278644\",\n                            \"voting-power-unnormalized\": \"0.006859625310245761\"\n                        },\n                        {\n                            \"bls-public-key\": \"3dacf918e9fd3d9d160722efb0f851c4da1f47f28566496ccf402719ba6b4bc435d9d52259e80674e71c78b622ea3283\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"6b2116f918043ef413d95771b56c2f2aec20062872ada45339ad612474acf1b6a2025c27d71d323e8512d0ff87725517\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"9483de51dd025c42877e979eff401d1c7cbcfe7865d414b144af3335d73a7839b4bcc74ac8ea5f82b0e286342318200f\",\n                            \"earning-account\": \"one1nkrwnhc9udee6400rncc06j3hhdmz6j3clj094\",\n                            \"effective-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5688368114307410678363636.363636363636363636\",\n                            \"voting-power-%\": \"0.001963016230803322\",\n                            \"voting-power-unnormalized\": \"0.006134425721260380\"\n                        },\n                        {\n                            \"bls-public-key\": \"53b2a0864a458ee46059ec7bc066342d1ce5a35dda55890acefad4fb58c57342d9f6fa97ccff04a31963aebcab02dd91\",\n                            \"earning-account\": \"one1n0ph69eqv8n5d5cz2zf54hf7q9nqdfyrzv3p7j\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"7b3d2d588c731a78607a8d8043223bb7f87b4292543ee2ecc3a663e89d92b7a16007eef23084937bfdb2df780970f487\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426022077632278790909090.909090909090909090\",\n                            \"voting-power-%\": \"0.002305689752340925\",\n                            \"voting-power-unnormalized\": \"0.007205280476065392\"\n                        },\n                        {\n                            \"bls-public-key\": \"f9e741cb120862af08828345fb967e66eb3fc5e25b7a6688074b80cdd2acbb898af484110eacdb7ba300da9d39ed2b8b\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001889876819749617\",\n                            \"voting-power-unnormalized\": \"0.005905865061717554\"\n                        },\n                        {\n                            \"bls-public-key\": \"3cc36b809ac60b2aacf1c8a4e989c6f8d3a389d5d0a6940e36275ab7a359572baa8fae0d03e50a37d7ed27c4318ac10b\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001850834619747777\",\n                            \"voting-power-unnormalized\": \"0.005783858186711802\"\n                        },\n                        {\n                            \"bls-public-key\": \"77998df01000aded60893f5221187634b85ef119def044f91cd77d8b5d56398377f851f7e4254d887925723766f10a06\",\n                            \"earning-account\": \"one1t48zh3pdt5ltcsm2j9jffc0hwh8x0udujp5udz\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d5fbb9ce2c70a99ed27f0393f4a964937e3e7243c121c36f44c1095518ecc9516539a1ab08cc53aaa4783553b95b0916\",\n                            \"earning-account\": \"one1tdcsca9ceu4frnzcsc7jxjvduxct06gj5ccfgn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"51c513a867c026f966e4c1a46676b760029990755727caa0e68a260e59cf7128358bf7bb20a54261d0a7b2f786061e03\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"d6847272973c672b9a92826bf6eeda7450c3db3beba6cd59c836643e296f7a936e355d2f3d97535218ab2937b22e7c96\",\n                            \"earning-account\": \"one1zrrmxpzhqtxsmfpmlhgdctr4s5ry0z6x4p5zkn\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"62b57cb99dab8121831d5ee3ce6c1a63ffe3b4f0ce75be53b2aec232317bb1ef8b647f8ff62d610000042e45ca99dc07\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"34434474f59a5dc5ff6e1569ea67bdf181b2e6a4771f1dd102b32791023be6e313938d31738fd2c12302ae7360a2c307\",\n                            \"earning-account\": \"one180767nt5qzycwl4rzhjaf23kmv30a9uvmlj8vs\",\n                            \"effective-stake\": \"6073064500000000000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6073064500000000000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002095772275044996\",\n                            \"voting-power-unnormalized\": \"0.006549288359515614\"\n                        },\n                        {\n                            \"bls-public-key\": \"08a261d6b9a0e5eabbf07335605a97917c35158379a3a00da1065402ef7ef49759e5bedc39561182509ec0b3c171b003\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001888162137121748\",\n                            \"voting-power-unnormalized\": \"0.005900506678505463\"\n                        },\n                        {\n                            \"bls-public-key\": \"51340ad73311fe90e6e19b9550d75d876e70ecc8fc2c12974f8da362793fa03f808984d79b13f93164f19a4a8f53910b\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"2b4fd7205d7c5762f0e5b9d8ea4f627c1bb1d7d4014c4b97a687f144873d4a951c3c8f1700c08000b94855da058a6c10\",\n                            \"earning-account\": \"one1vnaudg4v6rcrp4v43ptz7xv6ddpdtpdtxun6fw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"fb473052abd5658ef17660045b432778369fdcba62addddc2d04f592df4a600d730ea196ea04c13bcfb8e2fc16d1ae16\",\n                            \"earning-account\": \"one1lnnwxzp6tu74tpfpw3k7vx7jw6l5zrkwjayhd4\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c7bdda2e4705064bc3a4aee3eebb043f2cb89e0194310ae9076edb588483413f55fec59ddaa7ac7e8a3570debb955196\",\n                            \"earning-account\": \"one1tv2hhcar0c039s52jy5q0rf7pf75wys7dfu08a\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"66ae22ecce040a1705b8caedcef611831b019c66685f136e5124a4afbf5cad346ee8d2c98b22bfdfc98d3d8b13d7b213\",\n                            \"earning-account\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\",\n                            \"effective-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5988603231023722710746153.846153846153846153\",\n                            \"voting-power-%\": \"0.002066625279185558\",\n                            \"voting-power-unnormalized\": \"0.006458203997454870\"\n                        },\n                        {\n                            \"bls-public-key\": \"f2a4539f1251cc5b173d43d52ffc41f95da5999e782f8c3f82bdd76d2f85fc4ce35ebca5fd6130fb018efd3bb140b78b\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001875275697821028\",\n                            \"voting-power-unnormalized\": \"0.005860236555690711\"\n                        },\n                        {\n                            \"bls-public-key\": \"1f3ac5111ed5768a2dd10ab5e600d414ff8f27f6305280f959f0eff06727b3436a416223eb4676ce5ed4710d7539900b\",\n                            \"earning-account\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                            \"effective-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001842386041667500\",\n                            \"voting-power-unnormalized\": \"0.005757456380210938\"\n                        },\n                        {\n                            \"bls-public-key\": \"8b8d0f5b87427fb352cc05de17ab1cce7ec2553778d4a1460edd6aed8b9fe3f928910008fd563e20d82401a6145c6f8e\",\n                            \"earning-account\": \"one1zx073yz0xr08acztcwexz9frtn7ca9wap4n4r3\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"921a3e873b0f9a64ea748067732711722db9e678706adbe54a725bc4265010195cdb6b5543571c863593d48019904219\",\n                            \"earning-account\": \"one1ztqujjuzchxzsajcah7fthz9ek5a0jt959t2dw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"dbff877032c318186e1e9fc0e51f2f241294a083cc33c9d07c47e6f3d56871a8f217018f252006313384d14269f4f68a\",\n                            \"earning-account\": \"one19jk2td0pwk50tqngxrusda6yfu53dde826gtpw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"323bd3f38afce4f27e35e5e1c7a6cd4f3f024817fc180fd73e3880e26fdd8824092f9707d216a1c7d278c6bef71b1493\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6163501886082581250000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6163501886082581250000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002126981587308914\",\n                            \"voting-power-unnormalized\": \"0.006646817460340357\"\n                        },\n                        {\n                            \"bls-public-key\": \"2220759df1bd1d68d40fcf746c894283e80088df83bde4618458dc6adb9f180dc0ae361e0d554a5a0f61d3d86d57ba97\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001889876819749617\",\n                            \"voting-power-unnormalized\": \"0.005905865061717554\"\n                        },\n                        {\n                            \"bls-public-key\": \"f01fc84c396ed30e2f9cb85ee7d233718b3651539c91067593acc78ac01dc085b5c452f9cfd6a532ddf4178da4711297\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002305689752340925\",\n                            \"voting-power-unnormalized\": \"0.007205280476065392\"\n                        },\n                        {\n                            \"bls-public-key\": \"06f8dc945fb93c437d8896ae5cfb4143c065bf525eb3c9ba1144b1c542098fee332e2b9b543d028df7bacbda0fd5868b\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001888162137121748\",\n                            \"voting-power-unnormalized\": \"0.005900506678505463\"\n                        },\n                        {\n                            \"bls-public-key\": \"0a551033f14306b088545b07ee0f8919b6bbe41d1fe220dc37749b8fdc71ae01dc520f786c8dd3af4bc9cf1fc4b4168f\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5340292559410811666600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5340292559410811666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.001842897780295642\",\n                            \"voting-power-unnormalized\": \"0.005759055563423881\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d31e3c619dd38bfc3a946adc69f2300672e83dd77e5d89a6dc2d793bf110d91f6e1afd525366c6cb7abd7df14e30512\",\n                            \"earning-account\": \"one1n7kzlxrdz5xgxzmmpat42uzr039vurvjm7h85c\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"f400d1caa1f40a14d870640c50d895205014f5b54c3aa9661579b937ea5bcc2f159b9bbb8075b516628f545af822180f\",\n                            \"earning-account\": \"one1kyyt7j29h4uhtnuhfar5wmngntx4gterrkd8q9\",\n                            \"effective-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6473924873108374999666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002234106398801582\",\n                            \"voting-power-unnormalized\": \"0.006981582496254943\"\n                        },\n                        {\n                            \"bls-public-key\": \"31da8512a419dbe5ec4e230cb8d81fa6493922f964d7d7ad4374388cc61edfb55592e568583b8f10871a78918290ab8b\",\n                            \"earning-account\": \"one1r3kwetfy3ekfah75qaedwlc72npqm2gkayn6ue\",\n                            \"effective-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6429529580297245540600000.000000000000000000\",\n                            \"voting-power-%\": \"0.002218785892356101\",\n                            \"voting-power-unnormalized\": \"0.006933705913612816\"\n                        },\n                        {\n                            \"bls-public-key\": \"b7c1e4947c0133e786360d605eb8bfb15ef5c39022de9f89546a9fa3792f333e1e50e03436e831571fc9e9fde3d04197\",\n                            \"earning-account\": \"one1dcmp24uqgwszcvmm8n6r5dvhqhuukdj86pkg6n\",\n                            \"effective-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5476426976374558395968421.052631578947368421\",\n                            \"voting-power-%\": \"0.001889876819749617\",\n                            \"voting-power-unnormalized\": \"0.005905865061717554\"\n                        },\n                        {\n                            \"bls-public-key\": \"3dd79d723b8aac2182660a12cc173dd76973c1f6c459ce4f3b797cfa0d9114924f12cd211d36d7356318c75026afbd13\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001871447679130417\",\n                            \"voting-power-unnormalized\": \"0.005848273997282554\"\n                        },\n                        {\n                            \"bls-public-key\": \"d7cf088579fda9c101b5eb1bbdf975c3d57a9034b70dbe9c43c99ccb149708ec4efc5a9d020ac7f4ab215473402cf30c\",\n                            \"earning-account\": \"one1kyqhn8yaj5kd55eyv9z9xnmm2jdjsdrf9savqh\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"11c43fa0691d6f706c57f8cc85f094388bd0f6b7edc95b5167fc3eec61283dcc20c92e92d5377e37eb28bbf00c154513\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001888162137121748\",\n                            \"voting-power-unnormalized\": \"0.005900506678505463\"\n                        },\n                        {\n                            \"bls-public-key\": \"1b9f516615c22a34d05e8f4c9ff45ed2e58bda460164cb85eb6581bd2150ba0dcaef014bb880019272fe54643fa42593\",\n                            \"earning-account\": \"one1hj5let92mzhj3utzramfmfwmxdvrcr5xnj5dtv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"4480f71a91530d47bdf3b73a3550cc357941d2a960fbe3a84396213bfbe87fe6a470af7c45b27a386764d5a20214438a\",\n                            \"earning-account\": \"one12w3r7435c05ntgqs5y2fx0xzx8yzhec6spm49f\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"cc5d617fc09fe51e17c662161d31775939f5d2c697281474470a4a93273083f702a384bcaa9cb2abe80b9a1921335a13\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001871112701003556\",\n                            \"voting-power-unnormalized\": \"0.005847227190636111\"\n                        },\n                        {\n                            \"bls-public-key\": \"d7b175762a830636c064c092890fed925da065a9383c22ae594e7967c71117fba7b3943c55e137f8a0bf954da742fa18\",\n                            \"earning-account\": \"one1mzzw5tq377ju4puqvghzyjpnwag2p0na7h702k\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"56992d9f0f295da3451e9444bdc080b5022fffc9063e5b34bcbb3483ddb643e36b3fae91ca59e46725c9eacc89253717\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002305689752340925\",\n                            \"voting-power-unnormalized\": \"0.007205280476065392\"\n                        },\n                        {\n                            \"bls-public-key\": \"e56dd21494d01f9017fb3281218c26451b3e7350260f4ff5946f943d70fe7e4e5e77968db3ac467ef16f9cf32c5b5696\",\n                            \"earning-account\": \"one1jvlazvl9njtf60226vhc5jkr5yf8lzre97t9ay\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"d2f6b1c9903d38fde61a77a293ec8c9107255ff7867bcfd8e9189b1fcb1ea220fc55a35c81bb0ad1a32cd39ee06f8683\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001875275697821028\",\n                            \"voting-power-unnormalized\": \"0.005860236555690711\"\n                        },\n                        {\n                            \"bls-public-key\": \"6d1ecb3757073c7886cf13562230900dcb1b63210816806ffac92b323bf28f1ea08f6ed1a6db37669adc044f05be9f8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001841622136213431\",\n                            \"voting-power-unnormalized\": \"0.005755069175666973\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d90f1bd3d6fd2803b5a68917c1917579479a4f24a59eba93c729175e26a5adfa6dd596273136c1be24f4b0d35bc1003\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001841622136213431\",\n                            \"voting-power-unnormalized\": \"0.005755069175666973\"\n                        },\n                        {\n                            \"bls-public-key\": \"c8f8616ee6a8c061e7504f2eded41db1ea7bde7c8784f440e750c3312b7397d038e465f569ce6f783ea4fe243097f192\",\n                            \"earning-account\": \"one1t4p5z796aqqk9eg0uwgjkd393tfun22lwu23zl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"425321130e2da223e6da4e778b957f1573be6bc42d71fd991668c6e0e1fda5454715d926f120eb4ece80d41c2e15410f\",\n                            \"earning-account\": \"one1vp5wzt3qxwadm83f5la8ht6djk9qku3t6u5w6n\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c87565824a5046abebf7a4f608d1456a75623177e89d6537de8148c6c4d5793d00f234cafc7ffc9a5ba666f7825e0883\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002004947610731240\",\n                            \"voting-power-unnormalized\": \"0.006265461283535124\"\n                        },\n                        {\n                            \"bls-public-key\": \"8a111783eeb07585dca863adeae5e55696a88b8be08f3b45cebccd75ae27e162a5411f353830e6511bc60ed5b2ba6895\",\n                            \"earning-account\": \"one1h26xfag4xtsm0v865dq2f749mzc92fpmkjp5lv\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"056f26c7d3cfcb67a696918196a696ec1b77a6cccca0b5ceabd7e974a52cf642ab2d4fa57f63d1850d689f3772d1980f\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"7d9b1e9fcf190e3f201fd7a7df3b86d669001063884152c3ef824859e25c9e45fa0b00f59d81c62b807ffca0f8f37c13\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5340292559410811666600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5340292559410811666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.001842897780295642\",\n                            \"voting-power-unnormalized\": \"0.005759055563423881\"\n                        },\n                        {\n                            \"bls-public-key\": \"149b64db1423d6ff7ff8e192ae39cc836ae06bb8b8fc45c1aba84dd87329756ea0041bfb62535d082312a6fcca988b87\",\n                            \"earning-account\": \"one1r55rwumsrm6w3d20uhaa3hm4rxr442k0qx9gj8\",\n                            \"effective-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5338809658938822222000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001842386041667500\",\n                            \"voting-power-unnormalized\": \"0.005757456380210938\"\n                        },\n                        {\n                            \"bls-public-key\": \"1471e1ec34c64eed9df5640f4c517d144395e45a2cc373dafec3ff9e7064b969faab23309f1511873419c1cce8382513\",\n                            \"earning-account\": \"one1ctwewx0pmg8k0tc8vnx4guyq9jm7dwz5k98tlm\",\n                            \"effective-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5471458221744070265225000.000000000000000000\",\n                            \"voting-power-%\": \"0.001888162137121748\",\n                            \"voting-power-unnormalized\": \"0.005900506678505463\"\n                        },\n                        {\n                            \"bls-public-key\": \"01342200c5b08864cfab8cc7c53d0e6364050394f9b1ab76372bced6fbadd867b6b1614842568444ebf3f50a9cce5910\",\n                            \"earning-account\": \"one1xqlftaek6xvgzusnfdxxdqy3qa55vrqv22lmal\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"a47dfdc18f6118de254649ef09c356372eb8b34939c10e8f32cbe17363d01fa7694f0ca409de478c21233b3402f0638f\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5495388933221700000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5495388933221700000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896420459034337\",\n                            \"voting-power-unnormalized\": \"0.005926313934482304\"\n                        },\n                        {\n                            \"bls-public-key\": \"7ca453b4916f08e7316cb9e0a80e03336ee70d364dccbab09496590da8807d01cef2cd07187a7d2c946d500936449a98\",\n                            \"earning-account\": \"one1aywupeg53g38z2y009mzuwdw5u9lwsy2e5yetw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c9a6fa4a2a9c2a2ae62c2531d3374d1259355d9ff03aa2b6c47b975e9e32a2993afc00e0763a10bfa428d7bd43acf316\",\n                            \"earning-account\": \"one12qgse2zaq66rgdsrvvsc5ueh07m3vfrvl6j8wj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"9d77955e5e19e055332090de4ff89bb1825e9bb1626590043359ce0194e4a1e0c2cdfb82bb33818449445c347f31bc07\",\n                            \"earning-account\": \"one1ufedljrqf6js9y8pldkhn8gkdlh37v8fck76y6\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"2e935bfa72ad37e549100c95d0d2b153c0fe5786589b2c853eb91049c95fef9bdf80a4ccd2fc0f0b1431ff2dd248eb8b\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001841622136213431\",\n                            \"voting-power-unnormalized\": \"0.005755069175666973\"\n                        },\n                        {\n                            \"bls-public-key\": \"f4217e634426761b2618aa223c2d5ff70440f22cf8d8b87c6a76fac2a16fc7f38fce37551a18b3901b2ad82c4c02a980\",\n                            \"earning-account\": \"one1p26ned39k7nuenchraxuwqd827dp9pddh4g8dw\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"91837c58919453b930214243e337164aa1cbeecdb271766144517575c9cc5c07a530996e28f62c4de5b836ac13289017\",\n                            \"earning-account\": \"one1ks9tknun5el865he676ucd3dljzqldpyps83m9\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b0a599b68d5923764b9eaffc0f7a366fe5e049f87a16f5855ea0cd64e6a78d3abf70a700f72cca26cbf7fa30ee2afe90\",\n                            \"earning-account\": \"one1yy2mhxf4hqyxhu7aelzqhydjg6c2wr57w5na7n\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"62e25aeaf7a575bc33507d2d0807218b9cad622c06b2887d7d9645c8341a83dd49f1868169672004df2db5b29fd0e707\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"9b413252ce0cf2f289c1838b3e35a4b70ec6ef659bd23c606b8e93be3c2e4e065400310cfdbb299ea65bd357c7c9da0f\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001871447679130417\",\n                            \"voting-power-unnormalized\": \"0.005848273997282554\"\n                        },\n                        {\n                            \"bls-public-key\": \"230b046bdf38de5567efdda44d3577918e40b6624e8cb1e7512d25b692f1f8c8615799d6a384ca31dc998dc71dddc483\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"aaa8db05503a6578916af15f5c55e9c1f541dbf38979e6d5f6be6c2502dba836bedcbd14b1e11e241302a8ae0bfe530f\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"9f9249854bacdd414da45d2934cdfbed122a12fc34d8722616ceaa4633112bcecadeabfc8610f95aabbe4af5014a520f\",\n                            \"earning-account\": \"one1yqu97zy04zy0cu6mr2gddvs94d4j2zums7ttvt\",\n                            \"effective-stake\": \"5340292559410811666600000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5340292559410811666600000.000000000000000000\",\n                            \"voting-power-%\": \"0.001842897780295642\",\n                            \"voting-power-unnormalized\": \"0.005759055563423881\"\n                        },\n                        {\n                            \"bls-public-key\": \"c47283b4bbb2cbf18c6ef0575f487c330841801cd756634c6b1444d4e9254d3e63c08cfc22d6d992ee1f82bb46a58087\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001934698448225128\",\n                            \"voting-power-unnormalized\": \"0.006045932650703524\"\n                        },\n                        {\n                            \"bls-public-key\": \"527d82b5fb83572c02c8f19565d6eb73da8bde325e2fb1ab2c9d961ef5f7d32dd4156064d882f40a762eccf93775d197\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001871112701003556\",\n                            \"voting-power-unnormalized\": \"0.005847227190636111\"\n                        },\n                        {\n                            \"bls-public-key\": \"ca8cc5da104b4c7dd59396b60d9125e96b34bf7e34412a8bb589b7c3b6a3b3848e33d18d5684160f544b09580ffa8c8e\",\n                            \"earning-account\": \"one1770w9kmstj3j5ylhvfpesp5q8ss3gnw5d6pe54\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"087312bc5441442c2af69cd5de25ea3621fd96691a1e99750c876dad7b8b636869c4acb614cafbddb2299c3d5b566b04\",\n                            \"earning-account\": \"one1vz3wwhsmanteju7tnmues33wfsxrd6au9ctggf\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1fcd73f808d600ddb9eae4605f9adf88a2d6b17142350ac39e76b42a54941c13bec6922b5a632d469eb66fe427b27e11\",\n                            \"earning-account\": \"one1fvn48vc5vgzlgzq0qm2mgg7yukwyv0jdh0dxts\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"1b329b6e99ff7d5026b3b907dba62a8977a01b11ca1e8b507c6f2ee42d4614e176d32937d9f9ca8411ec7f537da1eb83\",\n                            \"earning-account\": \"one1kfngqk6c2fnwjt9yyne6pqqeux0su3uzq0y5uw\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6974129124502666665500000.000000000000000000\",\n                            \"voting-power-%\": \"0.002305689752340925\",\n                            \"voting-power-unnormalized\": \"0.007205280476065392\"\n                        },\n                        {\n                            \"bls-public-key\": \"379749bc0edc1b539d490be19d2640e049f074d32fd5b8281eaa891998e14155f9dffa7f3de730630f1449f5a61a8893\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6163501886082581250000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6163501886082581250000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002126981587308914\",\n                            \"voting-power-unnormalized\": \"0.006646817460340357\"\n                        },\n                        {\n                            \"bls-public-key\": \"c5a3cdc00a9400bb3f9b7030c30ca87f1f9d72694cac5cafdeda325d8bc8dd93981c4131184b0d33b1ab9554e2961d8f\",\n                            \"earning-account\": \"one1jkjc25md75hlstewu8xkfzl5637maxm99elpy0\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"c44709b345924d9e39c9a6a087ac205b0f8daec3523362e47bcc1cf88eb8f035bfebd0552a7e1c2c10b84ff6cf2f5017\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001945559081062852\",\n                            \"voting-power-unnormalized\": \"0.006079872128321413\"\n                        },\n                        {\n                            \"bls-public-key\": \"af849f3cccfa128af63a02b77cf8c8c9f29ea3071f27fa7f3babaa0059e335dfd7ddc7308d34d6d7972e053a51672288\",\n                            \"earning-account\": \"one1jv74fdltq84ugryh85tdf4l66eg9l9wfwtytmj\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"b8a6d147e05adc2b642f4e4fefeb3575bafe5172818c8e7f2f19f59434a3a01b24269a1630fb12b309dd6d5dc0a28d01\",\n                            \"earning-account\": \"one10vn0ww3w0m92rtpkuz8u2v8cgp462h0xufj9dq\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"3c524d0860381396ceeede803f59278e7d961bf9000a0a29460cd4f5cff4d35f8b8b8adf88c84a92edefb935d4b0f780\",\n                            \"earning-account\": \"one1jvmnrl8w5jspm6na9cqe6hjzryw4t75j2fgkds\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"02760cadc6ef3d3c1f8b66adbe182ebc252b451178efc168e856870311c8a7005c7060d28ea72c6c7adfab606989f413\",\n                            \"earning-account\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                            \"effective-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002268126644615756\",\n                            \"voting-power-unnormalized\": \"0.007087895764424236\"\n                        },\n                        {\n                            \"bls-public-key\": \"ad53fbe4f397ec9536d2b859bcb4e728f5ad6df3a7cba92f7d611c6bf894b0a89adfc8aaf1fa9694a0719782c5fdbe0f\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"4d56f8d3f0e254b61f1fd0987f93e0bd66850f37bcdb6fd90d812d3ae0f44c4272356a42e7af289f8497096dddb4518f\",\n                            \"earning-account\": \"one1aagrkq9vg49jm5xx22fvm4leg0lt48qeupexvu\",\n                            \"effective-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423720827689076190466666.666666666666666666\",\n                            \"voting-power-%\": \"0.001871688294806496\",\n                            \"voting-power-unnormalized\": \"0.005849025921270300\"\n                        },\n                        {\n                            \"bls-public-key\": \"727560b71d3913af37761f21905eeaae5e789e4ba6eea5343b84727aa125e8730486ad4cda9d162d2595edff55593297\",\n                            \"earning-account\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                            \"effective-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5422052889653688888833333.333333333333333333\",\n                            \"voting-power-%\": \"0.001871112701003556\",\n                            \"voting-power-unnormalized\": \"0.005847227190636111\"\n                        },\n                        {\n                            \"bls-public-key\": \"70ea1ba2963116dd3e8c30795a5cca98c7271cc1e39bc3fb074cc4419a83b8d56b8ac3734e3252af35b97d84a68a1a03\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001841622136213431\",\n                            \"voting-power-unnormalized\": \"0.005755069175666973\"\n                        },\n                        {\n                            \"bls-public-key\": \"62b08e5b27033432965a81667acccc127b9e709d243299ac0d961edf7f0f90055c43c9c7ae55ee830d782cf32f711207\",\n                            \"earning-account\": \"one1nef0c8kgy30delcckf87jaegdp7s7ntrknvajj\",\n                            \"effective-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5336596037187211935825507.840000000000000000\",\n                            \"voting-power-%\": \"0.001841622136213431\",\n                            \"voting-power-unnormalized\": \"0.005755069175666973\"\n                        },\n                        {\n                            \"bls-public-key\": \"6b4519c16b2a410fe6831c70d82ac0d9c8dab4d480913c24b30bc3b14e6e9c98063e8544f0b707747731f2e3e39f6e80\",\n                            \"earning-account\": \"one16f4t2d8ur45gksnpj8869lle4a0xnhkfx0r3va\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"0d983a3e3a490412635fa110b577e63909a8b8d6c7b9714d4855373c19f1c96aa8291b911b0ccbee102ce329c92a0d0f\",\n                            \"earning-account\": \"one1kd2tq5rsywz6x28g7v9jaa85e67hgu2nr9lte6\",\n                            \"effective-stake\": \"6163501886082581250000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6163501886082581250000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002126981587308914\",\n                            \"voting-power-unnormalized\": \"0.006646817460340357\"\n                        },\n                        {\n                            \"bls-public-key\": \"c1e5df086ad98ada37ca3075125f91aac090ef13487551442d3692c326c6d85351d86f9953171bebe8d562142c5f6f17\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001934698448225128\",\n                            \"voting-power-unnormalized\": \"0.006045932650703524\"\n                        },\n                        {\n                            \"bls-public-key\": \"59802bbf83b191bac69577dd8e85eed62b195702c41401499fe5a24025a45855b60108432858c8a79a9c243ffb36a887\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"0fbce1adfb35da5d812f795f5acbfff10651309727271cf68cf6f8a21b36521dbac758ac874f7d5e3a01b7dcd41efb17\",\n                            \"earning-account\": \"one13jewk8w7jah3r9jfahh8rlzpr5r6valascd0mn\",\n                            \"effective-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5363291688893008534073404.705882352941176470\",\n                            \"voting-power-%\": \"0.001850834619747777\",\n                            \"voting-power-unnormalized\": \"0.005783858186711802\"\n                        },\n                        {\n                            \"bls-public-key\": \"f1ae282031413945047e6b52361b542ca1c565b6909bc40f4b924ea6ee7e77afbfb755faaf35f40dfe0ea649a926ac17\",\n                            \"earning-account\": \"one1qk7mp94ydftmq4ag8xn6y80876vc28q7s9kpp7\",\n                            \"effective-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6187750483809675101005555.555555555555555555\",\n                            \"voting-power-%\": \"0.002135349609552900\",\n                            \"voting-power-unnormalized\": \"0.006672967529852813\"\n                        },\n                        {\n                            \"bls-public-key\": \"fa39249e9fdc2c7d2f05134ae3767ad2422b6796b56c0e1e1b64a170d5ffa90778736a403732c37e701cc6306d4a0e97\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5495388933221700000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5495388933221700000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896420459034337\",\n                            \"voting-power-unnormalized\": \"0.005926313934482304\"\n                        },\n                        {\n                            \"bls-public-key\": \"d265a1f25935f77afeec19f8faa08700229ef4cdd274bdcc4758f0ce24651429c506b09c9d5642fcab0ed9bd9e8fa301\",\n                            \"earning-account\": \"one1qjjdk587lr6lj7jkc4h8t9fkn52jc3w0jf2uat\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6fdfc981f2ff662c933948ca93d21cc0bbc1fed007817771c6f4ac55d717f4e7611637fb4e4b71c8f5e5045c2ce2b417\",\n                            \"earning-account\": \"one1dhmp9kw7te504rljkm3v9ez70smh94t8j8qvjk\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bbd0666e619c0c3f10f44619a8f4a872e48b13cda499b8c8750a05c5dd714e7e49cf852055fd7e0a4910f9ac24964e83\",\n                            \"earning-account\": \"one18c3ejxx46429qf62plep0luryf554ye7sg82g0\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7426022077632278790909090.909090909090909090\",\n                            \"voting-power-%\": \"0.002305689752340925\",\n                            \"voting-power-unnormalized\": \"0.007205280476065392\"\n                        },\n                        {\n                            \"bls-public-key\": \"28ae521c601e7c2249ec206ac1d5aceadc5c79683b0fd96c21f2fc6d23f074c56e683744ff604093aad169ab953db817\",\n                            \"earning-account\": \"one1nswvtja66psr5kkdcqanc57mju0aqhguu5t6v4\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6866156087766666666666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002305689752340925\",\n                            \"voting-power-unnormalized\": \"0.007205280476065392\"\n                        },\n                        {\n                            \"bls-public-key\": \"0f0bd671199fb1b2ad42647cab032cb6edfd77c65a042fb8165aa2a31336373a514e8846b521b2ccf4ac3b9802341e0f\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001934698448225128\",\n                            \"voting-power-unnormalized\": \"0.006045932650703524\"\n                        },\n                        {\n                            \"bls-public-key\": \"a80cdcf67bb376bace4d031d86d80c99c5eaa280438c3af70cbb0d3bbb7dc7bf3438a9ecf028bdc6692b7f7ba89ec503\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001934698448225128\",\n                            \"voting-power-unnormalized\": \"0.006045932650703524\"\n                        },\n                        {\n                            \"bls-public-key\": \"848405cb72b1a5268887ee61f3fee5c68ec579657a9ea210888d584091b4efeee4e87f4b8d87f12811e8d4edbf8e8109\",\n                            \"earning-account\": \"one1uq894ksyuyy6s3tlshxuyjxv8t9ses9h269yfy\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"89db7c6abb1329773ac852f226d1bbaba0bb4ff675819f0017e8bd6b1075153ffa0621895e349c636d5c662e26050097\",\n                            \"earning-account\": \"one1upv5r5y3n5zce7a3wdj4z7pqzussqtdm35rcl5\",\n                            \"effective-stake\": \"6681356915390451785714285.714285714285714286\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"7662034502275747025875000.000000000000000000\",\n                            \"voting-power-%\": \"0.002305689752340925\",\n                            \"voting-power-unnormalized\": \"0.007205280476065392\"\n                        },\n                        {\n                            \"bls-public-key\": \"7961fd0c5713f9db3c6d8e8798673a2012df3d9ae24e868b88a8b2dbe7efae99e908a2445089b2b4909aaa62533aa513\",\n                            \"earning-account\": \"one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6\",\n                            \"effective-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6439107515175628478411111.111111111111111111\",\n                            \"voting-power-%\": \"0.002222091170995955\",\n                            \"voting-power-unnormalized\": \"0.006944034909362358\"\n                        },\n                        {\n                            \"bls-public-key\": \"cb6a52fd791c3afb7a0243fa1b5388ce451707ecf94ef7262905929db69588d68ad027c8736d6a868195ab740a459c8f\",\n                            \"earning-account\": \"one1leh5rmuclw5u68gw07d86kqxjd69zuny3h23c3\",\n                            \"effective-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5434116293911319047611111.111111111111111111\",\n                            \"voting-power-%\": \"0.001875275697821028\",\n                            \"voting-power-unnormalized\": \"0.005860236555690711\"\n                        },\n                        {\n                            \"bls-public-key\": \"7e2ac7bea191b33fd9efe9326e727c4a0c357cc7e0019a41085cc5cf2d01aae6c2ef98746185aa99ee2837d2d079638f\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001871447679130417\",\n                            \"voting-power-unnormalized\": \"0.005848273997282554\"\n                        },\n                        {\n                            \"bls-public-key\": \"324135b2ca130b5076d2a4a8e9eefa8a0e5b9edf053e4d91dd09daa37a53169a5d82b4dcb228f8f864f38dd533872118\",\n                            \"earning-account\": \"one1rzjmz262das9t9kd0xluxlgmv86n4qw07y258e\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"290746460c1101eec00d8d51138309e7767edab00cee8fd6b9a7d5389e77331ec139ef1a57ba79e704db4f60e8c22307\",\n                            \"earning-account\": \"one129gp9e7ghsyecxevp4che033dmk0sew7swvk66\",\n                            \"effective-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6300991533586425000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.002174428307386441\",\n                            \"voting-power-unnormalized\": \"0.006795088460582628\"\n                        },\n                        {\n                            \"bls-public-key\": \"847ba7e5422187c2c0e594efa31840d117641d9a156ffc076d9194ab71f7ce95b59f2c00a822312da60f39f2d6437583\",\n                            \"earning-account\": \"one1y7fs65ul4zc33d2502ql6nxs7r7jj4grs5x3y9\",\n                            \"effective-stake\": \"5495388933221700000000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5495388933221700000000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001896420459034337\",\n                            \"voting-power-unnormalized\": \"0.005926313934482304\"\n                        },\n                        {\n                            \"bls-public-key\": \"f846837dfb601eaf18ee7760e5bc1360663cdbef04f6e713bcc5aacede14afa51fd55793c603f132a7c652ecbf76d707\",\n                            \"earning-account\": \"one1mxjrugqety8t6v23m3et0j4zfussf4v8ktycur\",\n                            \"effective-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5463994415780824375091666.666666666666666666\",\n                            \"voting-power-%\": \"0.001885586429650819\",\n                            \"voting-power-unnormalized\": \"0.005892457592658808\"\n                        },\n                        {\n                            \"bls-public-key\": \"a60da09df9a6aba6754d2a2541ee41274d00e991ef1b14d7d6d889227a5a437d0b9f201f155e0e1ed535770b1f8f2a83\",\n                            \"earning-account\": \"one18hum2avunkz3u448lftwmk7wr88qswdlfvvrdm\",\n                            \"effective-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5423023578976542813148387.096774193548387096\",\n                            \"voting-power-%\": \"0.001871447679130417\",\n                            \"voting-power-unnormalized\": \"0.005848273997282554\"\n                        },\n                        {\n                            \"bls-public-key\": \"b03e54fd1267d5b94ef63d755cd928517d3cf4719837014c37d120a7de2c5fbd6d87f9387e591810a35960e4963d7a83\",\n                            \"earning-account\": \"one1ldthk5zyrea6w60rptcfyzlftd8fsn9fhkeps7\",\n                            \"effective-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5606309714097562500000000.000000000000000000\",\n                            \"voting-power-%\": \"0.001934698448225128\",\n                            \"voting-power-unnormalized\": \"0.006045932650703524\"\n                        },\n                        {\n                            \"bls-public-key\": \"cb18edb21369848307299d5903e70c4a505a5efd55e056e6ff9d8ee45ad921da84ca808c544da8126a8ae3951ef9ad0d\",\n                            \"earning-account\": \"one1rwgsagmzt7pn6v3p9sqkss4whvjr8humsw8nxl\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"6ea1f8a48bf543b3f00cb326369ea00cc64bfa09e6c5327733abe1168c318cb2638ba06125be408dfc2e851f72c91808\",\n                            \"earning-account\": \"one1esntk8jd4srs0ekxfdvjzt8hna8p53hsla2t7x\",\n                            \"is-harmony-slot\": true,\n                            \"voting-power-%\": \"0.007555555555555556\",\n                            \"voting-power-unnormalized\": \"0.011111111111111112\"\n                        },\n                        {\n                            \"bls-public-key\": \"bd579128ecf1606ec4700e31f1d6f88dbcc45506dd9e94461c8dbd102b44c5dc69ab762c7ec6d5332dbf24658bb4418f\",\n                            \"earning-account\": \"one1jjtuhqcnsgm0mcegvk55dk7ef0peuk2e7fa2z6\",\n                            \"effective-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"6572507696058877777666666.666666666666666666\",\n                            \"voting-power-%\": \"0.002268126644615756\",\n                            \"voting-power-unnormalized\": \"0.007087895764424236\"\n                        },\n                        {\n                            \"bls-public-key\": \"87724e5c55dc0b0494657d46ce42f934863481aeccb2ee5dff9216b37a0bdf4e92532e20c6b6559f77a4f62a5c4a9797\",\n                            \"earning-account\": \"one1xv62dz2gmshaqac4gn87qkh44g80mcpquvn2tk\",\n                            \"effective-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5809875578600392857142857.142857142857142857\",\n                            \"voting-power-%\": \"0.002004947610731240\",\n                            \"voting-power-unnormalized\": \"0.006265461283535124\"\n                        },\n                        {\n                            \"bls-public-key\": \"6905e31b0a8c2b5890f0af8dd6f81931e893120f0db983ce1406fa742161db12f9e28b7095fe43aca3c6a6d9b24c8897\",\n                            \"earning-account\": \"one18ky073zdrrmme3fs7h63wyzguuj6a3uukuc3gk\",\n                            \"effective-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"is-harmony-slot\": false,\n                            \"raw-stake\": \"5637781322210568354011772.956521739130434782\",\n                            \"voting-power-%\": \"0.001945559081062852\",\n                            \"voting-power-unnormalized\": \"0.006079872128321413\"\n                        }\n                    ],\n                    \"count\": 250,\n                    \"external-validator-slot-count\": 160,\n                    \"hmy-voting-power\": \"0.680000000000000040\",\n                    \"policy\": \"SuperMajorityStake\",\n                    \"staked-voting-power\": \"0.319999999999999960\",\n                    \"total-effective-stake\": \"927286167080474189031934129.000422114134635640\",\n                    \"total-raw-stake\": \"934064644254774962318085211.251504365216886716\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"8eef2fc4-92db-4610-a9cd-f7b75cfbd080"}],"id":"56c5f7a9-fe71-438b-8a0d-70cce4ac4779","_postman_id":"56c5f7a9-fe71-438b-8a0d-70cce4ac4779","description":""}],"id":"cb814338-a4b3-4603-a98f-f569dd4ff1e2","description":"<p>All staking related RPCs</p>\n","_postman_id":"cb814338-a4b3-4603-a98f-f569dd4ff1e2"},{"name":"Transaction","item":[{"name":"Cross Shard","item":[{"name":"hmyv2_getCXReceiptByHash","event":[{"listen":"test","script":{"id":"527d616a-1a73-4340-9c6d-5f03aad48e1d","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"3d6ad045-800d-4021-aeb5-30a0fbf724fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCXReceiptByHash\",\n    \"params\": [\n        \"0xd324cc57280411dfac5a7ec2987d0b83e25e27a3d5bb5d3531262387331d692b\"\n    ]\n}"},"url":"https://rpc.s1.t.hmny.io","description":"<h4 id=\"note\">Note</h4>\n<p>Query the CX receipt hash on the receiving shard endpoint</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> : Cross shard receipt hash</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Object</code></p>\n<ul>\n<li><code>blockHash</code> - <code>String</code> : Block hash</li>\n<li><code>blockNumber</code> - <code>Number</code> : Block number</li>\n<li><code>hash</code> - <code>String</code> : Transaction hash</li>\n<li><code>from</code> - <code>String</code> : Sender wallet address</li>\n<li><code>to</code> - <code>String</code> : Receiver wallet address</li>\n<li><code>shardID</code> - <code>Number</code> : From shard</li>\n<li><code>toShardID</code> - <code>Number</code> : To shard</li>\n<li><code>value</code> - <code>Number</code> : Amount transferred in Atto</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s1","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"9467d79a-9661-4a04-b43a-dd450346068a","name":"hmyv2_getCXReceiptByHash","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCXReceiptByHash\",\n    \"params\": [\n        \"0xd324cc57280411dfac5a7ec2987d0b83e25e27a3d5bb5d3531262387331d692b\"\n    ]\n}"},"url":"https://rpc.s1.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:59:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"258"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"blockHash\": \"0xff86afd99d049d0f754e821df97c7cb0c6017c14953bbb34595583e48d22fd57\",\n        \"blockNumber\": 3666533,\n        \"from\": \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n        \"hash\": \"0xd324cc57280411dfac5a7ec2987d0b83e25e27a3d5bb5d3531262387331d692b\",\n        \"shardID\": 0,\n        \"to\": \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n        \"toShardID\": 1,\n        \"value\": 1000000000000000000\n    }\n}"}],"_postman_id":"3d6ad045-800d-4021-aeb5-30a0fbf724fe"},{"name":"hmyv2_getPendingCXReceipts","event":[{"listen":"test","script":{"id":"558b4a78-eee1-4a54-901b-d749a13748f8","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"fe60070d-97b4-458d-9365-490b44c18851","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getPendingCXReceipts\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of Object`</p>\n<ul>\n<li><code>receipts</code> - <code>Array</code> of <code>Object</code><ul>\n<li><code>txHash</code> - <code>String</code> : Transaction hash</li>\n<li><code>from</code> - <code>String</code> : Sender wallet address</li>\n<li><code>to</code> - <code>String</code> : Receiver wallet address</li>\n<li><code>shardID</code> - <code>Number</code> : From shard</li>\n<li><code>toShardID</code> - <code>Number</code> : To shard</li>\n<li><code>amount</code> - <code>Number</code> : Amount transferred in Atto</li>\n</ul>\n</li>\n<li><code>merkleProof</code> - <code>Object</code><ul>\n<li><code>blockNum</code> - <code>Number</code> : Block number</li>\n<li><code>blockHash</code> - <code>String</code> : Block hash</li>\n<li><code>shardID</code> - <code>Number</code> : Shard ID of originating block</li>\n<li><code>receiptHash</code> - <code>String</code> : Transaction receipt hash</li>\n<li><code>shardIDs</code> - <code>Array</code> of <code>Number</code> : To shard</li>\n<li><code>shardHashes</code> - <code>Array</code> of <code>String</code> :</li>\n</ul>\n</li>\n<li><code>header</code> - <code>Object</code><ul>\n<li><code>shard-id</code> - <code>Number</code> : Shard ID</li>\n<li><code>block-header-hash</code> - <code>String</code> : Block header hash</li>\n<li><code>block-number</code> - <code>Number</code> : Block number</li>\n<li><code>view-id</code> - <code>Number</code> : View ID</li>\n<li><code>epoch</code> - <code>Number</code> : Epoch number</li>\n</ul>\n</li>\n<li><code>commitSig</code> - <code>String</code> : Hex representation of aggregated signature</li>\n<li><code>commigBitmap</code> - <code>String</code> : Hex representation of aggregated signature bitmap</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"30558787-5c0c-448a-82ca-e516325cfdcd","name":"hmyv2_getPendingCXReceipts","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getPendingCXReceipts\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 12:59:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"61"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": []\n}"}],"_postman_id":"fe60070d-97b4-458d-9365-490b44c18851"},{"name":"hmyv2_resendCx","event":[{"listen":"test","script":{"id":"ef3ef127-84f4-4a65-a42b-2e4d1339afc8","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"c658b56b-d20b-480d-b71a-b0bc505d2164","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_resendCx\",\n    \"params\": [\n        \"0xd324cc57280411dfac5a7ec2987d0b83e25e27a3d5bb5d3531262387331d692b\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"note\">Note</h4>\n<p>Use this API call to resend the cross shard receipt to the receiving shard to re-process if the transaction did not pay out </p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> : Cross shard receipt hash</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Bool</code> : If cross shard receipt was successfully resent or not</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"d6b1267b-2a8a-41ef-9704-0dd7d629a08c","name":"hmyv2_resendCx","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_resendCx\",\n    \"params\": [\n        \"0xd324cc57280411dfac5a7ec2987d0b83e25e27a3d5bb5d3531262387331d692b\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:00:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"63"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": true\n}"}],"_postman_id":"c658b56b-d20b-480d-b71a-b0bc505d2164"}],"id":"8d1e9337-a181-4b4e-83cc-ff47307136f4","event":[{"listen":"prerequest","script":{"id":"7589f782-1bac-4d1e-9849-191f8e4f93b7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"da95f108-525f-4fd2-8b23-e0aaf1c59f8a","type":"text/javascript","exec":[""]}}],"_postman_id":"8d1e9337-a181-4b4e-83cc-ff47307136f4","description":""},{"name":"Transaction Pool","item":[{"name":"hmyv2_getPoolStats","event":[{"listen":"test","script":{"id":"e0c09a3a-13a7-4714-a8e0-dff8c188e1ef","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"7c2b9395-8f5e-4eb5-a687-2f1be683d83e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getPoolStats\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Object</code></p>\n<ul>\n<li><code>executable-count</code> - <code>String</code> : Staking transaction hash</li>\n<li><code>non-executable-count</code> - <code>String</code> : Type of staking transaction</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"4de07115-4f76-4a0a-a64e-bd3990206673","name":"hmyv2_getPoolStats","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getPoolStats\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:00:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"87"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"executable-count\": 1,\n        \"non-executable-count\": 0\n    }\n}"}],"_postman_id":"7c2b9395-8f5e-4eb5-a687-2f1be683d83e"},{"name":"hmyv2_pendingStakingTransactions","event":[{"listen":"test","script":{"id":"a16821a0-ffc4-456d-a1d0-7c7158dfe244","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"de0235e4-f4c9-4a69-b6d2-b77dc1ba7b12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_pendingStakingTransactions\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of <code>Object</code> : List of staking transactions in the transaction pool</p>\n<p>See <code>hmyv2_getStakingTransactionByHash</code> for staking transaction object structure.</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"67d53ffb-bdfd-45da-a21f-1e5cd7b6f4b2","name":"hmyv2_pendingStakingTransactions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_pendingStakingTransactions\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:00:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"419"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"blockHash\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n            \"blockNumber\": null,\n            \"from\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n            \"gas\": 25000,\n            \"gasPrice\": 1000000000,\n            \"hash\": \"0x6e970a86621b5820aa4573dfd2b908d47bce932b227226553eec19b7c5ecf543\",\n            \"msg\": {\n                \"amount\": 1.72798e+21,\n                \"delegatorAddress\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n                \"validatorAddress\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n            },\n            \"nonce\": 100,\n            \"r\": \"0xdd9d2c6d80952d2f9bdd99a71d8151963defc0ee00b75fa7f2d1cdb6d58b2c41\",\n            \"s\": \"0x59036cb846444f21f834bf8a76f6a3aa11315000221151e9206074a20eee2bf5\",\n            \"timestamp\": 0,\n            \"transactionIndex\": 0,\n            \"type\": \"Delegate\",\n            \"v\": \"0x25\"\n        }\n    ]\n}"}],"_postman_id":"de0235e4-f4c9-4a69-b6d2-b77dc1ba7b12"},{"name":"hmyv2_pendingTransactions","event":[{"listen":"test","script":{"id":"ab3cae9d-dad4-4ed6-b1f9-2506987e70a5","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"de6c4a12-fa42-44e8-972f-801bfde1dd18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_pendingTransactions\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of <code>Object</code> : List of regular &amp; smart contract transactions in the transaction pool</p>\n<p>See <code>hmyv2_getTransactionByHash</code> for transaction object definition</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"d9ed1918-3f9e-468e-9d01-ed1c1a9e23e2","name":"hmyv2_pendingTransactions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_pendingTransactions\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:02:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"397"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"blockHash\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n            \"blockNumber\": null,\n            \"from\": \"one1ntgnnl7f7c48cg2hvm09jqgjgspvhef3wpr66r\",\n            \"gas\": 21000,\n            \"gasPrice\": 1000000000,\n            \"hash\": \"0xb4e039fc077f03977f6059a4b790bf461a91ce2f15a8524c2117843f4685059e\",\n            \"input\": \"0x\",\n            \"nonce\": 69,\n            \"r\": \"0xf2875ab60f850751f2af540341d5518b3c439877975c4608cbf3d314dda9dbe5\",\n            \"s\": \"0x292a6e8102f114231d50e698e81ce0ce0055671c01271cad2c19064b1a226f54\",\n            \"shardID\": 0,\n            \"timestamp\": 0,\n            \"to\": \"one13376ucy2338ku20qryeyyd5g6ejhaf00vlnd8q\",\n            \"toShardID\": 0,\n            \"transactionIndex\": 0,\n            \"v\": \"0x26\",\n            \"value\": 1100000000000000000\n        }\n    ]\n}"}],"_postman_id":"de6c4a12-fa42-44e8-972f-801bfde1dd18"}],"id":"b8af9b00-3676-45ad-9dd8-3f40108a20f4","_postman_id":"b8af9b00-3676-45ad-9dd8-3f40108a20f4","description":""},{"name":"Staking","item":[{"name":"hmyv2_getCurrentStakingErrorSink","event":[{"listen":"test","script":{"id":"10da312b-c935-474f-aa53-2f8de1dc08fc","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"bdd00e0f-2ba0-480e-b996-2ef13f10d75a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCurrentStakingErrorSink\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of <code>Object</code></p>\n<ul>\n<li><code>tx-hash-id</code> - <code>String</code> : Staking transaction hash</li>\n<li><code>directive-kind</code> - <code>String</code> : Type of staking transaction</li>\n<li><code>time-at-rejection</code> - <code>Number</code> : Unix time when the staking transaction was rejected from the pool</li>\n<li><code>error-message</code> - <code>String</code> : Reason for staking transaction rejection</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"20eb3f1c-ee08-4297-b949-1e0500561ea3","name":"hmyv2_getCurrentStakingErrorSink","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCurrentStakingErrorSink\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:04:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1542"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"directive-kind\": \"CollectRewards\",\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603474319,\n            \"tx-hash-id\": \"0xd0340df5d875e56a735a324773ae7971e4431c0f7b1f30480af0bf4539775c2e\"\n        },\n        {\n            \"directive-kind\": \"Delegate\",\n            \"error-message\": \"minimum delegation amount for a delegator has to be greater than or equal to 1000 ONE\",\n            \"time-at-rejection\": 1603482030,\n            \"tx-hash-id\": \"0xe0df7ddd2d62be5c3f5e90c00e17c58148f3bd315f8cf2472c977487b3fef2b1\"\n        },\n        {\n            \"directive-kind\": \"EditValidator\",\n            \"error-message\": \"slot key to add already exists\",\n            \"time-at-rejection\": 1603482667,\n            \"tx-hash-id\": \"0x9a511a75be1e9c7c90d645952efef57d92b97998a051e4bab248ca7c6772e6ba\"\n        },\n        {\n            \"directive-kind\": \"Delegate\",\n            \"error-message\": \"minimum delegation amount for a delegator has to be greater than or equal to 1000 ONE\",\n            \"time-at-rejection\": 1603483236,\n            \"tx-hash-id\": \"0x3be8c036f1bb722ddda904feb1ce4c5d690b48e290ed92c15d9b9af7946c426f\"\n        },\n        {\n            \"directive-kind\": \"Delegate\",\n            \"error-message\": \"totalRedelegatable: 0, balance: 0; trying to stake 13500000000000000000000: insufficient balance to stake\",\n            \"time-at-rejection\": 1603497971,\n            \"tx-hash-id\": \"0xbc5b3e1b3748aaff92206820abff93dd240206545cf778439a38e44c9b0c407b\"\n        },\n        {\n            \"directive-kind\": \"Delegate\",\n            \"error-message\": \"transaction sender is one1qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqquzw7vz: invalid sender\",\n            \"time-at-rejection\": 1603520568,\n            \"tx-hash-id\": \"0xe3486092b175f1e1f2375c877bdd536c34d7a83bc3ae1dc301d6d4d71320389b\"\n        },\n        {\n            \"directive-kind\": \"EditValidator\",\n            \"error-message\": \"need at least one slot key\",\n            \"time-at-rejection\": 1603540116,\n            \"tx-hash-id\": \"0xbd5c8cde842a62a9e7fd01ccb06d6d83c512f78383eeba485fff4e79aa63109b\"\n        },\n        {\n            \"directive-kind\": \"CollectRewards\",\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603559557,\n            \"tx-hash-id\": \"0xe87b1c22aa2d02c5d3e3f93f039721de4964eac383288805d285bddcb682ad99\"\n        },\n        {\n            \"directive-kind\": \"Delegate\",\n            \"error-message\": \"minimum delegation amount for a delegator has to be greater than or equal to 1000 ONE\",\n            \"time-at-rejection\": 1603564449,\n            \"tx-hash-id\": \"0x0c5a55c7b740276bae47827904a7ce2d4b1cdb14ebbfd0e697131ee1eaa4c57a\"\n        },\n        {\n            \"directive-kind\": \"Delegate\",\n            \"error-message\": \"minimum delegation amount for a delegator has to be greater than or equal to 1000 ONE\",\n            \"time-at-rejection\": 1603566034,\n            \"tx-hash-id\": \"0xcb1747f2fc11be0078b0f9c9b2a9ceca20f6669a4c0ed34b8f9688348c66f987\"\n        },\n        {\n            \"directive-kind\": \"CollectRewards\",\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603580736,\n            \"tx-hash-id\": \"0x48280e71406d84f0903fe40486fd9dbc67ffbb9c0ca0d5bba4b4ca5c0d176291\"\n        },\n        {\n            \"directive-kind\": \"CollectRewards\",\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603581899,\n            \"tx-hash-id\": \"0x38d1cc991ceb69008bbba3a2cca2fda163a4ee9f26fe4f3d69661577b45482d0\"\n        },\n        {\n            \"directive-kind\": \"Undelegate\",\n            \"error-message\": \"insufficient balance to undelegate\",\n            \"time-at-rejection\": 1603589993,\n            \"tx-hash-id\": \"0xbbdd453e7f9f56b11035cf4ed754d50c723e09ef077e14feeae49a06c68dc5c9\"\n        },\n        {\n            \"directive-kind\": \"Delegate\",\n            \"error-message\": \"totalRedelegatable: 0, balance: 581701210697327316953; trying to stake 71535628442000000000000: insufficient balance to stake\",\n            \"time-at-rejection\": 1603592844,\n            \"tx-hash-id\": \"0xb76fcba652df147f5db6064d9efa2910c4838980c79f6ffa9eae83c1dc976bb1\"\n        },\n        {\n            \"directive-kind\": \"Delegate\",\n            \"error-message\": \"totalRedelegatable: 0, balance: 581701210697327316953; trying to stake 71535628442000000000000: insufficient balance to stake\",\n            \"time-at-rejection\": 1603592914,\n            \"tx-hash-id\": \"0x62f01b748c45c0fbbaebc415e13455ba3ddc3e25847595129e7d046f66be2f56\"\n        },\n        {\n            \"directive-kind\": \"Delegate\",\n            \"error-message\": \"totalRedelegatable: 4762660000000000000000000, balance: 14000080276118856465528; trying to stake 4790660000000000000000000: insufficient balance to stake\",\n            \"time-at-rejection\": 1603620173,\n            \"tx-hash-id\": \"0xadd251c63c79a15a4ac2a3d1f7ff488a17257b3102917ed2df470a84e16ce44b\"\n        },\n        {\n            \"directive-kind\": \"Undelegate\",\n            \"error-message\": \"insufficient balance to undelegate\",\n            \"time-at-rejection\": 1603643882,\n            \"tx-hash-id\": \"0x45dd1bfb53d293de4aa433933c0b1b19f8b336ad11c6844014f1a7dc2c35ac8c\"\n        },\n        {\n            \"directive-kind\": \"Delegate\",\n            \"error-message\": \"minimum delegation amount for a delegator has to be greater than or equal to 1000 ONE\",\n            \"time-at-rejection\": 1603646599,\n            \"tx-hash-id\": \"0xd803909b5e592bab89dacc254454861a832b02c9a749179a04e7c3d05e4e6f0d\"\n        },\n        {\n            \"directive-kind\": \"CollectRewards\",\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603652887,\n            \"tx-hash-id\": \"0xd9acb1375809130116ad9b67c4e5a17c5ad2b4b35bcfb5bef11171e4d30fb0af\"\n        },\n        {\n            \"directive-kind\": \"Undelegate\",\n            \"error-message\": \"insufficient balance to undelegate\",\n            \"time-at-rejection\": 1603684006,\n            \"tx-hash-id\": \"0x1b3b93d0a0ed2fd6f6a0fb14eeb82077fcd5da69acff00f6f37bc9a61a85bd63\"\n        },\n        {\n            \"directive-kind\": \"CollectRewards\",\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603703497,\n            \"tx-hash-id\": \"0x913482e68be3432ab2f30a0222dd2502a65ab9c7701ce67f31b382338ad5564f\"\n        },\n        {\n            \"directive-kind\": \"CollectRewards\",\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603718864,\n            \"tx-hash-id\": \"0xd4b3839009fbdb1b667499aa088de63f7896b4c0c912ea8141beecd4d5d4c4a5\"\n        },\n        {\n            \"directive-kind\": \"Delegate\",\n            \"error-message\": \"transaction nonce is 10: nonce too low\",\n            \"time-at-rejection\": 1603761668,\n            \"tx-hash-id\": \"0xeb00684eb2b6eb0df29790e46fe3f1791663c3c1a668f5b0365e33ca18be7790\"\n        }\n    ]\n}"}],"_postman_id":"bdd00e0f-2ba0-480e-b996-2ef13f10d75a"},{"name":"hmyv2_getStakingTransactionByBlockNumberAndIndex","event":[{"listen":"test","script":{"id":"0bf29c27-1987-42c2-ad99-639dfed5e6df","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"fb41d717-1645-4d3e-8071-6ce8e1b65dd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingTransactionByBlockNumberAndIndex\",\n    \"params\": [\n        5601505,\n        0\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li><code>Number</code> : Block number</li>\n<li><code>Number</code> : Staking transaction index</li>\n</ul>\n<h4 id=\"result\">Result</h4>\n<p>See <code>hmyv2_getStakingTransactionByHash</code> for reply structure</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"db60dd9b-44ba-4b52-8d9a-5faf24d59b49","name":"hmyv2_getStakingTransactionByBlockNumberAndIndex","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingTransactionByBlockNumberAndIndex\",\n    \"params\": [\n        5601505,\n        0\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:06:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"455"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"blockHash\": \"0x1e81ce2e75d670e8c523a7a4fd12179638896e4ff496e24f69e2f075f79a28f6\",\n        \"blockNumber\": 5601505,\n        \"from\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n        \"gas\": 25000,\n        \"gasPrice\": 1000000000,\n        \"hash\": \"0x6e970a86621b5820aa4573dfd2b908d47bce932b227226553eec19b7c5ecf543\",\n        \"msg\": {\n            \"amount\": 1.72798e+21,\n            \"delegatorAddress\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n            \"validatorAddress\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n        },\n        \"nonce\": 100,\n        \"r\": \"0xdd9d2c6d80952d2f9bdd99a71d8151963defc0ee00b75fa7f2d1cdb6d58b2c41\",\n        \"s\": \"0x59036cb846444f21f834bf8a76f6a3aa11315000221151e9206074a20eee2bf5\",\n        \"timestamp\": 1603803645,\n        \"transactionIndex\": 0,\n        \"type\": \"Delegate\",\n        \"v\": \"0x25\"\n    }\n}"}],"_postman_id":"fb41d717-1645-4d3e-8071-6ce8e1b65dd3"},{"name":"hmyv2_getStakingTransactionByBlockHashAndIndex","event":[{"listen":"test","script":{"id":"3526e75d-86f4-4921-b3fe-bb69109aab0d","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"ba96cf61-61fe-464a-aa06-2803bb4b358f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingTransactionByBlockHashAndIndex\",\n    \"params\": [\n        \"0x77ef489dce6deee69374aa878a67a9cf1f653ec4f7b697bbeed2931669f6be77\",\n        0\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li><code>String</code> : Block hash</li>\n<li><code>Number</code> : Staking transaction index</li>\n</ul>\n<h4 id=\"result\">Result</h4>\n<p>See <code>hmyv2_getStakingTransactionByHash</code> for reply structure</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"64ad142a-adc8-4da0-8aca-bff065d79f43","name":"hmyv2_getStakingTransactionByBlockHashAndIndex","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingTransactionByBlockHashAndIndex\",\n    \"params\": [\n        \"0x1e81ce2e75d670e8c523a7a4fd12179638896e4ff496e24f69e2f075f79a28f6\",\n        0\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:07:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"455"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"blockHash\": \"0x1e81ce2e75d670e8c523a7a4fd12179638896e4ff496e24f69e2f075f79a28f6\",\n        \"blockNumber\": 5601505,\n        \"from\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n        \"gas\": 25000,\n        \"gasPrice\": 1000000000,\n        \"hash\": \"0x6e970a86621b5820aa4573dfd2b908d47bce932b227226553eec19b7c5ecf543\",\n        \"msg\": {\n            \"amount\": 1.72798e+21,\n            \"delegatorAddress\": \"one1j4cux8g6gcngh8cs2g7pten2qlrm8nkp87ey8l\",\n            \"validatorAddress\": \"one1x8pupl36puw7cczjx6a93rfhh48rzldl0qxvk8\"\n        },\n        \"nonce\": 100,\n        \"r\": \"0xdd9d2c6d80952d2f9bdd99a71d8151963defc0ee00b75fa7f2d1cdb6d58b2c41\",\n        \"s\": \"0x59036cb846444f21f834bf8a76f6a3aa11315000221151e9206074a20eee2bf5\",\n        \"timestamp\": 1603803645,\n        \"transactionIndex\": 0,\n        \"type\": \"Delegate\",\n        \"v\": \"0x25\"\n    }\n}"}],"_postman_id":"ba96cf61-61fe-464a-aa06-2803bb4b358f"},{"name":"hmyv2_getStakingTransactionByHash","event":[{"listen":"test","script":{"id":"dc1dbd33-e172-4ead-8679-49e41bbeaa50","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"296cb4d0-bce2-48e3-bab9-64c3734edd27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingTransactionByHash\",\n    \"params\": [\n        \"0x097e58ef5e0a59cac1ca8653793659c9bb69599cb032867c035cdc9cd071483e\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> : Staking transaction hash</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Object</code></p>\n<ul>\n<li><code>blockHash</code> - <code>String</code> : Block hash in which transaction was finalized</li>\n<li><code>blockNumber</code> - <code>Number</code> : Block number in which transaction was finalized</li>\n<li><code>from</code> - <code>String</code> : Sender wallet address</li>\n<li><code>timestamp</code> - <code>Number</code> : Unix time at which transaction was finalized</li>\n<li><code>gas</code> - <code>Number</code> : Gas limit of transaction</li>\n<li><code>gasPrice</code> - <code>Number</code> : Gas price of transaction in Atto</li>\n<li><code>hash</code> - <code>String</code> : Transaction hash</li>\n<li><code>nonce</code> - <code>Number</code> : Wallet nonce of transaction</li>\n<li><code>transactionIndex</code> - <code>Number</code> : Staking transaction index within block</li>\n<li><code>type</code> - <code>String</code> : Type of staking transaction</li>\n<li><code>msg</code> - <code>Object</code> : Staking transaction data, depending on the type of staking transaction</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"cc5d680c-d76f-4ea1-965c-b80bc22e38a1","name":"hmyv2_getStakingTransactionByHash","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingTransactionByHash\",\n    \"params\": [\n        \"0x097e58ef5e0a59cac1ca8653793659c9bb69599cb032867c035cdc9cd071483e\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:07:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"454"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"blockHash\": \"0xd1d6529a4729388933fa72b980aaff7bda6a49083656af6aee6d248bde09fadc\",\n        \"blockNumber\": 3709557,\n        \"from\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n        \"gas\": 24476,\n        \"gasPrice\": 1000000000,\n        \"hash\": \"0x097e58ef5e0a59cac1ca8653793659c9bb69599cb032867c035cdc9cd071483e\",\n        \"msg\": {\n            \"amount\": 1.108e+21,\n            \"delegatorAddress\": \"one10g7kfque6ew2jjfxxa6agkdwk4wlyjuncp6gwz\",\n            \"validatorAddress\": \"one1tc9q6t4sn3gjde00eemkjr2e44jdplhg02r54m\"\n        },\n        \"nonce\": 163,\n        \"r\": \"0x6a476d6e9f03fd90acf3dd61710187d393566d79e10ac253c4180802767e596e\",\n        \"s\": \"0x71229edc6fad1bf02b1e3d2a7de124716495e8c692cf93aee346c894aaf458fb\",\n        \"timestamp\": 1592728263,\n        \"transactionIndex\": 0,\n        \"type\": \"Delegate\",\n        \"v\": \"0x25\"\n    }\n}"}],"_postman_id":"296cb4d0-bce2-48e3-bab9-64c3734edd27"},{"name":"hmyv2_sendRawStakingTransaction","event":[{"listen":"test","script":{"id":"aad365d0-8abd-4737-8f88-30a5b597e283","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"e8c17fe9-e730-4c38-95b3-6f1a5b1b9401","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_sendRawStakingTransaction\",\n    \"params\": [\n        \"SignedStakingTransaction\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> : Hex representation of signed staking transaction</p>\n<h4 id=\"result\">Result</h4>\n<p>If transaction has been added to the pool</p>\n<p><code>String</code> : Staking transaction hash</p>\n<p>If transaction failed to be added to the transaction pool, it will return an error.</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"bcf42971-318f-4e71-af39-07a412def968","name":"hmyv2_sendRawStakingTransaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_sendRawStakingTransaction\",\n    \"params\": [\n        \"0xDEADBEEF\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:07:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"118"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": \"0xDEADBEEF\"\n}"}],"_postman_id":"e8c17fe9-e730-4c38-95b3-6f1a5b1b9401"}],"id":"9486208d-2e75-42bc-b5da-9769d338b403","_postman_id":"9486208d-2e75-42bc-b5da-9769d338b403","description":""},{"name":"Transfer","item":[{"name":"hmyv2_getCurrentTransactionErrorSink","event":[{"listen":"test","script":{"id":"4df11ebb-a101-41bd-9364-b460f93a66b9","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"9aedbc22-6262-44b1-8276-cd8ae19fa600","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCurrentTransactionErrorSink\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of <code>Object</code></p>\n<ul>\n<li><code>tx-hash-id</code> - <code>String</code> : Transaction hash</li>\n<li><code>time-at-rejection</code> - <code>Number</code> : Unix time when the transaction was rejected from the pool</li>\n<li><code>error-message</code> - <code>String</code> : Reason for transaction rejection</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"6cce71a7-4771-4070-8057-1d0feb1ebd8a","name":"hmyv2_getCurrentTransactionErrorSink","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCurrentTransactionErrorSink\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:08:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603474812,\n            \"tx-hash-id\": \"0x11b0dba8f56cef33678b0953ce6a2664ed4fe3d5151194af6df40c7b3d090d88\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603486630,\n            \"tx-hash-id\": \"0x9cbb6153c2f335249ca41a9a170f3c7058fb77657fd01647ba36cc1847c384ac\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 608: nonce too low\",\n            \"time-at-rejection\": 1603498954,\n            \"tx-hash-id\": \"0xee9cf5ac71ba69db690174dab8e0eedaa4bca8d0c94027847d62b102cd6a32ef\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603507934,\n            \"tx-hash-id\": \"0x85a0b917a66d8a341c5d02112735aaa3b39734d4057f3a1fbccb71fb2b01df00\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603512134,\n            \"tx-hash-id\": \"0xe671e6a1827fbe9c909dfcee13d7b92566aa53e60e397f4b2d14787f88a6bf0c\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 774: nonce too low\",\n            \"time-at-rejection\": 1603515383,\n            \"tx-hash-id\": \"0x11fedcf2e35f8c3fe87590f27a5e41a8963469fc163aa91d8534d1560c9da5b5\"\n        },\n        {\n            \"error-message\": \"transaction gas is 21000000000000: exceeds block gas limit\",\n            \"time-at-rejection\": 1603523039,\n            \"tx-hash-id\": \"0x5c322b77641ba15051cc8b67c7e7f4cdcf382be356d63db18439c0fd181bb35f\"\n        },\n        {\n            \"error-message\": \"transaction gas is 21000000000000: exceeds block gas limit\",\n            \"time-at-rejection\": 1603523056,\n            \"tx-hash-id\": \"0x8acb4cf55d0184ac84577a144a12e748ec9a9216519b8c421b92447eba04a5d5\"\n        },\n        {\n            \"error-message\": \"transaction gas is 21000000000000: exceeds block gas limit\",\n            \"time-at-rejection\": 1603523239,\n            \"tx-hash-id\": \"0x53bdcf1b36e9dde6d28917ef1dfb9355a4b44df44a52e8c205bf087cb18ecc1d\"\n        },\n        {\n            \"error-message\": \"transaction gas is 21000000000000: exceeds block gas limit\",\n            \"time-at-rejection\": 1603523272,\n            \"tx-hash-id\": \"0x115b1ebf653844c73705c42e8051126cbde3284176fa43b7c232339e7cfed5b1\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 243: nonce too low\",\n            \"time-at-rejection\": 1603524965,\n            \"tx-hash-id\": \"0x3c1a6dd9f933c1cc3df330da1123017c5e1d51422eddd4d97f8a267518661276\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603538531,\n            \"tx-hash-id\": \"0x4d2e5136428c38359cf236b6d7e0de08fc0940f76f408bdc7f363bc530dc3a93\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603539122,\n            \"tx-hash-id\": \"0xf786e957056faf23e433de52ed6211b01cbaba4bd93536403fa97da6a83125fd\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603539220,\n            \"tx-hash-id\": \"0x49db1dd397de3c8e10800eb499f760adc95791dfa584f12db5b1e16dce1d8f0e\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603543813,\n            \"tx-hash-id\": \"0x7cc8dd0e31dac6feaabd589d6fc5f28cfa63d4e728fdb6da374958359c3d21ac\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603552524,\n            \"tx-hash-id\": \"0x18d72576aa77d573d48b90ffb60c45a6190b9ec72e603a93904aa1d8abc8bd1f\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603556239,\n            \"tx-hash-id\": \"0x0a7f7281fc4580129bcfa111a413532b655e1e6893b05f340727e537dfd30454\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603556516,\n            \"tx-hash-id\": \"0xa1609675fe001803c16b107e0108caf60753a7acdba9b14f26a70878f4e25437\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 202: nonce too low\",\n            \"time-at-rejection\": 1603561217,\n            \"tx-hash-id\": \"0x67c9dc33f271fb893c1866762f2b4b9bfdea0383f705f4f6aaec4354b658f139\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 357: nonce too low\",\n            \"time-at-rejection\": 1603568953,\n            \"tx-hash-id\": \"0x3fcb2494866374b20522d259f06725981fa34c9231aaa6e4327fdaf1c29ea8af\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 46: nonce too low\",\n            \"time-at-rejection\": 1603571093,\n            \"tx-hash-id\": \"0xe69f6c0194348b939c2ea431a81bb0d2a550212d95c917df16a744b4fc6c1114\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 141: nonce too low\",\n            \"time-at-rejection\": 1603575682,\n            \"tx-hash-id\": \"0x3d473e6d7649d3381dbcbd959099ce11623684679a520261343fb94067d63557\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 161: nonce too low\",\n            \"time-at-rejection\": 1603587021,\n            \"tx-hash-id\": \"0xdd5ee682f9f293f1b59ea39185d2cfd3b2d7419a21c44b3289ebeef441f6aa80\"\n        },\n        {\n            \"error-message\": \"existing transaction price was not bumped enough: replacement transaction underpriced\",\n            \"time-at-rejection\": 1603588059,\n            \"tx-hash-id\": \"0x656d4e7891967f3a32a348008afeb8b1b73bd308303b0ed6c80e8dcd161d6624\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603592201,\n            \"tx-hash-id\": \"0xa6883a5acfb4662fe005fb6c4c1422886e7f3ed30d58398a89aeec6ed5023905\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603592230,\n            \"tx-hash-id\": \"0x83702518e870b667237ba96b9175d25e5c4e45475bdf701c69a9060c026cfca3\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 615: nonce too low\",\n            \"time-at-rejection\": 1603600402,\n            \"tx-hash-id\": \"0xfa8926e6773f512b2933737b62d3880dac360bfd0e7de716528ea9bf8d48751a\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 208: nonce too low\",\n            \"time-at-rejection\": 1603605089,\n            \"tx-hash-id\": \"0x9d40a5979efe6a2137942a187c74b9abdd33c5a3f850bc3187a59ebd3d571656\"\n        },\n        {\n            \"error-message\": \"removed transaction for inactive account one1xkfvqj7sfgnrw7c4txsmksng80yrckplhlf4nf\",\n            \"time-at-rejection\": 1603614244,\n            \"tx-hash-id\": \"0x0d62e0708e0b4604776f20150b65809fbef6c34be8171cb45094ee86867d7d7e\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 253: nonce too low\",\n            \"time-at-rejection\": 1603616315,\n            \"tx-hash-id\": \"0x4429821d36b7dcfdbcb9b1f205f53db77dfd5ab3ab5ae860ca74b1bf1c6a2b84\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 254: nonce too low\",\n            \"time-at-rejection\": 1603616358,\n            \"tx-hash-id\": \"0x370698dc24f9b68a6f6f490f2766be37f9c81822d11baded67c5fcd156875ce6\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 143: nonce too low\",\n            \"time-at-rejection\": 1603617075,\n            \"tx-hash-id\": \"0xef84ce58947f5d16e462f53c0653ba993fa69e882c3c38fa25a49bd4621afe10\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 147: nonce too low\",\n            \"time-at-rejection\": 1603630099,\n            \"tx-hash-id\": \"0xecb0e18e8d5389bf825de14b87bc26ab8efff2add3ecc9fe4f770d82ee6c83e4\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603630443,\n            \"tx-hash-id\": \"0xf49e4c58d1ebe332a5cbfd89e3e71dd4035d7e26273e05675203a3867afd5c2a\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 116: nonce too low\",\n            \"time-at-rejection\": 1603632556,\n            \"tx-hash-id\": \"0xd118c5d3d7007055a69e9048f90fea8ed8a766435f6e14f6d00cbead56052e91\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 259: nonce too low\",\n            \"time-at-rejection\": 1603635582,\n            \"tx-hash-id\": \"0x6ff4db11a29be448e1490bc3714868ed9ab64d60465c87a4b22c6fa79b3b015a\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 8: nonce too low\",\n            \"time-at-rejection\": 1603635653,\n            \"tx-hash-id\": \"0x9ec36c525ce3f72d7aa141d76248c40ae7576103d106b0f5d17b90df541456e8\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603636451,\n            \"tx-hash-id\": \"0x7ec9ffcd54fc3e4679a6cf96932d89366702ea72ea75f2da3a4a8d5044ad9a6f\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 42: nonce too low\",\n            \"time-at-rejection\": 1603637271,\n            \"tx-hash-id\": \"0xa0db8e5a24652f39f2b70c0a8d5fdb961bfd04879eb26d3f8d2a7c96172fc123\"\n        },\n        {\n            \"error-message\": \"existing transaction price was not bumped enough: replacement transaction underpriced\",\n            \"time-at-rejection\": 1603640442,\n            \"tx-hash-id\": \"0x11bc717dff63e63e1f7b0f52243bcc14f65730817815eaa97d538e4703b8931f\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 29: nonce too low\",\n            \"time-at-rejection\": 1603641504,\n            \"tx-hash-id\": \"0xee099d8f71508daf8fdd454f9f12a60ec3123860bec12cb06bf540bbebcc7704\"\n        },\n        {\n            \"error-message\": \"existing transaction price was not bumped enough: replacement transaction underpriced\",\n            \"time-at-rejection\": 1603645660,\n            \"tx-hash-id\": \"0x026c3576d21d4447a682d9420c8cf063b07759dce2b3ddf16fa7fb82a7ee6b42\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603646724,\n            \"tx-hash-id\": \"0x9b71dd4cf08ed80509fcdd21e01df59660b2cab68827191ddc2ba3eb849f8952\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 211: nonce too low\",\n            \"time-at-rejection\": 1603649413,\n            \"tx-hash-id\": \"0x49ff9294279ca74dcb8732ffc0ab48204a1867d4e34e5f20c5aa8b517308925b\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 125: nonce too low\",\n            \"time-at-rejection\": 1603650223,\n            \"tx-hash-id\": \"0x77740c3ada4ee837fd6ea9988334d82a8e3f0c0370653cb00af45a8d09b2a1ee\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 17: nonce too low\",\n            \"time-at-rejection\": 1603650898,\n            \"tx-hash-id\": \"0xdb5ff3616d2a6192563fd7d40aabac6df9a357996a64a813ad38cf216539eb00\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 214: nonce too low\",\n            \"time-at-rejection\": 1603656460,\n            \"tx-hash-id\": \"0xab720a1ba2b438957ca5e460201962bfc215f1ea532519f93a806298a7147dcd\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 339: nonce too low\",\n            \"time-at-rejection\": 1603663703,\n            \"tx-hash-id\": \"0xd1737804a543d5a31671455efc7272671cc473b5c0a221dddcae1a76da8ec1b7\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603667412,\n            \"tx-hash-id\": \"0x216b7a27d87712851efb7df6fa644e206643ac116ecf9b331505a6ef99f5977a\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603668012,\n            \"tx-hash-id\": \"0xc0b65c7515bdd8ff93dacc97847599cfda5769bf7a90bc6c308fb8ab62c2b5b6\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603669212,\n            \"tx-hash-id\": \"0xa175de5ead4e331e544557c9301fea9a45cc3c1551021f81755822ee0c91d737\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603674585,\n            \"tx-hash-id\": \"0xd362489de45364a0adf165871e6bc73d835c907b0dd68c9b59acde6819471802\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603674612,\n            \"tx-hash-id\": \"0x923cd938a62e9af4289da5c026b621d77b47168c07a520dd29f1ac5fb937dfd0\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603680226,\n            \"tx-hash-id\": \"0x4db992a49f69db92d47b7626c7ef3dabe89f7677951c2d3e223c44e6a576bedb\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603680252,\n            \"tx-hash-id\": \"0x32db106c89f208ad9c3c853bc40aa5e09711839e1eae2b196988e07e17d4be36\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603681812,\n            \"tx-hash-id\": \"0x272ea663b259f477d11e6f248bdea89ea53eed9df9fbd6a4785c62a3a099e69b\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 215: nonce too low\",\n            \"time-at-rejection\": 1603686605,\n            \"tx-hash-id\": \"0x3acd27ac4ed101a02d4b1c064f2290fa08d091fdd478e1754805af8f4ed2f8f0\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603687812,\n            \"tx-hash-id\": \"0x82632a283eddd9d44a2606df9cbb47f116c04337317a8fe3d382d9a7f3037d22\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603689972,\n            \"tx-hash-id\": \"0xb9166f4e7ef5ebe9395215f6d6ed54568599dd7f807df5df09bd7331019c901e\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 48: nonce too low\",\n            \"time-at-rejection\": 1603700184,\n            \"tx-hash-id\": \"0xa14241674c52ef54b5d5016b25ebddeea2564975009e7c02a201a2b31e8c7b0b\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603706555,\n            \"tx-hash-id\": \"0xeb175731f34dd6b39952dd727e9ce5c6ade0b85da2e6d10dddcc8a6b46f55d11\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603706753,\n            \"tx-hash-id\": \"0x4bb2c1447334e6f493012523a36bc10d80a5f510e1626fdaf8fbbc51fedaa1b3\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603706979,\n            \"tx-hash-id\": \"0xc5ae3aff1a81fe5daf254fc710ef26165ed6cc90f9a11c6b2a6ca4ff8b040360\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 26: nonce too low\",\n            \"time-at-rejection\": 1603707886,\n            \"tx-hash-id\": \"0xf08bebf404fa98d5dcaf92991e0f08e8677515a51a4a69524586896159cb9c35\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 217: nonce too low\",\n            \"time-at-rejection\": 1603709883,\n            \"tx-hash-id\": \"0xb39cfa1d6629fdb1a513488f7539206b5047ebdc1d663ecd5e5a7d360792fffa\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603726453,\n            \"tx-hash-id\": \"0x90078aa97424101371f33f9eb3fd3e1005eb29aa84c19292cc3f9dd442a8884e\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603745532,\n            \"tx-hash-id\": \"0x8f20cb87024b2593bb2f24ff51c76c9ab04ed214eea1407fbf5b81a8df6cd764\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 146: nonce too low\",\n            \"time-at-rejection\": 1603745811,\n            \"tx-hash-id\": \"0x4e8007c57945b7e2d1f31fb59648f056e6cb378864553ae1dcd6c90d4f256e20\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 149: nonce too low\",\n            \"time-at-rejection\": 1603745852,\n            \"tx-hash-id\": \"0xc448bf47f9f62dd53c7d7c0ed721c95e3ad9016e32bd8197ef6b1a65e7f9a416\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 222: nonce too low\",\n            \"time-at-rejection\": 1603746261,\n            \"tx-hash-id\": \"0xdffa2c8b308df810a8735435394cbfebba01134cb2d03ac0667bbfb2888e099c\"\n        },\n        {\n            \"error-message\": \"existing transaction price was not bumped enough: replacement transaction underpriced\",\n            \"time-at-rejection\": 1603746908,\n            \"tx-hash-id\": \"0xeb98d5a2cebd206a0e65916d49d8a9ce0b2a0dd79745727837b3465f1895de62\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 586: nonce too low\",\n            \"time-at-rejection\": 1603746912,\n            \"tx-hash-id\": \"0x53c88aba63f62fb7a65cf3458648493ab35a451ab3beff2c438a410b19348c2b\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 176: nonce too low\",\n            \"time-at-rejection\": 1603750740,\n            \"tx-hash-id\": \"0xf938ec26a619be4a148a965c5844c81ba73fb2cf61a96d2bf16a0711e213d246\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 347: nonce too low\",\n            \"time-at-rejection\": 1603751402,\n            \"tx-hash-id\": \"0x41501de6c76c0f45be1292ad03a4c389dbbba4c79e3b0a188b284188ab4f8ce3\"\n        },\n        {\n            \"error-message\": \"existing transaction price was not bumped enough: replacement transaction underpriced\",\n            \"time-at-rejection\": 1603753295,\n            \"tx-hash-id\": \"0x9f5c6a2ffbc6eb5e814185359af81ddd2980d47feb27a336b879df9703e917b9\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603753692,\n            \"tx-hash-id\": \"0x6a88127c788dbff268356936316df06760b2ec737072f66548eda03ae394d9e6\"\n        },\n        {\n            \"error-message\": \"existing transaction price was not bumped enough: replacement transaction underpriced\",\n            \"time-at-rejection\": 1603758643,\n            \"tx-hash-id\": \"0xeef9cd33bec54bc7bcee5d6209f3bdccb8c0a11c5da16af4eeebe26904f0fa83\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 81: nonce too low\",\n            \"time-at-rejection\": 1603766273,\n            \"tx-hash-id\": \"0xe673384066fb035bb59d372ba66baa330122e56171b92babd3e6ee5849ff4577\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 846: nonce too low\",\n            \"time-at-rejection\": 1603772828,\n            \"tx-hash-id\": \"0xfb320c6a683e7b69783d620a5a8dd92c9da34b669d78f206637132740e561a30\"\n        },\n        {\n            \"error-message\": \"removed unexecutable pending transaction\",\n            \"time-at-rejection\": 1603778937,\n            \"tx-hash-id\": \"0xc24a117ad1a9afbefa38d46b69d35ee1b325884b16c58504c203ec693e828057\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 640: nonce too low\",\n            \"time-at-rejection\": 1603783428,\n            \"tx-hash-id\": \"0x7930566ffde0633a84f514c4fbfa56fc920bceabfe53f41b16b322a6a8523cfe\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 56: nonce too low\",\n            \"time-at-rejection\": 1603785552,\n            \"tx-hash-id\": \"0x7d591a5ec51b483c32f461dfc0a045af8c0c235e72681234b00d3196941fb562\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 132: nonce too low\",\n            \"time-at-rejection\": 1603786615,\n            \"tx-hash-id\": \"0x0d59d365e6f23277235948e52cb57f6588ea46edabda47425b9d85d2d4400975\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 133: nonce too low\",\n            \"time-at-rejection\": 1603786643,\n            \"tx-hash-id\": \"0x5d77a3ddb37b1754727f649e050789a941f95678e75cb5987bdbf8481c40e866\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603786864,\n            \"tx-hash-id\": \"0x7d20981807fdc7cf110e2affb5fb1f6875d3a816194aac14f31f81b4316ceb77\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603791612,\n            \"tx-hash-id\": \"0x04fe442e9d0451910570c145ffdde1f6ce23b3327035ca23e8370b5ef45ea0ea\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 60: nonce too low\",\n            \"time-at-rejection\": 1603791694,\n            \"tx-hash-id\": \"0x4e0f6c0d843729856032ee1d2483caeae613c0c2584b06a47a5519ec1e835bce\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603795932,\n            \"tx-hash-id\": \"0x01ef6fc3e916a9025679503e7ed56037322bc15e32e3bb60f78a47644aab7682\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603797251,\n            \"tx-hash-id\": \"0x1d56175d5af2453d66e36defe339f4abc7efe0086be5aa9ba6bf96ca3f033236\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 93: nonce too low\",\n            \"time-at-rejection\": 1603798134,\n            \"tx-hash-id\": \"0x2f48be3e840b105bac8fc6c33f6f31a8f5788e99086b66cd25148c83a966fc69\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 312: nonce too low\",\n            \"time-at-rejection\": 1603798278,\n            \"tx-hash-id\": \"0x13cccabd7d787e7999bd1cef573fb26971bf4312b3d8fbc595426f2304d98269\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 313: nonce too low\",\n            \"time-at-rejection\": 1603798340,\n            \"tx-hash-id\": \"0x2931a82a0248d1a63bdfd8c3c7c75a51c45163a32fdbd374a72ad1d1426e6b7d\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 31: nonce too low\",\n            \"time-at-rejection\": 1603798469,\n            \"tx-hash-id\": \"0x48da4f146a5055ec9e961df5289d43adcda2b9751c21803a4f0a288bd33eb802\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603803372,\n            \"tx-hash-id\": \"0x39b84585477c203ebe14ea9d387f7cd2e30cd7bdf5617bda725ba4ea246ea572\"\n        },\n        {\n            \"error-message\": \"transaction nonce is 135: nonce too low\",\n            \"time-at-rejection\": 1603803598,\n            \"tx-hash-id\": \"0x6fa26b5e7bd2770dd3afa0a30e04bec21bbba8635f6c5b1075e668fa4dc3a95a\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603803852,\n            \"tx-hash-id\": \"0x0c88cc038911e12a20c42a228006c038e87cdaca096fb02a299c0c71df836174\"\n        },\n        {\n            \"error-message\": \"current shard-id: 0: insufficient funds for gas * price + value\",\n            \"time-at-rejection\": 1603804092,\n            \"tx-hash-id\": \"0xd69afd2ead13d456537369dcbe79fa40c95e67306bdfe81c439377e8bf226ed5\"\n        }\n    ]\n}"}],"_postman_id":"9aedbc22-6262-44b1-8276-cd8ae19fa600"},{"name":"hmyv2_getTransactionByBlockHashAndIndex","event":[{"listen":"test","script":{"id":"c662492d-7683-42d9-b9d6-4b1f8ff2f802","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"7c7e8d90-4984-4ebe-bb7e-d7adec167503","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTransactionByBlockHashAndIndex\",\n    \"params\": [\n        \"0x77ef489dce6deee69374aa878a67a9cf1f653ec4f7b697bbeed2931669f6be77\",\n        0\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li><code>String</code> : Block hash</li>\n<li><code>Number</code> : Transaction index</li>\n</ul>\n<h4 id=\"result\">Result</h4>\n<p>See <code>hmyv2_getTransactionByHash</code> for reply structure</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"db159588-cf1b-4c4b-9af6-89cae37dd965","name":"hmyv2_getTransactionByBlockHashAndIndex","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTransactionByBlockHashAndIndex\",\n    \"params\": [\n        \"0x77ef489dce6deee69374aa878a67a9cf1f653ec4f7b697bbeed2931669f6be77\",\n        0\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:05:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"438"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 1,\n  \"result\": {\n    \"blockHash\": \"0x77ef489dce6deee69374aa878a67a9cf1f653ec4f7b697bbeed2931669f6be77\",\n    \"blockNumber\": 3687181,\n    \"ethHash\": \"0x3d89ee1de053262034028e42e771c87ffeaff537ffa4da1ce75a84d3cb000616\",\n    \"from\": \"one1a5fznwvnr3fed9676g42u7q30crtmmkk5qspe9\",\n    \"gas\": 21000,\n    \"gasPrice\": 1000000000,\n    \"hash\": \"0x41d6e74ff3a7e615080b98fcfb7bce8be7b1ba4a8671e1ba2e9527eb3e1da20d\",\n    \"input\": \"0x\",\n    \"nonce\": 354,\n    \"r\": \"0x509fad8c9aca4ef3a6732ebfb544261d527e062c1d8169569f91e18cb60fade9\",\n    \"s\": \"0x14f1dc80082be16aabca42079807ba9f8312545586020b33d1d470c391828246\",\n    \"shardID\": 0,\n    \"timestamp\": 1592529632,\n    \"to\": \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n    \"toShardID\": 0,\n    \"transactionIndex\": 0,\n    \"v\": \"0x26\",\n    \"value\": 1.0001e+22\n  }\n}"}],"_postman_id":"7c7e8d90-4984-4ebe-bb7e-d7adec167503"},{"name":"hmyv2_getTransactionByBlockNumberAndIndex","event":[{"listen":"test","script":{"id":"bb72d9eb-b762-447c-b24a-3f427b5dca77","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"bcde8b1c-6ab9-4950-9835-3c7564e49c3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTransactionByBlockNumberAndIndex\",\n    \"params\": [\n        3687181,\n        0\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> : Block number</p>\n<p><code>Number</code> : Transaction index</p>\n<h4 id=\"result\">Result</h4>\n<p>See <code>hmyv2_getTransactionByHash</code> for reply structure</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"7dc5e36a-b15c-4508-bac3-d461a4d95907","name":"hmyv2_getTransactionByBlockNumberAndIndex","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTransactionByBlockNumberAndIndex\",\n    \"params\": [\n        3687181,\n        0\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:05:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"438"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 1,\n  \"result\": {\n    \"blockHash\": \"0x77ef489dce6deee69374aa878a67a9cf1f653ec4f7b697bbeed2931669f6be77\",\n    \"blockNumber\": 3687181,\n    \"ethHash\": \"0x3d89ee1de053262034028e42e771c87ffeaff537ffa4da1ce75a84d3cb000616\",\n    \"from\": \"one1a5fznwvnr3fed9676g42u7q30crtmmkk5qspe9\",\n    \"gas\": 21000,\n    \"gasPrice\": 1000000000,\n    \"hash\": \"0x41d6e74ff3a7e615080b98fcfb7bce8be7b1ba4a8671e1ba2e9527eb3e1da20d\",\n    \"input\": \"0x\",\n    \"nonce\": 354,\n    \"r\": \"0x509fad8c9aca4ef3a6732ebfb544261d527e062c1d8169569f91e18cb60fade9\",\n    \"s\": \"0x14f1dc80082be16aabca42079807ba9f8312545586020b33d1d470c391828246\",\n    \"shardID\": 0,\n    \"timestamp\": 1592529632,\n    \"to\": \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n    \"toShardID\": 0,\n    \"transactionIndex\": 0,\n    \"v\": \"0x26\",\n    \"value\": 1.0001e+22\n  }\n}"}],"_postman_id":"bcde8b1c-6ab9-4950-9835-3c7564e49c3e"},{"name":"hmyv2_getTransactionByHash","event":[{"listen":"test","script":{"id":"23f3136e-48f7-4d19-832a-31a0f387426d","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"117e84f6-a0ec-444e-abe0-455701310389","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTransactionByHash\",\n    \"params\": [\n        \"0x41d6e74ff3a7e615080b98fcfb7bce8be7b1ba4a8671e1ba2e9527eb3e1da20d\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> : Transaction hash</p>\n<h4 id=\"result\">Result</h4>\n<ul>\n<li><code>blockHash</code> - <code>String</code> : Block hash</li>\n<li><code>blockNumber</code> - <code>Number</code> : Block number</li>\n<li><code>from</code> - <code>String</code> : Sender wallet address</li>\n<li><code>timestamp</code> - <code>Number</code> : Unix time at which transaction was finalized</li>\n<li><code>gas</code> - <code>Number</code> : Gas limit</li>\n<li><code>gasPrice</code> - <code>Number</code> : Gas price in Atto</li>\n<li><code>hash</code> - <code>String</code> : Transaction hash</li>\n<li><code>input</code> - <code>String</code> : Transaction data, used for smart contracts</li>\n<li><code>nonce</code> - <code>Number</code> : Sender wallet nonce</li>\n<li><code>to</code> - <code>String</code> : Receiver wallet address</li>\n<li><code>transactionIndex</code> - <code>Number</code> : Transaction index in block</li>\n<li><code>value</code> - <code>Number</code> : Amount transferred</li>\n<li><code>shardID</code> - <code>Number</code> : From shard</li>\n<li><code>toShardID</code> - <code>Number</code> : To shard</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"17c7e7b3-3f72-44e6-b0b0-5fa9f85834c3","name":"hmyv2_getTransactionByHash","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTransactionByHash\",\n    \"params\": [\n        \"0x41d6e74ff3a7e615080b98fcfb7bce8be7b1ba4a8671e1ba2e9527eb3e1da20d\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:09:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"438"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 1,\n  \"result\": {\n    \"blockHash\": \"0x77ef489dce6deee69374aa878a67a9cf1f653ec4f7b697bbeed2931669f6be77\",\n    \"blockNumber\": 3687181,\n    \"ethHash\": \"0x3d89ee1de053262034028e42e771c87ffeaff537ffa4da1ce75a84d3cb000616\",\n    \"from\": \"one1a5fznwvnr3fed9676g42u7q30crtmmkk5qspe9\",\n    \"gas\": 21000,\n    \"gasPrice\": 1000000000,\n    \"hash\": \"0x41d6e74ff3a7e615080b98fcfb7bce8be7b1ba4a8671e1ba2e9527eb3e1da20d\",\n    \"input\": \"0x\",\n    \"nonce\": 354,\n    \"r\": \"0x509fad8c9aca4ef3a6732ebfb544261d527e062c1d8169569f91e18cb60fade9\",\n    \"s\": \"0x14f1dc80082be16aabca42079807ba9f8312545586020b33d1d470c391828246\",\n    \"shardID\": 0,\n    \"timestamp\": 1592529632,\n    \"to\": \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n    \"toShardID\": 0,\n    \"transactionIndex\": 0,\n    \"v\": \"0x26\",\n    \"value\": 1.0001e+22\n  }\n}"}],"_postman_id":"117e84f6-a0ec-444e-abe0-455701310389"},{"name":"hmyv2_getTransactionReceipt","event":[{"listen":"test","script":{"id":"32be360d-da62-4fee-a5cd-ec62add02f8a","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript","packages":{}}}],"id":"0c2799f8-bcdc-41a4-b362-c3a6a763bb5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTransactionReceipt\",\n    \"params\": [\n        \"0x8e361416a36a83a501c29a59c5aa71d9999e83b8db2baab110415f0733fe94b3\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> : Transaction receipt hash</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Object</code></p>\n<ul>\n<li><p><code>blockHash</code> - <code>String</code> : Block hash</p>\n</li>\n<li><p><code>blockNumber</code> - <code>Number</code> : Block number</p>\n</li>\n<li><p><code>contractAddress</code> - <code>String</code>: Smart contract address</p>\n</li>\n<li><p><code>cumulativeGasUsed</code> - <code>Number</code>: Gas used for transaction</p>\n</li>\n<li><p><code>effectiveGasPrice</code> - <code>Number</code> : Value per Gas and equal to GasPrice</p>\n</li>\n<li><p><code>from</code> - <code>String</code> : Sender wallet address</p>\n</li>\n<li><p><code>gasUsed</code> - <code>Number</code> : Gas used for the transaction</p>\n</li>\n<li><p><code>logs</code> - <code>Array</code></p>\n</li>\n<li><p><code>logsBloom</code> - <code>String</code> : Bloom logs</p>\n</li>\n<li><p><code>shardID</code> - <code>Number</code> : Shard ID</p>\n</li>\n<li><p><code>status</code> - <code>Number</code> : Status of transaction (0: pending, 1: success)</p>\n</li>\n<li><p><code>to</code> - <code>String</code> : Receiver wallet address</p>\n</li>\n<li><p><code>transactionHash</code> - <code>String</code> : Transaction hash</p>\n</li>\n<li><p><code>transactionIndex</code> - <code>Number</code> : Transaction index within block</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"24575ee6-7f81-49eb-a925-66de9adafd46","name":"hmyv2_getTransactionReceipt","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"jsonrpc\": \"2.0\",\n\t\"id\": 1,\n\t\"method\": \"hmyv2_getTransactionReceipt\",\n\t\"params\": [\n\t\t\"0x8e361416a36a83a501c29a59c5aa71d9999e83b8db2baab110415f0733fe94b3\"\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:09:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"919"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 1,\n  \"result\": {\n    \"blockHash\": \"0x6f501be487858ce1b0dba35da70a35287c92b57e3b90faaee2f23b7c11798267\",\n    \"blockNumber\": 68622275,\n    \"contractAddress\": \"0x0000000000000000000000000000000000000000\",\n    \"cumulativeGasUsed\": 904661,\n    \"effectiveGasPrice\": 214000000000,\n    \"from\": \"one1ru3m7pednce8yelewqfw40eh3t74rwt5uyzzjm\",\n    \"gasUsed\": 133858,\n    \"logs\": [\n      {\n        \"address\": \"0xbc594cabd205bd993e7ffa6f3e9cea75c1110da5\",\n        \"blockHash\": \"0x6f501be487858ce1b0dba35da70a35287c92b57e3b90faaee2f23b7c11798267\",\n        \"blockNumber\": \"0x41717c3\",\n        \"data\": \"0x000000000000000000000000000000000000000000000000000000000474bc4c\",\n        \"logIndex\": \"0xc\",\n        \"removed\": false,\n        \"topics\": [\n          \"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\",\n          \"0x00000000000000000000000093717d43ce43cf7ce9675c0124dffee0d4cd2abc\",\n          \"0x000000000000000000000000bdb06631df38ed49f908afaa8309c050b74dbfe7\"\n        ],\n        \"transactionHash\": \"0xc14d5a35fe44c11ca1c51fc51a6079aa62204c660799a15632966a3f7215de2f\",\n        \"transactionIndex\": \"0xa\"\n      },\n      {\n        \"address\": \"0xcf664087a5bb0237a0bad6742852ec6c8d69a27a\",\n        \"blockHash\": \"0x6f501be487858ce1b0dba35da70a35287c92b57e3b90faaee2f23b7c11798267\",\n        \"blockNumber\": \"0x41717c3\",\n        \"data\": \"0x0000000000000000000000000000000000000000000000daac60cf430fbe8b42\",\n        \"logIndex\": \"0xd\",\n        \"removed\": false,\n        \"topics\": [\n          \"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\",\n          \"0x000000000000000000000000bdb06631df38ed49f908afaa8309c050b74dbfe7\",\n          \"0x00000000000000000000000093717d43ce43cf7ce9675c0124dffee0d4cd2abc\"\n        ],\n        \"transactionHash\": \"0xc14d5a35fe44c11ca1c51fc51a6079aa62204c660799a15632966a3f7215de2f\",\n        \"transactionIndex\": \"0xa\"\n      },\n      {\n        \"address\": \"0xbdb06631df38ed49f908afaa8309c050b74dbfe7\",\n        \"blockHash\": \"0x6f501be487858ce1b0dba35da70a35287c92b57e3b90faaee2f23b7c11798267\",\n        \"blockNumber\": \"0x41717c3\",\n        \"data\": \"0x0000000000000000000000000000000000000000000000000000000620f7d5f3000000000000000000000000000000000000000000012ccfc8ceb4b6fe7104a5\",\n        \"logIndex\": \"0xe\",\n        \"removed\": false,\n        \"topics\": [\n          \"0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1\"\n        ],\n        \"transactionHash\": \"0xc14d5a35fe44c11ca1c51fc51a6079aa62204c660799a15632966a3f7215de2f\",\n        \"transactionIndex\": \"0xa\"\n      },\n      {\n        \"address\": \"0xbdb06631df38ed49f908afaa8309c050b74dbfe7\",\n        \"blockHash\": \"0x6f501be487858ce1b0dba35da70a35287c92b57e3b90faaee2f23b7c11798267\",\n        \"blockNumber\": \"0x41717c3\",\n        \"data\": \"0x000000000000000000000000000000000000000000000000000000000474bc4c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000daac60cf430fbe8b42\",\n        \"logIndex\": \"0xf\",\n        \"removed\": false,\n        \"topics\": [\n          \"0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822\",\n          \"0x00000000000000000000000093717d43ce43cf7ce9675c0124dffee0d4cd2abc\",\n          \"0x00000000000000000000000093717d43ce43cf7ce9675c0124dffee0d4cd2abc\"\n        ],\n        \"transactionHash\": \"0xc14d5a35fe44c11ca1c51fc51a6079aa62204c660799a15632966a3f7215de2f\",\n        \"transactionIndex\": \"0xa\"\n      }\n    ],\n    \"logsBloom\": \"0x00200000000000000000000080000000000000000000000000100000000008000000000000000000100000000000000000020000000000000000000000000000000000000000000200000008000000200400000004000000000000000000000000000000000000001000020000000000000000000000000000000010000000000000000000000000000000000000000000000000000080080000004000000080000000000000000000000000000000000000000000000000000000000000000000000002000000000004000000000000000000000000005000000000000010000000000000000000000000000000000000002000000000000000000000000000\",\n    \"root\": \"0x\",\n    \"shardID\": 0,\n    \"status\": 1,\n    \"to\": \"one1jdch6s7wg08he6t8tsqjfhl7ur2v624ulnryrc\",\n    \"transactionHash\": \"0x8e361416a36a83a501c29a59c5aa71d9999e83b8db2baab110415f0733fe94b3\",\n    \"transactionIndex\": 10\n  }\n}"}],"_postman_id":"0c2799f8-bcdc-41a4-b362-c3a6a763bb5e"},{"name":"hmyv2_sendRawTransaction","event":[{"listen":"test","script":{"id":"7cea2bf7-04ea-472f-980b-09be8910f236","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"f40d124a-b897-4b7c-baf3-e0dedf8f40a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_sendRawTransaction\",\n    \"params\": [\n        \"0xDEADBEEF\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> : Hex representation of signed transaction</p>\n<h4 id=\"result\">Result</h4>\n<p>If transaction has been added to the pool</p>\n<p><code>String</code> : Transaction hash</p>\n<p>If transaction failed to be added to the transaction pool, it will return an error.</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"a6d00bdf-3817-4cef-97f6-00d4cb2a74c4","name":"hmyv2_sendRawTransaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_sendRawTransaction\",\n    \"params\": [\n        \"0xDEADBEEF\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:10:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"118"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": \"0xDEADBEEF\"\n}"}],"_postman_id":"f40d124a-b897-4b7c-baf3-e0dedf8f40a0"}],"id":"8c9746bf-acc3-4d46-baee-52a2d294bc5e","_postman_id":"8c9746bf-acc3-4d46-baee-52a2d294bc5e","description":""}],"id":"e98fee14-f5f7-4296-92ff-5734deedb906","description":"<p>Transaction related RPCs</p>\n","_postman_id":"e98fee14-f5f7-4296-92ff-5734deedb906"},{"name":"Blockchain","item":[{"name":"Network","item":[{"name":"hmyv2_blockNumber","event":[{"listen":"test","script":{"id":"d155d294-af06-4a85-bacd-1c84ea954ef4","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"2602b6c4-a579-4b7c-bce8-85331e0db1a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_blockNumber\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Number</code> - Current block number</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"a53fd89f-e114-4aa8-b9c4-a226a66369c4","name":"hmyv2_blockNumber","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_blockNumber\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:11:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"66"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": 5601636\n}"}],"_postman_id":"2602b6c4-a579-4b7c-bce8-85331e0db1a7"},{"name":"hmyv2_getCirculatingSupply","event":[{"listen":"test","script":{"id":"8e94b6e2-693c-4257-8d77-3c74598db259","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"8398e818-ac2d-4ad8-a3b4-a00927395044","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCirculatingSupply\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Number</code> : Circulation supply of tokens in ONE</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"8eecb31c-c0dc-4fb5-b473-e847188005ad","name":"hmyv2_getCirculatingSupply","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCirculatingSupply\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:11:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"82"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": \"7206135176.470582800000000000\"\n}"}],"_postman_id":"8398e818-ac2d-4ad8-a3b4-a00927395044"},{"name":"hmyv2_getEpoch","event":[{"listen":"test","script":{"id":"f9d84280-f805-4f2b-be28-f64de79795df","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"9b8e98b0-46d1-4fa0-aaa6-317ff1ddba59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getEpoch\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Number</code> - Current block number</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"6f99e859-42f7-4da4-b0ef-ee655d970a0f","name":"hmyv2_getEpoch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getEpoch\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:12:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"62"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": 321\n}"}],"_postman_id":"9b8e98b0-46d1-4fa0-aaa6-317ff1ddba59"},{"name":"hmyv2_epochLastBlock","event":[{"listen":"test","script":{"id":"f9d84280-f805-4f2b-be28-f64de79795df","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"bd63c3aa-44cb-4f7d-8db2-50fb17e29d05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_epochLastBlock\",\n    \"params\": [917]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> - epoch number</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Number</code> - Last block number of given epoch</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"2160d3c8-7044-4a3f-a4a9-f5de6eb3b71b","name":"hmyv2_epochLastBlock","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_epochLastBlock\",\n    \"params\": [917]\n}","options":{"raw":{"language":"json"}}},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:12:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"62"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\":\"2.0\",\n    \"id\":1,\n    \"result\":24412159\n}"}],"_postman_id":"bd63c3aa-44cb-4f7d-8db2-50fb17e29d05"},{"name":"hmyv2_getLastCrossLinks","event":[{"listen":"test","script":{"id":"cddf7d5c-4774-4267-a494-753dd1cb3426","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"4994cdf9-38c4-4b1d-90a8-290ddaa3040e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getLastCrossLinks\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of <code>Object</code></p>\n<ul>\n<li><code>hash</code> - <code>String</code> : Parent block hash</li>\n<li><code>block-number</code> - <code>Number</code> : Block number</li>\n<li><code>view-id</code> - <code>Number</code> : View ID</li>\n<li><code>signature</code> - <code>String</code> : Hex representation of aggregated signature</li>\n<li><code>signature-bitmap</code> - <code>String</code> : Hex representation of aggregated signature bitmap</li>\n<li><code>shard-id</code> - <code>Number</code> : Shard ID</li>\n<li><code>epoch-number</code> - <code>Number</code> : Block epoch</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"04bbbc44-a680-42c7-84e1-6fd1a09f7074","name":"hmyv2_getLastCrossLinks","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getLastCrossLinks\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:12:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"634"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"block-number\": 5623200,\n            \"epoch-number\": 321,\n            \"hash\": \"0xe681c3436e4a3a57cc56f4a0b6a20c5c9ea129ee56d13158abe98c64648000c3\",\n            \"shard-id\": 1,\n            \"signature\": \"d55aa1be68ac44c57d59f515211e192596f5fd38657e35a965f33eebb378a6255fe467479c702c4b7c54d8a48b2b230d6ffec59f5fdb10449106b93b574a2fdec1b59abe161facf2c373c3c3d737289944546cd40dacc2a68273ac4ce9069916\",\n            \"signature-bitmap\": \"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03\",\n            \"view-id\": 5623394\n        },\n        {\n            \"block-number\": 5661206,\n            \"epoch-number\": 321,\n            \"hash\": \"0xe73e32999244a1aba30723cc9e17df35fd8d1fb41c09ec1beeddbdec0f101cfd\",\n            \"shard-id\": 2,\n            \"signature\": \"0d9048a27893cea23fff31a70c70a93b978cd35df6798bff73bcca0300e19090dc018f0dffa5da4c7a34665dc7526311021c68fe5763bb2233d302e267a5a9e0eb4328cb0702a9d96d71d7f1edc2848ac73e382910a4d10dbde07778acbb150a\",\n            \"signature-bitmap\": \"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff07\",\n            \"view-id\": 5661377\n        },\n        {\n            \"block-number\": 5644933,\n            \"epoch-number\": 321,\n            \"hash\": \"0x1f195631753c8e08728ac259caed479d099ba73a5adf02759fb51ab6dc3aa5e7\",\n            \"shard-id\": 3,\n            \"signature\": \"86331c70d9ad545ef4c805d5c5d5ff7214f9b08a37328005942c48ea252708f87fa8b1c4f54e6683341e4ca71cf7750fdbd1ae780f52c3e8479add16a8f5fff42582ca71824b30bf8df492b9c15840a6e25d0d48c403df2aecb86c86ea158981\",\n            \"signature-bitmap\": \"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03\",\n            \"view-id\": 5645126\n        }\n    ]\n}"}],"_postman_id":"4994cdf9-38c4-4b1d-90a8-290ddaa3040e"},{"name":"hmyv2_getLeader","event":[{"listen":"test","script":{"id":"fcf991d5-85ea-4c8f-a54a-3a1ef408d141","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"8b08d18c-017b-4b44-a3c3-356f9c12dacd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getLeader\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>String</code> - Wallet address of current leader</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"7e97e053-9c7f-4cad-baf2-91a9cc2e554c","name":"hmyv2_getLeader","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getLeader\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:12:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": \"one1gh043zc95e6mtutwy5a2zhvsxv7lnlklkj42ux\"\n}"}],"_postman_id":"8b08d18c-017b-4b44-a3c3-356f9c12dacd"},{"name":"hmyv2_gasPrice","event":[{"listen":"test","script":{"id":"6c58a598-a73a-46e8-8c51-86107bd609b7","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"1d53fd59-a89f-436c-a171-aec9d9623f48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_gasPrice\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Number</code> - Current average gas price of transactions</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"336a81f2-ce63-4095-bcbe-afc21a4d9436","name":"hmyv2_gasPrice","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_gasPrice\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:12:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": 1\n}"}],"_postman_id":"1d53fd59-a89f-436c-a171-aec9d9623f48"},{"name":"hmyv2_getShardingStructure","event":[{"listen":"test","script":{"id":"fa824719-a76a-42da-ab97-26c58ee2323b","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"9669d49e-43c1-47d9-a3fd-e7786e5879df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getShardingStructure\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> of <code>Object</code></p>\n<ul>\n<li><code>current</code> - <code>Bool</code> : If this node is currently on this shard ID</li>\n<li><code>http</code> - <code>String</code> : HTTPS API endpoint for this shard ID</li>\n<li><code>shardID</code> - <code>Number</code> : Shard ID</li>\n<li><code>ws</code> - <code>String</code> : Websocket API endpoint for this shard ID</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"f82acd82-ad81-41b3-9e28-6ec97c73df95","name":"hmyv2_getShardingStructure","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getShardingStructure\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:12:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"161"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"current\": true,\n            \"http\": \"https://api.s0.t.hmny.io\",\n            \"shardID\": 0,\n            \"ws\": \"wss://ws.s0.t.hmny.io\"\n        },\n        {\n            \"current\": false,\n            \"http\": \"https://api.s1.t.hmny.io\",\n            \"shardID\": 1,\n            \"ws\": \"wss://ws.s1.t.hmny.io\"\n        },\n        {\n            \"current\": false,\n            \"http\": \"https://api.s2.t.hmny.io\",\n            \"shardID\": 2,\n            \"ws\": \"wss://ws.s2.t.hmny.io\"\n        },\n        {\n            \"current\": false,\n            \"http\": \"https://api.s3.t.hmny.io\",\n            \"shardID\": 3,\n            \"ws\": \"wss://ws.s3.t.hmny.io\"\n        }\n    ]\n}"}],"_postman_id":"9669d49e-43c1-47d9-a3fd-e7786e5879df"},{"name":"hmyv2_getTotalSupply","event":[{"listen":"test","script":{"id":"9a0863be-d507-49d0-92ad-7913c1778476","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"3dcea518-9e9a-4a20-84f4-c7a0817b2196","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTotalSupply\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Number</code> : Total number of pre-mined tokens</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"8c5940b0-9d5a-4243-80a1-27da71f879bf","name":"hmyv2_getTotalSupply","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTotalSupply\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:13:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"70"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": \"12600000000.000000000000000000\"\n}"}],"_postman_id":"3dcea518-9e9a-4a20-84f4-c7a0817b2196"},{"name":"hmyv2_getValidators","event":[{"listen":"test","script":{"id":"111d3d64-8402-4e94-a348-dee532ca39c3","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"4dfe91ad-71fa-4c7d-83f3-d1c86a804da5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getValidators\",\n    \"params\": [\n\t\t1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> : Epoch number</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Object</code></p>\n<ul>\n<li><code>shardID</code> - <code>Number</code> : Shard ID</li>\n<li><code>validators</code> - <code>Array</code> of <code>Object</code><ul>\n<li><code>address</code> : Wallet address</li>\n<li><code>balance</code> : Balance of wallet</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"f32eddc1-de30-4a31-a885-a1e3214a0bc7","name":"hmyv2_getValidators","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getValidators\",\n    \"params\": [\n\t\t1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:13:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"shardID\": 0,\n        \"validators\": [\n            {\n                \"address\": \"one1gh043zc95e6mtutwy5a2zhvsxv7lnlklkj42ux\",\n                \"balance\": 5.5673339699466540364975e+22\n            },\n            {\n                \"address\": \"one1jyvcqu4k0rszgf3r2a02tm89dzd68arw5lz9vl\",\n                \"balance\": 6.308842455329122187262e+22\n            },\n            {\n                \"address\": \"one1nn2c86kwaq4nk8lda50fnepepqr9y73kd9w2z3\",\n                \"balance\": 6.3123212521509106216834e+22\n            },\n            {\n                \"address\": \"one1u7jzpkd3sr40kzw62vjval85dkzeyn3g2shz83\",\n                \"balance\": 6.3165590500281052641429e+22\n            },\n            {\n                \"address\": \"one1tfrpfvrgj5tnxj029xsdkl33hmrsry056nrpvt\",\n                \"balance\": 5.0863157003285324889104e+22\n            },\n            {\n                \"address\": \"one1fg0nrc7djkm2p47tjsuhd8n9435mz9ed57dj8v\",\n                \"balance\": 6.3045662133152865221277e+22\n            },\n            {\n                \"address\": \"one15jv9h2rwtczgmre923nde50jfz0sjs8c9gnwpd\",\n                \"balance\": 6.3169277244149792158126e+22\n            },\n            {\n                \"address\": \"one145zhxlug79wjwlf9wrx5vh90u2t7nfu562rdlh\",\n                \"balance\": 4.4818274777915336800704e+22\n            },\n            {\n                \"address\": \"one17fn65sgdnp9hphg6vn58h90k3ujt07xtqrnn3y\",\n                \"balance\": 6.0848349241468963474613e+22\n            },\n            {\n                \"address\": \"one1ssctny3j3hs92wnetqgkrncwfatq6er6rhede9\",\n                \"balance\": 6.2282349839558615645061e+22\n            },\n            {\n                \"address\": \"one1uevxtwdqehq7k2v5jdm6mz4m492f3qpja4e36q\",\n                \"balance\": 6.2475886504868067307418e+22\n            },\n            {\n                \"address\": \"one1m4909gjt2g4fsl2jw95kxmjmja2ka4cc6d4sgs\",\n                \"balance\": 6.3098008208129903760199e+22\n            },\n            {\n                \"address\": \"one1sdrc3dla7zzd5pdqjagywfdumnqsyl57ql7sj2\",\n                \"balance\": 6.3163677458000012893035e+22\n            },\n            {\n                \"address\": \"one1w4ekumvg88ex5txjrzk9qgfx3xheua4djrphld\",\n                \"balance\": 6.10627361200775878045e+22\n            },\n            {\n                \"address\": \"one1h3ztpa75txa2ng20jzzekqzcfmxx9v83lpeuaz\",\n                \"balance\": 6.3167868110855684464957e+22\n            },\n            {\n                \"address\": \"one1zsk49ypjc540vy2663gpn76d8z0mg577d8x5kw\",\n                \"balance\": 5.6602617939002811864987e+22\n            },\n            {\n                \"address\": \"one1pq9zk56dsapwracyx0z7lgz32603hzfk7f2t2e\",\n                \"balance\": 5.65229054166676121433e+22\n            },\n            {\n                \"address\": \"one16dllsrjr04uhzsuw7raaq4cszpkt3g997yev2s\",\n                \"balance\": 4.4878773900972838072477e+22\n            },\n            {\n                \"address\": \"one1rs666h8mfgm33kqdkzzq4s6klem4d0hk9lldc4\",\n                \"balance\": 5.6675107886768608198427e+22\n            },\n            {\n                \"address\": \"one1xgk5rmygeuh5p4m2uhp048dfucr7avf7tzj6w4\",\n                \"balance\": 5.4119297907817889041361e+22\n            },\n            {\n                \"address\": \"one1jyzcklsqmr5r5qvvyh0r0e2436ss6vteap69kv\",\n                \"balance\": 6.0480762713107722020101e+22\n            },\n            {\n                \"address\": \"one1mvlwv0wjp9u6yv2v0ema3qurlnxkp5ftekegm8\",\n                \"balance\": 6.2288647694314528333422e+22\n            },\n            {\n                \"address\": \"one12q6kh768sn3m2dwf5vhn7nfuxstp6xvtf35m4r\",\n                \"balance\": 4.2939990658425809337138e+22\n            },\n            {\n                \"address\": \"one198as6uj8p4yucttkkhzrtpu9z8nfwqrgh7d3g6\",\n                \"balance\": 5.6513869104381011832193e+22\n            },\n            {\n                \"address\": \"one1su2vsv854y639m0qlst580ctx7sm4zwsy60xq7\",\n                \"balance\": 6.0643051239298710302957e+22\n            },\n            {\n                \"address\": \"one1x0sm3y8e2cgql05spqc2y20xwgx9m9trpfn2pq\",\n                \"balance\": 2.3049091874937349033138e+22\n            },\n            {\n                \"address\": \"one1curhrds59j26ldue4x8sx3glf6dxnfkk3lqa53\",\n                \"balance\": 5.0274457355528638002093e+22\n            },\n            {\n                \"address\": \"one1uzsl45tzdn652xkqdc60w42hehrc0nrd7lj7zu\",\n                \"balance\": 3.7629891436684396021644e+22\n            },\n            {\n                \"address\": \"one135nj2r8jd88uffht52q4zs88h6vpwmy6f88vjr\",\n                \"balance\": 6.3132214204040188875892e+22\n            },\n            {\n                \"address\": \"one1vg5frvtn82thc5vv0rytysdwtl6qcsjpessvst\",\n                \"balance\": 6.3103590749702920801526e+22\n            },\n            {\n                \"address\": \"one1xlnx308wrvfjxxs4h8v894vwz35tpcfyex63um\",\n                \"balance\": 6.2953660445948475719879e+22\n            },\n            {\n                \"address\": \"one1jegwvj0vpkncgsw9p3nuyt36dp94erdu79kv5j\",\n                \"balance\": 4.6656473287067722765245e+22\n            },\n            {\n                \"address\": \"one1el39ku64kkdpmrv598d8g63r9ftd25nc8ppuly\",\n                \"balance\": 6.2713847115379184551537e+22\n            },\n            {\n                \"address\": \"one1s3vgvw85j4055tq7ky7say5n80hy2vws8hgvfu\",\n                \"balance\": 5.3869496453057243579376e+22\n            },\n            {\n                \"address\": \"one1tmxgqudfnzuy5y9wf7gsntwv6f768878r3q8q6\",\n                \"balance\": 5.5769082118448104858931e+22\n            },\n            {\n                \"address\": \"one13fjjymcva76vzn6e4ykde77wt5j4jyr60u778j\",\n                \"balance\": 6.0311044035543980580441e+22\n            },\n            {\n                \"address\": \"one1cfq2v4kysk3vdrjtjju2q7d2k8qa204cqcsqsq\",\n                \"balance\": 6.2986900732714592046818e+22\n            },\n            {\n                \"address\": \"one1g2rm7ay0htx5tlkgqwvvwk4sq2tgm5wratfzq2\",\n                \"balance\": 3.6097669753033041975023e+22\n            },\n            {\n                \"address\": \"one1nsu6n9sv7ztgcrred3lnml7qxmr3la94ymsrw0\",\n                \"balance\": 4.7527285288475030367477e+22\n            },\n            {\n                \"address\": \"one10tu906wspjnc3mn5kvzlr36882swkwf9s8e5xd\",\n                \"balance\": 5.3410759647657124788255e+22\n            },\n            {\n                \"address\": \"one1chxf96l9c0g0w55703j0q37gtnedg424zlmraf\",\n                \"balance\": 4.7272471499612417540415e+22\n            },\n            {\n                \"address\": \"one1gum0zqu2zstptk7fdl8v2wsdrfdtl054qx8jar\",\n                \"balance\": 3.445566426652829313705e+22\n            },\n            {\n                \"address\": \"one1gugtmrxusqk2j7xce3sltnc0sgegnnfuv6hq80\",\n                \"balance\": 6.3162822768465170063613e+22\n            },\n            {\n                \"address\": \"one1ekllcv39gdpac9497gc3894ddsehkzlqds7ewl\",\n                \"balance\": 6.3150584524765523746639e+22\n            },\n            {\n                \"address\": \"one18pymc7sn6e3jk07xx3gagrfgmkcmgtuxa428s6\",\n                \"balance\": 6.2988697489551710055922e+22\n            },\n            {\n                \"address\": \"one147x8wxytztf80avpy4s4f99t5u3ksfr7h02j4x\",\n                \"balance\": 6.1098157466028198190364e+22\n            },\n            {\n                \"address\": \"one1vfy349h4y44244zf3zm47jwc7z4jdwpgsgdtm3\",\n                \"balance\": 3.7566610836484696286681e+22\n            },\n            {\n                \"address\": \"one14hrttmv9xapdkj0auuwlgpvmmhfz2mp4a2c8ey\",\n                \"balance\": 6.3169972616603059664773e+22\n            },\n            {\n                \"address\": \"one1ktud786d0w6ww8gt8crra4mg6zyl7xf7xr47u6\",\n                \"balance\": 6.3136115802207489034124e+22\n            },\n            {\n                \"address\": \"one18jsru7gjz8tex8nux0xe4agffwz2mvq62xjp2x\",\n                \"balance\": 6.3040665556129775633804e+22\n            },\n            {\n                \"address\": \"one1a29x52lelvelspzx9scdml3nhy9hrau9k5mvdn\",\n                \"balance\": 6.3169645030470327852374e+22\n            },\n            {\n                \"address\": \"one13ar9c7czmg5j26fcpwqckj5kx5kyk02j0nqvjr\",\n                \"balance\": 5.4624294622536752759717e+22\n            },\n            {\n                \"address\": \"one19hnhhs2dkxl0v0gr0h755y6f9l86emt0z3zuj7\",\n                \"balance\": 5.6286809721118800706012e+22\n            },\n            {\n                \"address\": \"one1uwkgzutlp76qhvuhtlvhpd77gyuxlm0w3nj0fx\",\n                \"balance\": 6.2905643921886478115441e+22\n            },\n            {\n                \"address\": \"one10jg0a2wv5fk9042us876xt57ej0lqm6xvm5vxu\",\n                \"balance\": 6.2884489708321517848346e+22\n            },\n            {\n                \"address\": \"one1hhf55rl0jzjyshlw4ftlm25ylxhsc5rrq7rznd\",\n                \"balance\": 4.9008247492227529767329e+22\n            },\n            {\n                \"address\": \"one1pegk36wh4dnyv29dhe5s3faveenhl60wcef9y2\",\n                \"balance\": 5.4098405210180164056518e+22\n            },\n            {\n                \"address\": \"one1y82p9rex6ezqenjze8yxe5a0nhskvamcgn8rqc\",\n                \"balance\": 6.3028924184733567237781e+22\n            },\n            {\n                \"address\": \"one1yu2wdsl7x5k58zecsdh5p0ucapfe74mrydwks9\",\n                \"balance\": 6.0528969720690370220033e+22\n            },\n            {\n                \"address\": \"one1kgyntj9yg6vvasmt06g5w7x8e84z84hnlx4eda\",\n                \"balance\": 6.3159292182842130686046e+22\n            },\n            {\n                \"address\": \"one1uc3xg782sslsrkyffvaakmy8dw0evl0zzq06ts\",\n                \"balance\": 6.2992670927011387018847e+22\n            },\n            {\n                \"address\": \"one1tvtrynm5rp8gsxf69hhy7mx0uljlzguxwxgtjy\",\n                \"balance\": 6.3109208591125735820325e+22\n            },\n            {\n                \"address\": \"one1t03xpg9f6tgguwke23e56k3chd28d2d37ttxqw\",\n                \"balance\": 5.8071706330011594024998e+22\n            },\n            {\n                \"address\": \"one1khln4errq87hnpjs9zqxmll9slwxwywtxy0y3d\",\n                \"balance\": 5.4343691784268187917188e+22\n            },\n            {\n                \"address\": \"one14jntfqa47hatag382uaxkp2zddhwwgwf3wl33x\",\n                \"balance\": 6.304918034594061802878e+22\n            },\n            {\n                \"address\": \"one1ycdxxqd4x5wgu3wjc26edsjkc3cztm99jpnfry\",\n                \"balance\": 5.3073405679833305879177e+22\n            },\n            {\n                \"address\": \"one13rtrd09sxez76efdqhmtamfclt44ew02auyhwa\",\n                \"balance\": 4.6038855199168295301398e+22\n            },\n            {\n                \"address\": \"one18hmhzhfnm47sjwcaz73tjhz09zay4jrc2stagj\",\n                \"balance\": 6.3137669282113958658789e+22\n            },\n            {\n                \"address\": \"one19lp6lj7j5efhtv6f4mjwyu3c50ey84ajnfntsa\",\n                \"balance\": 6.3082933056565730922341e+22\n            },\n            {\n                \"address\": \"one10t76e65x7m0pfkhmpwm4wgr7u3xu3t8qndvq5e\",\n                \"balance\": 6.3168217242520113088871e+22\n            },\n            {\n                \"address\": \"one1w70ts3l3ehdws08sdx7n639lxp4fgg4ztxxp4s\",\n                \"balance\": 6.3167888425068326046053e+22\n            },\n            {\n                \"address\": \"one1445u8kcryuz98d0husyrn0dnudfs77fuzdtqfm\",\n                \"balance\": 4.6182758472919369548711e+22\n            },\n            {\n                \"address\": \"one12h79f9lmyyrzfcf08a2zzuv4mct72e0vsyfcax\",\n                \"balance\": 5.596902588339314888473e+22\n            },\n            {\n                \"address\": \"one17fth44p5a89fyck8sxxz767sqzt35frxj9f0lq\",\n                \"balance\": 6.2797181930767862229633e+22\n            },\n            {\n                \"address\": \"one1lml39n0qemt2gg7r6kwl0gerue0q7sr4u6rqjq\",\n                \"balance\": 6.3016060620869087622262e+22\n            },\n            {\n                \"address\": \"one15wh83u4p54dfrjmmk79t4e2dgn0fw6c54ml0vz\",\n                \"balance\": 6.3148896344766039781349e+22\n            },\n            {\n                \"address\": \"one17jzfd3pwu4peerl26yxr7rkynv8385dczppnnc\",\n                \"balance\": 6.2942296632737104233292e+22\n            },\n            {\n                \"address\": \"one156pcuu77dxef29cc6nu5wsjndmk9cw4ta7crpx\",\n                \"balance\": 6.3007796517094136583219e+22\n            },\n            {\n                \"address\": \"one1wjqtk2krrlsqxcr2jgau7s58vuf2fepdu3cwnu\",\n                \"balance\": 6.3130623791328556094159e+22\n            },\n            {\n                \"address\": \"one1t0y5jmv84cu4eqeev2cczpwr63flrz22ptmnf8\",\n                \"balance\": 4.3317627460007523387414e+22\n            },\n            {\n                \"address\": \"one168rjtx20cyyqjygt248gxpcqqcw7a08ga93kvh\",\n                \"balance\": 6.3167691676809558713822e+22\n            },\n            {\n                \"address\": \"one1v525e2ddyq5xpecnq9f3gtpz6dlggg93l2uac7\",\n                \"balance\": 5.1252726889322326394453e+22\n            },\n            {\n                \"address\": \"one13j7h7mmlmlypxa2aefuuf5xrw0vjn5ahp0zfr0\",\n                \"balance\": 6.3130123583413455301488e+22\n            },\n            {\n                \"address\": \"one12su07r3rk8hgg8e36gds92z5370t8yhjyxpp0h\",\n                \"balance\": 4.6556390705430239591011e+22\n            },\n            {\n                \"address\": \"one10urht2e6gfeq4fskmnwrlxnx4vqhaxzz3d00em\",\n                \"balance\": 5.0827220524627913722929e+22\n            },\n            {\n                \"address\": \"one1g4g72jk5cumlmnkzzslzhlv9vwp85clx2mmzau\",\n                \"balance\": 6.1938581353143994957428e+22\n            },\n            {\n                \"address\": \"one1pey5w5wjv03acwwj0rwhft7wr6dulesjkrl4ah\",\n                \"balance\": 6.3169265835870496730036e+22\n            },\n            {\n                \"address\": \"one1dzr9ruh47we0lmtkaxk4an7hxe8qp2u6fqsett\",\n                \"balance\": 6.0988081263408540048862e+22\n            },\n            {\n                \"address\": \"one1qt8z2h76unuz4jh60hupddlct8pes30hfclm4h\",\n                \"balance\": 5.0656501877774968390571e+22\n            },\n            {\n                \"address\": \"one12p85puccq3h6fgdtvhvmu2932yutv8xgk3lynk\",\n                \"balance\": 6.2882949008585654451213e+22\n            },\n            {\n                \"address\": \"one1cppp40k4kkjq4dwa9lv60wgc8fhx0c7yzr88l9\",\n                \"balance\": 6.3003324399332418167135e+22\n            },\n            {\n                \"address\": \"one13rdkjur7mzqvvxvpp644eehr50zqvahrmxg6n5\",\n                \"balance\": 5.7781142816614820670833e+22\n            },\n            {\n                \"address\": \"one16fcp2y6fagty2wmc7qglcezhvk9sa9vqtkp8h0\",\n                \"balance\": 3.258086456841912027961e+22\n            },\n            {\n                \"address\": \"one1stcz8mr4u0efye4vl4nefq8k0v6cdx8aalxw09\",\n                \"balance\": 6.1844828480153494126998e+22\n            },\n            {\n                \"address\": \"one1xreg53amt4gke3g3jag4h64h4n0ndprsu2nuep\",\n                \"balance\": 6.1976373172992214234043e+22\n            },\n            {\n                \"address\": \"one1ln27g8ypym49v7pudkazp0ftv9lekdy7hxldky\",\n                \"balance\": 5.378666473640787981056e+22\n            },\n            {\n                \"address\": \"one1pr0cgkwwv7h9dpud02uqje582xjanfxycfzr07\",\n                \"balance\": 6.3169973024595220255122e+22\n            },\n            {\n                \"address\": \"one152hm7nxgr3ng4xwpv7dghtntjza9sq58q7za67\",\n                \"balance\": 3.4973932661516478401255e+22\n            },\n            {\n                \"address\": \"one1q942nk0nh04phhlcsurzfj4a0e6rqdwvasfa7k\",\n                \"balance\": 5.9060196350950481096963e+22\n            },\n            {\n                \"address\": \"one17n0pxvjsz5sgan0hnu5pj6vt25u44urnm9cp3e\",\n                \"balance\": 6.2890896321570951646296e+22\n            },\n            {\n                \"address\": \"one1cjkgecdwqks3st9qxt4ns3y848evl2jwxcxsh8\",\n                \"balance\": 3.2978433073192233722337e+22\n            },\n            {\n                \"address\": \"one1rcl2ax4y5ksa67d5c6qnavgk79xstz7wxu5k3u\",\n                \"balance\": 5.6352733977030274600003e+22\n            },\n            {\n                \"address\": \"one1prmemfp0txxqmf0rh6an5w5hc4mmcghnlc0pn3\",\n                \"balance\": 5.4103762798359159606894e+22\n            },\n            {\n                \"address\": \"one1597ccchp5npfpkad505snsnjzlxzmcyye5dk3t\",\n                \"balance\": 6.2726761807357976460927e+22\n            },\n            {\n                \"address\": \"one1mhc3sl6u43uvwxapy9h04th2fq4mpsqg0d7gpf\",\n                \"balance\": 5.8407023914363687459709e+22\n            },\n            {\n                \"address\": \"one1vhcut4wcgu8wmm0t890mlknh2qmm8y8zjw588h\",\n                \"balance\": 5.3255707147426444710297e+22\n            },\n            {\n                \"address\": \"one1fnr7raecmnu0vegqg5t2ssgewkz97m03z0uppe\",\n                \"balance\": 5.8436911193873077479858e+22\n            },\n            {\n                \"address\": \"one1g568wpxknsp7j27nun27p7fa3ll0fej0h42j7v\",\n                \"balance\": 3.9994803753611322938521e+22\n            },\n            {\n                \"address\": \"one163zz9czzgkc47taypfpl2axy9tuyugr8a49rjf\",\n                \"balance\": 6.2674434265281287839142e+22\n            },\n            {\n                \"address\": \"one1nyewdjjvm53ytz8ag496x9ye7lmw0qaayr6qqu\",\n                \"balance\": 6.2221117190487429428513e+22\n            },\n            {\n                \"address\": \"one1tj8vz0qdgaf78nwuqqee20cfn036e2s5nfgdgq\",\n                \"balance\": 4.5970854402396160281161e+22\n            },\n            {\n                \"address\": \"one1cfrtcemg94y5n5ke0a4hfwf9fp9hhdhf5kcg9u\",\n                \"balance\": 5.9001998933156675769404e+22\n            },\n            {\n                \"address\": \"one1y0xcf40fg65n2ehm8fx5vda4thrkymhpg45ecj\",\n                \"balance\": 6.2965224358069684951302e+22\n            },\n            {\n                \"address\": \"one16jvl43d059a4wpderqu82wlm7t3qzw8yta3wgn\",\n                \"balance\": 6.0148053374923671422241e+22\n            },\n            {\n                \"address\": \"one19jtrujyvqdvdn9wm9tne5d4vrwvy36y69msczs\",\n                \"balance\": 6.233965129224986039279e+22\n            },\n            {\n                \"address\": \"one14uzsrvucmxx5wwkx46r9a6mpqgtjlrchelw5pp\",\n                \"balance\": 6.3142941999526042914859e+22\n            },\n            {\n                \"address\": \"one1c4w9danpa5v9zqurnl07lkqdcwyn3yfm86anqu\",\n                \"balance\": 5.9023102787239499855324e+22\n            },\n            {\n                \"address\": \"one1gqdnwl6zmn9avnaksqv2555x388nr792v7gzjr\",\n                \"balance\": 6.3150847085432153008116e+22\n            },\n            {\n                \"address\": \"one17nacqwrnwgq7pk8eehn7j6jphxt0draqpkztpf\",\n                \"balance\": 6.1443245729081905090648e+22\n            },\n            {\n                \"address\": \"one1q563tnpv4tnh7l30p2wy3gnu3akhd6va97w7ku\",\n                \"balance\": 6.1173163293562441651056e+22\n            },\n            {\n                \"address\": \"one1zzhwus03x3j3fgtust0v07k7rf583rrp84zdet\",\n                \"balance\": 6.3151545411370956943941e+22\n            },\n            {\n                \"address\": \"one1c0aau6shrtxqgenpf5ymtrspxpvw0sxj0c7hrq\",\n                \"balance\": 6.0876755499336217292935e+22\n            },\n            {\n                \"address\": \"one1sgcpjc405ueglhp5udsskjxcn8crrc2lmuf35c\",\n                \"balance\": 6.3163899295275262774763e+22\n            },\n            {\n                \"address\": \"one108uwrdejhf3es7rn6h4cdjqnvnpv75pp7t5ne9\",\n                \"balance\": 6.3156569470144665263217e+22\n            },\n            {\n                \"address\": \"one1yeay879a7dln5ltnchytx8eennpz332qn7yjx3\",\n                \"balance\": 5.6367430218889707718193e+22\n            },\n            {\n                \"address\": \"one1a4nhuqsa7d2znx8yq7tsuyf86v6tuq597y925l\",\n                \"balance\": 6.3151191219021511762646e+22\n            },\n            {\n                \"address\": \"one15u2v6f56pj3rzvwge4dwl3ylg5zh3395nzj57y\",\n                \"balance\": 6.1456112725788336860186e+22\n            },\n            {\n                \"address\": \"one12vyznqd6lz6wwr9gkvd6q5zy9sswx792dh2eyv\",\n                \"balance\": 6.3123781323111776866902e+22\n            },\n            {\n                \"address\": \"one1khuc8sclm8lr09e0r64kf3jjt684leggzp22h4\",\n                \"balance\": 6.3117826270051664247256e+22\n            },\n            {\n                \"address\": \"one1xhwspfzgv3vh5fp9hxwngv8tvdj2qr338lmavw\",\n                \"balance\": 6.0225421853271869264472e+22\n            },\n            {\n                \"address\": \"one1juqumez0qr2jwacj7vvvf79t2pnmnr24nw3cec\",\n                \"balance\": 6.3157469742338080438349e+22\n            },\n            {\n                \"address\": \"one1mgwlvj9uq365vvndqh0nwrkqac7cgep2pcn6zl\",\n                \"balance\": 6.315858833783656522972e+22\n            },\n            {\n                \"address\": \"one16m5r7awa4y2z2cyage4cns4uejxx8rn0gw77ug\",\n                \"balance\": 6.1430049471617278438971e+22\n            },\n            {\n                \"address\": \"one12saruhnv9f63dqhuadjq3vhqm3nwyw2ac40uyz\",\n                \"balance\": 6.2967267478621290938331e+22\n            },\n            {\n                \"address\": \"one1gemlvpun4528ajv7pcn2d9fufzcv80kjt3dxwg\",\n                \"balance\": 6.2365182924461671346354e+22\n            },\n            {\n                \"address\": \"one1mzlm2tt9uhas0qnk86nwxqfuhvjnh5349pf23z\",\n                \"balance\": 5.9891421069996787650577e+22\n            },\n            {\n                \"address\": \"one1mna6y63xwzh5zaajsj42trrn9tgkqcwa2gaszs\",\n                \"balance\": 5.9267502773566174699119e+22\n            },\n            {\n                \"address\": \"one1284fqe06amt67j6cwrj6c2yrcjudeq0uygjyq3\",\n                \"balance\": 6.3147933207778855677413e+22\n            },\n            {\n                \"address\": \"one1y469t49t34c7sylrd9pthfam6xmlz5p3zh2zdj\",\n                \"balance\": 6.2455890018700553965796e+22\n            },\n            {\n                \"address\": \"one17ffl9csu7ln3jw07fcvlmh2h8e5pv3ddk9p5sv\",\n                \"balance\": 6.3158375437315918803526e+22\n            },\n            {\n                \"address\": \"one1nlptlw8srthgljachm4w5rgv8ulvkt3cgk4uqq\",\n                \"balance\": 6.1448764987090710746208e+22\n            },\n            {\n                \"address\": \"one1hxqhp9tls9r4v5hz208g93exhvz5ak258ut7d2\",\n                \"balance\": 3.9469814984322818692676e+22\n            },\n            {\n                \"address\": \"one10vy4gdzga08vhenqke36x67fjqukyzk6d4hrqw\",\n                \"balance\": 4.4828173773310881768875e+22\n            },\n            {\n                \"address\": \"one1efat5elqnvttf7gm86q9kmt48z69njax464rhv\",\n                \"balance\": 6.1497774115203381749067e+22\n            },\n            {\n                \"address\": \"one1sntqyfuyk4s4kxze7h5sws02jnka287v47q4de\",\n                \"balance\": 6.144705897523168397956e+22\n            },\n            {\n                \"address\": \"one1h2dynptqmtgdfg9fgpd8dvmv8scupkgtzapx4l\",\n                \"balance\": 6.3102611747072740715314e+22\n            },\n            {\n                \"address\": \"one1g2h035trcm7dshsq9nqxzacr08ane0gx7kwjwp\",\n                \"balance\": 6.3163928267074787835393e+22\n            },\n            {\n                \"address\": \"one1p3u89p0p4nxaj5sdcx0s20g5u9a3xjccjmfwuu\",\n                \"balance\": 6.3155857203288257939222e+22\n            },\n            {\n                \"address\": \"one1nq5dglmw0vunsa34mve8sdyrkhfd0373v4xgtv\",\n                \"balance\": 6.3032363134427286681012e+22\n            },\n            {\n                \"address\": \"one1kkcw2y5d9w9celf0vu025hflyxu33gekmntx9u\",\n                \"balance\": 6.3048859442700592506369e+22\n            },\n            {\n                \"address\": \"one1w7ly3zmxn2qe65hddqk9tepgt7nnypn52ua7fg\",\n                \"balance\": 0\n            },\n            {\n                \"address\": \"one1s3dx73sa5dzrksmds5recptale8pxsa4d4hzt4\",\n                \"balance\": 2.889595980340830326899e+21\n            }\n        ]\n    }\n}"}],"_postman_id":"4dfe91ad-71fa-4c7d-83f3-d1c86a804da5"},{"name":"hmyv2_getValidatorKeys","event":[{"listen":"test","script":{"id":"260f5bd9-c017-4a30-8d4f-75bd8f64ceae","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"1439b580-fa3c-4d44-a79d-303390997a8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getValidatorKeys\",\n    \"params\": [\n\t\t    1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> : Epoch Number</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> : List of public BLS keys in the elected committee</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"1f5bf37f-ce18-4354-92f4-a9bc204a10ee","name":"hmyv2_getValidatorKeys","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getValidatorKeys\",\n    \"params\": [\n\t\t    1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:13:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        \"ca23704be46ce9c4704681ac9c08ddc644f1858a5c28ce236e1b5d9dee67c1f5a28075b5ef089adeffa8a372c1762007\",\n        \"50b20b4eb89041aa4715e87e4aa6430e674658959d8be657d43e4d3d4c35d7507d6a40aec5188218dcbb5460e354fd12\",\n        \"5ecf182ef0cfe449470d900dbe4ce312d534c882765e639c59525f2710d9f96a04abd871e4f0afadc1bd4b07a54ea106\",\n        \"6350958f98fad3d2aa3d8655d11f60acd67a8f9574f580b5f09bd602c644365c548484a0d2a06714124b9f6e01dcd794\",\n        \"a54fdb9bdb8fd96ff9c58002ab528e2b1515be0dcf45a92ac03b47c0995d93ee41901d611cf13d92c20fb03d6abddb08\",\n        \"cfdbceeeb2bfe61ae2bb8c5743f7c51cf8767945f66f3701d8350f319d6a487470d8a871e21279172944c0d06070eb87\",\n        \"0110a0a1e55cfbe6928e1997f26a0cc8264c61e43a76c66ded32a0ca40b610656b20d4677175f80df055669a50390c03\",\n        \"f9d624113a56ef8ea08119a0162fa81b6e644b98af6c1029c98ca72e1fd79ca4c36dd1a2b4ea2ac916d08a3740c25c19\",\n        \"02bd0857e2cf224d5f4a7cdbccbce0ece8eecb560e49f5955f28d98e22e60b6975d5cd890ad70cc557b7c1879da44a82\",\n        \"5ae80464819a6062b2c93f2884dd3400aab970a0e70dc58bac7d5b394971c338598e0ee5aa8812adcb0b40898a08a590\",\n        \"ea781dff5e22998622b7b19c189b8bbf4050384238853fe3b8f2f0a80401364589b5e67ff54f05878fff42d7b48aeb00\",\n        \"6bfaabe3a12ebb4c8991f1221a995fb0a2756b2d48ddfdfd2fc3df42e554187d473634cee58159dd81ecc24989b5d38b\",\n        \"b885040f11b742de68d121cb8da133099afb876658ab7cabb5624794b37f48b00e438ad447478343375dba7b3099a991\",\n        \"c42479699f74dddc90caf2ec5f8825fad746826797948c299f7a64ade7c8b37a9ecfdc8cc714204e813413073ac12d0c\",\n        \"ae420cc03a18543fb2e57e1434b52fb65981465265b60dfd375fee68c910a893e93db23b258da658449ac055d8a7eb0f\",\n        \"225065e248691c59e004808b45733e3a84b53b977580e193057c337dafc43bbf39963bb37b9564ea39d72361c78fbf0b\",\n        \"7f5eb00ed4b061ab486ab66c28ec70ee3bd3f88b3348f9b4f6ad9ad820daef4b5242a780737021b5a5f675ab78f53e8c\",\n        \"aeab90cb890d1419bd6d215e65f473b73efae07a9686bec906e300e223abeaffb7da06a6fb42abf3dee9e828ebbfec12\",\n        \"1c193e6077a36d290a29d4d6c45ad2cb7163ba98f29029b3ef968a5e464561806ef0d86ed0c81e98d83ae4f87d0f7309\",\n        \"927d06aa9bc1334ef5c2cd08b6138574509ff0e62aa0bc5b207119e75aaec13e1e81df367a648c74cd15f40e63634485\",\n        \"78c409907db47d0872eaa7ebeb35f2ffcc9c9a69b1179676f9783b39fcefe66e96060305419561ac7cd0b0d70f950007\",\n        \"0383b668cf36b3887e48004734ebf989d5547b5c153e8eae1ed568a4fab1972e4bac08e4985e15bd582c9f6d28941c0b\",\n        \"2a7416c9b57cb1e34978ef473bf9bc2acaab509fd9cc542056aa60fe0780a69cbd49f5a91129fd6c4f98ae7312495499\",\n        \"a1d2c2c919682772190ed2d0d5fd592538964ec8d5ac066c03177b2a840e1ff5c81418473169fdd9017591209979df15\",\n        \"a9c788233dda857bd19233cd4b547bcafc4211e6cc6cfe43ef2ccd0ac576ae944683b27a003fa95d246b71579164e00c\",\n        \"ad009861e1389ed152b8a5ca48f9a095f4d29701ada0ef126f6bb6ae01995e38b0c527fa1c479e77bb9fb61171dd060e\",\n        \"38d7ecfd350b40b51408392a7d589a6aec2315053c94226fe8aafbfcf9575497b55e3a90e3e1639c09fcf4db34c7d503\",\n        \"22721801c98e71190bc64eddc04b2d422f5f0fff4b939654e00e4063754d2ef0921627fd6f96f1db112724e139c05318\",\n        \"5a34b281d855a854ac7eef415a51c632d5de84a63e5500f4929bc9860a552a36034b7a318c271c87c8765b4ae4528413\",\n        \"4011d03567248f5ffef3a82b9b5ac94f327bbff25f955123371ce0c1a90cdb469e8ba200e24a5e552a0efadce58c1e89\",\n        \"9792041e8264bfadf82ac62dbd7ff22c0681fb4dae9a111dd528aacb0bcae4ac8bd16afa2874f86d4beb9cfea69bb30e\",\n        \"d1a74426b887744b32f62b2f070f0b8ba8010fba4581189c35a51d241958ce93239a0c1a749495573003049f59f1918f\",\n        \"5b38c8854996464cd60656ac0afec5b460f9451124fe576229aafd8775e217e0e6f783ce56235957adb137c7e7caa30e\",\n        \"49c69f426110466721d9dc4fa2f0b4808c546088ccfecf77e42f1d60719b7932c44e7c18771057f164e03cdb6486d000\",\n        \"deec63912e755be51ad225d9feccc89a97dcb02b4047cc04c8c9312b8e9076aa21b0a96c0ea2ca904213ca349b253d93\",\n        \"a27eeb7976954d052078c8a3512449b61886418677131bde005441dd4738c90a783474bffd91023631a4a62286563b96\",\n        \"11a25753e8d36f97580e6e15790ea47e22ad84a8b638e880e42bca765d9587cacf3ac1fedb3cef6f4087b071bfc1278d\",\n        \"0a186205b9ac93d83d1d474c3e548715e8c3dbdb4882d60c8ff69b01e950b6c4f3db5b680377701299345f17a509570e\",\n        \"11c3606099680455db309cfa732e8e362a139259e1b89418662577a4d8a0851cdec0488acd8d8eee6adbed4e4cd68d88\",\n        \"514e2df4d945d40f873f8b4b77de13a9128377a142aa30c6f3ef2554622f708a30cb0277a17d7d5babef7d79ceedff97\",\n        \"98452fd6a94d63c8e3a20e3514f38fbc043a7290ce1a7e93711d06eadb4e5296ead92c63105f8287cd45c9f0b8725293\",\n        \"e4060b4bf6fc2bac221c0ae3de202bbaaf18a66c1b840383096151815b6f6dde0ac33b9233191e41ab1f425471f0b394\",\n        \"a52247e43b6abebf86b8c8697e7c6fd8994ca343e4311c0f6acf6c8a1738a96ab2c09d86edc3729a5e911149347d5689\",\n        \"295d06ba7b2b58896bb68ad324f58399553e3d5e774a80170ff8673b3b9fbb7e5604bdacf381b7d598cd471a3a49b190\",\n        \"fcd1036b8c7d59006ffcf8e1ecd3faf567ddb25155fa505eb2082ca886c5fe0f8b62556a78438b526777ed9692ccfb0d\",\n        \"dbee77bce2f00706d226cbc89f085c7bee45e0b11cfce8c5654636ee8c1a5a635b27c0c010b7ddde266ce44ea1435b8d\",\n        \"f1db95e67a4f1baf48a2dea65a5172a402d1369bc9d05422fb9539eff5dfa2537c2112513736ad626923092bdc0b580b\",\n        \"13d936398c988a598e96db9ef5980da9347dcb1a34e87f4a403db8901c33dfea76433c7105890c9ffc44fdcecda10c04\",\n        \"89ee8d5bc9ff2db7315525264c13c133b91516a78516d9574c347b08d5f8761dad4e1a8d3a8ba58e003e250a8c804490\",\n        \"c7f37568afec98cdd729e6f33b6b095284a96eea59389bf88239f640145c4285e342b6936968b17b9881ebf306546f17\",\n        \"7818a1a592f321279dbc1f53732de2fe7640b5294e38ea895bf4cc53e90d61015bb0fe0e9b76ea5bbde9863a51ccf899\",\n        \"7e5f9270132f34b5c9dc6c79644bf79a790a42baa1bebe76b6477aac912a9dc1f0251f57c2a06306ef7fd7d7684d9483\",\n        \"1aeb918501c4657b175d90527b67edd8844bab6977e9630d1fa73b373a1ed88a1c44036ccfbb83792673554ff14da599\",\n        \"514c26eb13b9ac9902dcd6516cb086d366ba6cc7415d79a227eab1c7517791ffcc53d0f8ecbd1c6722b18c17f9f3a590\",\n        \"aa4ee9698743ec6114251796861422de7dcd182ccebf6aafe65e9bda48577330061e2880851437f4d054b57fcb74ca10\",\n        \"e611da8fa8887d160ce8d76b0d50d45f18b89e6652b2cbcddf8d2bcd48c1758654c5c8cb907138e6a3fc51847d3c6918\",\n        \"a845c999642fb6ff96ab50cf0de871b9ccf9bba3471e69a7254c5b3dfabd62743c4d2a63dffb480554a78de7429e858a\",\n        \"9749b71a42cf13ef035b676553e2926c815be906c4173bde249ac76423e2dd6ccee1b8244a25f667bbde1c4ef87ef500\",\n        \"9a7f7d02338bbc8ae41f1957d349a30301cca90ba4886f4cb23b0a71e8b4ee9f13a5ea7081c6a5bc6617278e3a650213\",\n        \"5282fa73531fd810ad854be2bdebd09d1efaa463564c6bf52624968be6b707e76672bdc3efe6e7761e8ee7bb8e5e3b92\",\n        \"a9a83a4842dcaa3133f34e333764d3e33062a5669f75e9faac6e734360781984a3a99367f995dfda3faafb648236a991\",\n        \"e90c79600e596ff981d872d812b0644fd928eb556f369476db86b02be3143990d734e69aa8e0c6b6cf29003ab697bc19\",\n        \"3cabd9bc1ac865ce5b3655a1f15e4657a99b56cb29984d00e21142b9b8dfc69d96b8bec5071272966989d711a8e32617\",\n        \"8c48db351942443c6b91e03c27fe612d34c6cb3d1fd108428f04df762a8acab8d14a6d0456543be4e4dd56d49ddf6e80\",\n        \"077edde9fa10c8c1663bb50ac4d28ceb2d58283c759341963683ba6d43a73fbc31cc9145107abf0ef82930fae6440994\",\n        \"623718098929bb558b9a46ee2aa32402f9c8e5ac959ab7a0a5241ca69d704f50fad168efe6f363fe1a19ff7c33405299\",\n        \"03a3431e0d925662bc4da71966fe34933a50d29388327d608f8ead841132c970b8d22244f0c8fca157c08c04e8751787\",\n        \"ae02cceb71c354576b7af662695a24def1f646f71e1fda19b541cded3fb43076d68f03e1160009414936b434035f3911\",\n        \"a2219d19d547f78fa04282f1e3d55d28d7b8f04ea6f347abf9e009d2eb4ba63ba43c8a657a72023dfcd92b3fe36fd612\",\n        \"d2173075cda0ae34a76b2407b2b6b7b87f42012b313be63cacb41fd5115f31da7bc3f77c09de396badc48b122be4a216\",\n        \"57ca05a5cd653662f4004dd409a057831a79a4d7ee0b03a402c92db90ce687f8ec6caee0c3c03778e1deabb623c18f10\",\n        \"cedb69f6dde95d8464fc81b053eeb9f377b47458c83d0a5cd837b978d5e1a1fc2a1ac4970c3606c576cd1074aef12112\",\n        \"172793ea5eec637a28bc210df85acb932683c38b37b8a8e6ca8e75b0f8c00c0a9195d55ee6bcbdc36e57137681378005\",\n        \"caf70afcb26d571d355140182cb8e22215abd27f6e833340c88c080eb8bc2e8d61fbc95b46cc99cfdb64825d1ab21595\",\n        \"458e57f12ea9c1a92c237baec06a0d0335ad458d894f8d6fed29a1fb54948327096e85d196c240ef4178f2d2dd6cee89\",\n        \"dd668b34d02c53c8db16a14749365edeff51ea6edd91e4bdaae9e738a8dbf5ab9f6d226852a814df1576b311a376f198\",\n        \"39accf250b555fe249c838b5a969f49c7f9f69c55387b1b830daa4e8e72c28f5a7e7029c9a5916e474adef933162fc97\",\n        \"1f3e059b9ccea9b9f5f223a04fb0f28c890039d20bc016173e4f8c60af00e0e0d547893b9ecc2e22a6ee204e8dfeea83\",\n        \"b42b39da95826568dbaaec0fc7cf0d6a8e5b270ef2091aa15f9efef8bed4f510bba51ba11195da855d44b3bd25803d85\",\n        \"4a3cb3bf33c5133e5fcf801a52db000b62ef82fefa98cd90f8d12eb807dfcdc87d12a5c28bd6b34a6a228863ed05b190\",\n        \"9b384ec4abe732cc2855faa80e02e47159b35ad23819631bb0e5562a51f4ddf45da81b2a09e0782b3bd0e94a6316a817\",\n        \"9fe2ce7d413b0b2930d8f00c99e8500780541aa5d72f9b0d19ba6364d8dbadc30e14ea2885f6d65bf7272158ba113307\",\n        \"738cb0203a6c01c64031e22a76b117061b85f499faa446e0b7f0bf81804b61302626729afa0b6b2073dd77c044b49093\",\n        \"479b35fc9b04c2027d9818fc42133eab872ad89c1e4d434523e3ee06f434601e3c52de77a0fa1989bb0ff4e0fb9a0c19\",\n        \"0995dce1f64701c2502fc8b627df9e57d10ca49875022b8a7a7b447c9672be04a7771fc97eb8190df8002536f93ca78e\",\n        \"f296c15a7015503a346f542a9da87eec2fe5c06036c12fca7b182c2183484848d4f8b1edf0c5d71be59ce52dda9fe190\",\n        \"d347b60a226fb55e3f3624b5a40d08b5958f8a44c3c89274105108c2afb3da9156d4bde1ec16ea33b409a980d4efd293\",\n        \"376b54621b144654dba41295e76d413c222688c12ac4cfdb1379260cea4870344db655e72e16c388cf59ef6e0de39288\",\n        \"4d179bf6082a2436540c5fe1d84cdd2868377af042ee18e17876d5f8e22ad1aeb8ef4480271d5b29d15bc8c9228f7611\",\n        \"6faad32b862cd7b52ca315cee857de8aab3d4b6b04e5b6c46223b8f4a49b6420019abab977378bb0577ca8ece8f7e604\",\n        \"a99d649ff8d94c826c3dc3a21b52095425122003b0dfa0ae269915d0488328c1d67a5e46fd1e60ee1ee81b3b8e438519\",\n        \"d809b93446ce9a379fac35eb823809b36e4da993170ea014a76119092b6ee7825e55ae1bd63a2a6bb4bc6504edde768e\",\n        \"5367b3bce6b557c719f65d5ea0061363a8980d30c185076c1c12ee4d683c26d1749ff5820421bad66157ce62f71c3510\",\n        \"01f743d70cc3ac969b1da159a87ef2b098ce849d71dcca2fda81481fd4bd0ed3b1a0e4e092f6d451cedc2b0afc5df313\",\n        \"613feef4c14f916d63a8645a623eeb394c55eb78a05c7be8719ff56f62e9c8cff1ad97f20280fe47e209887a8bc69704\",\n        \"396c1d565943c941b832d2999b48a36efab2c1081086428fedf85325093a9588c710251a6bae45d0f452ff6363a71f13\",\n        \"f25f453d7a223950e2155f91b0deee7db3499b0b6ae19324dc118aaf3d630be4f52b7e8a12fa391a1033a5a7e28db00e\",\n        \"1f2d74b5befca2f60acf948b7aaff960cfc628a2f8042fbdfc123c102f7ca7758279bce4a20d2b98c5493fea8ba8c708\",\n        \"0d73e64927d37dbd7297c7ece55ddaec6f427217165e6e482e0cabe8b67327a1907de8f69e58482824aac4aaac47e602\",\n        \"b4253fa4e998c80672789b2dafd6e8821b7a03e258a0395e639337d7ad18463b28cdc55093196246a6aba513e63e970b\",\n        \"5210d58005e37c9d54db3d2dead462d6f896b36db43ade706e2d28f2d7a99a14d1119b2a45d4c09d348c6e399a171b80\",\n        \"996021ce105fa2d44925f51efc3834fcc5d551c72391d387669a657f30877058cb641c348292442d488879de562a4f95\",\n        \"b5cb74f26c0fefc937fe1a6d38bc5c9571f95607f02db3a4392cb2ae55d408d645ac9f1e9bc88c486185b371d26bbf92\",\n        \"a0a3e37f8ebf345ea1cf3c9915e203dadc9568caeca69d61ead3357c26aaf7f568476d588f0d2eba227500acb0527183\",\n        \"c5cab19917002a47aae411017695af5bb7fc60a12e01175e8f9f8591e6905644011ff168ce204e0e625d7cc5944e020c\",\n        \"fb4011905e4505eda64f465013e6334c718708747c03c2cba8ec98c0881e1e1f82383cee23cffdbcaf98e5a14e9ab30d\",\n        \"e2cd254c82718e67b2bf07ea4051ac6922ae38292f1e28224d0569530d3bfde1343e56a322bba09b6b69b489ece24017\",\n        \"0a2c8055849a7d06aac00a6d7e2a884b6d9c36baf52faa0c96087a35abaa54e32429a280238402cda4773dafbe512d82\",\n        \"09ede6fe871b8f629a487ef070448fb82b1ef7075eb7aec2941ca3f1a39cfc054bcd3419571034b2f676d285e3d43518\",\n        \"0485ad94e8d85d716b03b187e16a6cdf5c3b3b23e00b06edc292721053d475d3fb959aea44e45e2d5b3d8b8bdce2e309\",\n        \"ba69a459478fc0d48eaca27a1c1fe47cf6b51329f2f7ad166a81d90d1401c9f3e54d5de6c763a643e1bfe51d5b4e6306\",\n        \"65558b383e981a224d58d6221ba295c8f4fb4ab914f6bca4eb5b671f8c28b8bba103f5ca0c7b951bad02332adc4d2505\",\n        \"9e70e8d76851f6e8dc648255acdd57bb5c49cdae7571aed43f86e9f140a6343caed2ffa860919d03e0912411fee4850a\",\n        \"f7af1b02f35cdfb3ef2ac7cdccb87cf20f5411922170e4e191d57d6d1f52901a7c6e363d266a1c86bb1aef651bd1ae96\",\n        \"bbd0b173ace9f35c22eb80fe4673497f55c7039f089a3444a329f760f0d4a335927bb7d94a70b817c405351570f3d411\",\n        \"43b1376eff41dfdccaeb601edc09b4353e5abd343a90740ecb3f9aac882321361e01267ffd2a0e2115755b5148b1f115\",\n        \"817d92d1141cf3dee3dd9b522752f4e515fa3d487dd4627951ba3e47a2a2704d1499912b1783cd544cfcdef3abd41b13\",\n        \"491d1db6085e08146127635098f45c6dca7be7a5f4a27d5f404bc7064acebaa3518c2dbb7f5b43ae1dc63385c449d00d\",\n        \"249b2776b64f0fb04fb76f184da218541b727970e9ae3b79e1dd0ed673567a5fd8c4870cf604eb14c5a004972d5f5f13\",\n        \"4cb81c627f179a67085ed9fc80f851ea357debad60ebaaca7e8e091a54efd1ca5849094524aa55527b0c173530b1c392\",\n        \"7f01b62e63b020c1406558153393f346230e7a87d4921bc756bc08e49b88f749b45bb624dbe79e4d95bd83bfbdac6605\",\n        \"ec2fa7a80bb5643958765cc4285eafced0c7be0b7b5543454554f764e187d63ff7952be490428974b8c81cc90db44899\",\n        \"dc9e4e6c9e4782012ccf628e3d3e7c1763ba2f78de99b98b89fac63b1f4375e288d5e155e9ee64fe126f78ce0088db10\",\n        \"c541fa6d4d97bcae0e502d5dbe64ba9d2b6b28fc8cf498728ab249d9c9efaa5148eb91b0d9827d7effeb36720f0ab813\",\n        \"ad94bb49728b51a77b8912e70e260b37b8dab638988ead18413f772546944e2b42370e570cc1e01a862de82c1e7b0081\",\n        \"7f24f0c9af2239090e6ae593d665589651f4d8c4f5bf8ad40537ea8d3e912da82588ea3b505991b2aa96057015d1458d\",\n        \"43b6dd212b5ec9aa1c8055653813f7d0edbeb4ac8e1b679246efcfd709965df0ab6537c791423ec14a5f05a47cbd110d\",\n        \"90afed6000f27a5c47f04bf072efc3a7e75a6f75993c91a56a29d3c367f0952d97620fecd06c879c13d1068d62128506\",\n        \"3af05ef78a3e2b4ef4f2726284705300b88066f350506027ed853dd96a270671b46cd4b0ec675f8c9ebcacac7f99b984\",\n        \"014d802636d36a50a687512b4f81f4d93324518c8099884b90e5467fa3d7f7fd52ed2e65892db70edf6df4a30530a78e\",\n        \"1b808984cd5580e7393b77b3927d5ca6a8b3ca80f68a7d4dbd517e95309f8fae25dc237229cd755b13b7605f873eeb0b\",\n        \"ca5b587ecbc68c1f9af60dc6452f98705073029c27422a37898dacc3451594dcd2da7b75d62a387e3520240ae46e130e\",\n        \"056f7e81e119f343ff72223955f7c007ffeff58dbb6e67bdb99d8c187068eda288b7dfec63dd7dae5546d9da3b89af84\",\n        \"b443ad07d019e1ab4c1cf8d18d493f34003a6e22d28b79218ed77d072925deb852bf74488bff67ca0126738aaf58e08e\",\n        \"ed5560d677881b6da88b81f00c7d50619d2d73323dad581d50074a7dd95d4ad373c8ec7ec2e42b922ffaa5d12da4820e\",\n        \"7b6bbfa895e0a5fbff75be2f34fad079fcc6e1a8c6574d4dbd92179d17e31c3eb8934841ebfffc84f93b3d2804217a8b\",\n        \"f28fb1c2cb46870629665e46dc2e439a5c3e1129077bd28449c6093e88353d6e58b668525e8173f60847475bbb436e13\",\n        \"2eb142677d24082e1435ac54dee102c9fc9d897c2f87ad9f99a88cac93445be8cc295c6b2ac34c196cd9b6f1b376d711\",\n        \"effc27695b63bdf62d46f83bc145ad491c893697513cbe25ca86927e8fb846657423e269727aa7bea36d8ffb66ae0d17\",\n        \"eea71fd6de285a1031f67fd63774eff75b7803be888de7eb64b9a325c0b8543101d91cfac04f0d6f61ee6102350f9c89\",\n        \"4669655c95a53997e01f176f8f5fd6038f324aab149f5cd5aa16da4e2400df7eea6d9a69ce6c2c1a4f2e879a0f9c2484\",\n        \"95bad32a857901a2eecf20aa516a6fc0c21d85015ba0dc70a966f0bd70b0f3bc0f5af356fac630ef53e5e1a329d7fe0a\",\n        \"445ef889e5f294f1a5d231ff0de6fc25f228145c36d813084c9aa5e33bbae0b73cc71efa16b88f0490a80660564d2293\",\n        \"2066a0b39474b9cdaec88bb94953219a2690e1dd6008bb6dc31c7f76c08a9db54758ff3aaed3249fcb0029dfc1e92995\",\n        \"eba7d6ef491406287cd539a59cbbccd35fee9283bc6c70676b931831749de4a7eef9589c230517c13d048d9ebc73d004\",\n        \"814843ee8475adb2245027e9531e036c4135cf25a1051d5ea97f9f9cea506503e4a83a49bea1ee40e5b9a9c5f55f8014\",\n        \"fdae69318dbf9c54f8b0e841b5cf0cf2f733229e29e2bc4966fddc1df2811159164b4c2d9bb4c7cf7a060847a77fcd81\",\n        \"1484952d700eeddecbcc5093e38628e7f342b1974d411858b21ab5eeddd3411c185b38a22537b95a3c29bcbd7124d383\",\n        \"a48d7cd3f3004cf2cecd4d4eba14d257da046f13ff461fedc2c3daaf725776e9a96ef38098a9a04f968f9c2287fc220d\",\n        \"b12b30b10c9b002ec0832d061025b99a695052800ebf642299fd439be505322208543566efda12b524b284ce5ea06510\",\n        \"9f93417f500c8791a890880b45b040792648806280cac3d67b7445f74817e60eff803dbc68b4bda38ebbb376d54a3d00\",\n        \"87d4f6c37073a108b94a6e7799f62b2051c44892328bdcb8e5dd4f4596b1ba2952947c744b5daf183e9f8361282c9101\"\n    ]\n}"}],"_postman_id":"1439b580-fa3c-4d44-a79d-303390997a8c"}],"id":"10a8e7fa-0152-40ab-9834-7be1fa1c35f5","_postman_id":"10a8e7fa-0152-40ab-9834-7be1fa1c35f5","description":""},{"name":"Node","item":[{"name":"[WIP] hmyv2_getCurrentBadBlocks","event":[{"listen":"test","script":{"id":"d1b7b186-9540-444f-873d-f12c83eedf3e","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"0ba3c7b6-6aa9-46b8-9c84-f8782e935951","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getCurrentBadBlocks\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"note\">Note</h4>\n<p>Known issues with RPC not returning correctly</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<ul>\n<li><code>Array</code> : List of bad blocks in node memory</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ba3c7b6-6aa9-46b8-9c84-f8782e935951"},{"name":"hmyv2_getNodeMetadata","event":[{"listen":"test","script":{"id":"c7ce2c18-7b79-4448-acb9-3c5eba586e42","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"03c39b56-8dfc-48ce-bdad-f85776dd8aec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getNodeMetadata\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Object</code></p>\n<ul>\n<li><code>blskey</code> - <code>Array</code> : List of BLS keys on the node</li>\n<li><code>version</code> - <code>String</code> : Harmony binary version</li>\n<li><code>network</code> - <code>String</code> : Network name that the node is on (Mainnet or Testnet)</li>\n<li><code>chain-config</code> - <code>Object</code><ul>\n<li><code>chain-id</code> - <code>Number</code> : Chain ID for the network</li>\n<li><code>cross-tx-epoch</code> - <code>Number</code> : Epoch at which cross cross shard transactions were enabled</li>\n<li><code>cross-link-epoch</code> - <code>Number</code> : Epoch at which cross links were enabled</li>\n<li><code>staking-epoch</code> - <code>Number</code> : Epoch at which staking was enabled</li>\n<li><code>prestaking-epoch</code> - <code>Number</code> : Epoch at which pre-staking began</li>\n<li><code>quick-unlock-epoch</code> - <code>Number</code> : Epoch at which undelegations unlocked in one epoch</li>\n<li><code>eip155-epoch</code> - <code>Number</code> : Epoch at with EIP155 was enabled</li>\n<li><code>s3-epoch</code> - <code>Number</code> : Epoch at which Mainnet V0 was launched</li>\n<li><code>receipt-log-epoch</code> - <code>Number</code> : Epoch at which receipt logs were enabled</li>\n</ul>\n</li>\n<li><code>is-leader</code> - <code>Bool</code> : Whether the node is currently leader or not</li>\n<li><code>shard-id</code> - <code>Number</code> : Shard that the node is on</li>\n<li><code>current-epoch</code> - <code>Number</code> : Current epoch</li>\n<li><code>blocks-per-epoch</code> - <code>Number</code> : Number of blocks per epoch (only available on Shard 0)</li>\n<li><code>role</code> - <code>String</code> : Node type (Validator or ExplorerNode)</li>\n<li><code>dns-zone</code> - <code>String</code> : Name of the DNS zone</li>\n<li><code>is-archival</code> - <code>Bool</code> : Whether the node is currently in state pruning mode or not</li>\n<li><code>node-unix-start-time</code> - <code>Number</code> : Start time of node in Unix time</li>\n<li><code>p2p-connectivity</code> - <code>Object</code><ul>\n<li><code>total-known-peers</code> - <code>Number</code> : Number of known peers</li>\n<li><code>connected</code> - <code>Number</code> : Number of connected peers</li>\n<li><code>not-connected</code> - <code>Number</code> : Number known peers not connected</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"6142eb2c-f87d-43d6-a58f-37898c9d4fa6","name":"hmyv2_getNodeMetadata","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getNodeMetadata\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:13:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"559"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"blocks-per-epoch\": 16384,\n        \"blskey\": [],\n        \"chain-config\": {\n            \"chain-id\": 1,\n            \"cross-link-epoch\": 186,\n            \"cross-tx-epoch\": 28,\n            \"eip155-epoch\": 28,\n            \"five-seconds-epoch\": 230,\n            \"istanbul-epoch\": 314,\n            \"prestaking-epoch\": 185,\n            \"quick-unlock-epoch\": 191,\n            \"receipt-log-epoch\": 101,\n            \"redelegation-epoch\": 290,\n            \"s3-epoch\": 28,\n            \"staking-epoch\": 186\n        },\n        \"consensus\": {\n            \"blocknum\": 5535461,\n            \"finality\": 0,\n            \"mode\": \"Listening\",\n            \"phase\": \"Announce\",\n            \"viewChangeId\": 5535645,\n            \"viewId\": 5535645\n        },\n        \"current-epoch\": 321,\n        \"dns-zone\": \"\",\n        \"is-archival\": true,\n        \"is-leader\": false,\n        \"network\": \"mainnet\",\n        \"node-unix-start-time\": 1603471976,\n        \"p2p-connectivity\": {\n            \"connected\": 417,\n            \"not-connected\": 48,\n            \"total-known-peers\": 465\n        },\n        \"peerid\": \"QmcJhJb7bBeZuvfHjBBm6xhiLCEYwAPWguK4TXdDBPNJvL\",\n        \"role\": \"ExplorerNode\",\n        \"shard-id\": 0,\n        \"version\": \"Harmony (C) 2020. harmony, version v6358-v2.3.8-0-gf21b7d6d (jenkins@ 2020-10-16T17:36:25+0000)\"\n    }\n}"}],"_postman_id":"03c39b56-8dfc-48ce-bdad-f85776dd8aec"},{"name":"hmyv2_protocolVersion","event":[{"listen":"test","script":{"id":"46f13931-1716-496e-9657-959ec9dcb052","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"cab9fcc2-e3cd-4bc9-b62a-13e4e046e2fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_protocolVersion\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Number</code> : Protocol version</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"b83eeb8f-f81a-4dd5-9392-8ce754ace273","name":"hmyv2_protocolVersion","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_protocolVersion\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:13:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": 1\n}"}],"_postman_id":"cab9fcc2-e3cd-4bc9-b62a-13e4e046e2fd"},{"name":"net_peerCount","event":[{"listen":"test","script":{"id":"2691ad9b-b98b-41e4-ba3e-e0eeb0b1b5a2","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"09287e0b-5b61-4d18-a0f1-3afcfc3369c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"net_peerCount\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>String</code> - Number of peers represented as a Hex string</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"1b705139-e40e-4088-b61f-96e0b05f36a5","name":"net_peerCount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"net_peerCount\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:14:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"66"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": \"0x1d1\"\n}"}],"_postman_id":"09287e0b-5b61-4d18-a0f1-3afcfc3369c1"}],"id":"c90ea446-568f-4e2d-9c10-f8891619e1b1","_postman_id":"c90ea446-568f-4e2d-9c10-f8891619e1b1","description":""},{"name":"Blocks","item":[{"name":"hmyv2_getBlocks","event":[{"listen":"test","script":{"id":"4d5bb472-4377-49d3-9b2d-1511b3f322a0","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"ab9bdc59-e482-436c-ab2f-10df215cd0bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlocks\",\n    \"params\": [\n\t\t1,\n\t\t2, \n\t\t{\n\t\t\t\"withSigners\": false, \n\t\t\t\"fullTx\": false,\n\t\t\t\"inclStaking\": false\n\t\t}\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> : Start block</p>\n<p><code>Number</code> : End block</p>\n<p><code>Object</code></p>\n<ul>\n<li><code>withSigners</code> - <code>Bool</code> : Include block signer wallet addresses</li>\n<li><code>fullTx</code> - <code>Bool</code> : Include full transaction data</li>\n<li><code>inclStaking</code> - <code>Bool</code> : Include full staking transactions</li>\n</ul>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> : List of blocks</p>\n<p>See <code>hmy_getBlockByNumber</code> for block structure</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"099e4546-afb5-40fc-88f3-a9edf2eb6716","name":"hmyv2_getBlocks","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlocks\",\n    \"params\": [\n\t\t1,\n\t\t2, \n\t\t{\n\t\t\t\"withSigners\": false, \n\t\t\t\"fullTx\": false,\n\t\t\t\"inclStaking\": false\n\t\t}\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:14:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"593"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        {\n            \"difficulty\": 0,\n            \"epoch\": 0,\n            \"extraData\": \"0x\",\n            \"gasLimit\": 4716988,\n            \"gasUsed\": 0,\n            \"hash\": \"0x61ce03ef5efa374b0d0d527ea38c3d13cb05cf765a4f898e91a5de1f6b224cdd\",\n            \"logsBloom\": \"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\",\n            \"miner\": \"one1gh043zc95e6mtutwy5a2zhvsxv7lnlklkj42ux\",\n            \"mixHash\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n            \"nonce\": 0,\n            \"number\": 1,\n            \"parentHash\": \"0xb4d158b82ac8a653c42b78697ab1cd0c6a0d9a15ab3bc34130f0b719fb174d2a\",\n            \"receiptsRoot\": \"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\",\n            \"size\": 601,\n            \"stakingTransactions\": [],\n            \"stateRoot\": \"0x8be048c908585bbb6b155324ad8a854484994ab27e5987af134ad036079675bf\",\n            \"timestamp\": 1561736306,\n            \"transactions\": [],\n            \"transactionsRoot\": \"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\",\n            \"uncles\": [],\n            \"viewID\": 0\n        },\n        {\n            \"difficulty\": 0,\n            \"epoch\": 0,\n            \"extraData\": \"0x\",\n            \"gasLimit\": 4721593,\n            \"gasUsed\": 0,\n            \"hash\": \"0x705e7368bd6a3b61761c92617bc49d9a6108226872473bb9deaa6c995f939c49\",\n            \"logsBloom\": \"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\",\n            \"miner\": \"one1gh043zc95e6mtutwy5a2zhvsxv7lnlklkj42ux\",\n            \"mixHash\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n            \"nonce\": 0,\n            \"number\": 2,\n            \"parentHash\": \"0x61ce03ef5efa374b0d0d527ea38c3d13cb05cf765a4f898e91a5de1f6b224cdd\",\n            \"receiptsRoot\": \"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\",\n            \"size\": 620,\n            \"stakingTransactions\": [],\n            \"stateRoot\": \"0x8e90e429b28aea29f6560a6e19eeafcce899bdd16fedca2d1dbfe65b76488d65\",\n            \"timestamp\": 1561736315,\n            \"transactions\": [],\n            \"transactionsRoot\": \"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\",\n            \"uncles\": [],\n            \"viewID\": 1\n        }\n    ]\n}"}],"_postman_id":"ab9bdc59-e482-436c-ab2f-10df215cd0bd"},{"name":"hmyv2_getBlockByNumber","event":[{"listen":"test","script":{"id":"5949bcb3-d6ea-4ca5-b7f6-07f953e63fed","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"52f8a4ce-d357-46f1-83fd-d100989a8243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockByNumber\",\n    \"params\": [\n        1,\n        {\n            \"fullTx\": true,\n            \"inclTx\": true,\n            \"InclStaking\": true\n        }\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> : Block number</p>\n<p><code>Object</code></p>\n<ul>\n<li><code>fullTx</code> - <code>Bool</code> : Include full transaction data</li>\n<li><code>inclTx</code> - <code>Bool</code> : Include regular transactions</li>\n<li><code>InclStaking</code> - <code>Bool</code> : Include staking transactions</li>\n</ul>\n<h4 id=\"result\">Result</h4>\n<p><code>Object</code></p>\n<ul>\n<li><code>difficulty</code> - <code>Number</code> : Unused, legacy from Eth</li>\n<li><code>epoch</code> - <code>Number</code> : Epoch number of block</li>\n<li><code>extraData</code> - <code>String</code> : Hex representation of extra data in the block</li>\n<li><code>gasLimit</code> - <code>Number</code> : Maximum gas that can be used for transactions in the block</li>\n<li><code>gasUsed</code> - <code>Number</code> : Amount of gas used for transactions in the block</li>\n<li><code>hash</code> - <code>String</code> : Block hash</li>\n<li><code>logsBloom</code> - <code>String</code> : Bloom logs</li>\n<li><code>miner</code> - <code>String</code> : Wallet address of the leader that proposed this block</li>\n<li><code>mixHash</code> - <code>String</code> : Unused, legacy from Eth</li>\n<li><code>nonce</code> - <code>Number</code> : Unused, legacy from Eth</li>\n<li><code>number</code> - <code>Number</code> : Block number</li>\n<li><code>parentHash</code> - <code>String</code> : Hash of parent block</li>\n<li><code>receiptsRoot</code> - <code>String</code> : Hash of transaction receipt root</li>\n<li><code>size</code> - <code>Number</code> : Block size in bytes</li>\n<li><code>stakingTransactions</code> - <code>JSON Array</code>: List of staking transactions finalized in this block</li>\n<li><code>stateRoot</code> - <code>String</code> : Hash of state root</li>\n<li><code>timestamp</code> - <code>Number</code> : Unix timestamp of the block</li>\n<li><code>transactions</code> - <code>JSON Array</code> : List of transactions finalized in this block</li>\n<li><code>transactionsRoot</code> - <code>String</code> : Hash of transactions root</li>\n<li><code>uncles</code> - <code>JSON Array</code> : Unused, legacy from Eth</li>\n<li><code>viewID</code> - <code>Number</code> : View ID</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"2a5b1bc5-5918-47ea-ac72-659af52c4cef","name":"hmyv2_getBlockByNumber","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockByNumber\",\n    \"params\": [\n        1,\n        {\n            \"fullTx\": true,\n            \"inclTx\": true,\n            \"InclStaking\": true\n        }\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:14:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"468"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"difficulty\": 0,\n        \"epoch\": 0,\n        \"extraData\": \"0x\",\n        \"gasLimit\": 4716988,\n        \"gasUsed\": 0,\n        \"hash\": \"0x61ce03ef5efa374b0d0d527ea38c3d13cb05cf765a4f898e91a5de1f6b224cdd\",\n        \"logsBloom\": \"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\",\n        \"miner\": \"one1gh043zc95e6mtutwy5a2zhvsxv7lnlklkj42ux\",\n        \"mixHash\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n        \"nonce\": 0,\n        \"number\": 1,\n        \"parentHash\": \"0xb4d158b82ac8a653c42b78697ab1cd0c6a0d9a15ab3bc34130f0b719fb174d2a\",\n        \"receiptsRoot\": \"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\",\n        \"size\": 601,\n        \"stakingTransactions\": [],\n        \"stateRoot\": \"0x8be048c908585bbb6b155324ad8a854484994ab27e5987af134ad036079675bf\",\n        \"timestamp\": 1561736306,\n        \"transactions\": [],\n        \"transactionsRoot\": \"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\",\n        \"uncles\": [],\n        \"viewID\": 0\n    }\n}"}],"_postman_id":"52f8a4ce-d357-46f1-83fd-d100989a8243"},{"name":"hmyv2_getBlockByHash","event":[{"listen":"test","script":{"id":"cbe5f86e-b9c5-4089-9130-8b19839fbe0c","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"6a49ec47-1f74-4732-9f04-e5d76160bd5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockByHash\",\n    \"params\": [\n        \"0x61ce03ef5efa374b0d0d527ea38c3d13cb05cf765a4f898e91a5de1f6b224cdd\",\n        {\n            \"fullTx\": true,\n            \"inclTx\": true,\n            \"InclStaking\": true\n        }\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> : Block hash</p>\n<p><code>Object</code></p>\n<ul>\n<li><code>fullTx</code> - <code>Bool</code> : Include full transaction data</li>\n<li><code>inclTx</code> - <code>Bool</code> : Include regular transactions</li>\n<li><code>InclStaking</code> - <code>Bool</code> : Include staking transactions</li>\n</ul>\n<h4 id=\"result\">Result</h4>\n<p>See <code>hmyv2_getBlockByNumber</code> for block structure.</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"f3c0a3fd-8265-4a27-a147-940f900c0cc6","name":"hmyv2_getBlockByHash","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockByHash\",\n    \"params\": [\n        \"0x61ce03ef5efa374b0d0d527ea38c3d13cb05cf765a4f898e91a5de1f6b224cdd\",\n        {\n            \"fullTx\": true,\n            \"inclTx\": true,\n            \"InclStaking\": true\n        }\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:14:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"468"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"difficulty\": 0,\n        \"epoch\": 0,\n        \"extraData\": \"0x\",\n        \"gasLimit\": 4716988,\n        \"gasUsed\": 0,\n        \"hash\": \"0x61ce03ef5efa374b0d0d527ea38c3d13cb05cf765a4f898e91a5de1f6b224cdd\",\n        \"logsBloom\": \"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\",\n        \"miner\": \"one1gh043zc95e6mtutwy5a2zhvsxv7lnlklkj42ux\",\n        \"mixHash\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n        \"nonce\": 0,\n        \"number\": 1,\n        \"parentHash\": \"0xb4d158b82ac8a653c42b78697ab1cd0c6a0d9a15ab3bc34130f0b719fb174d2a\",\n        \"receiptsRoot\": \"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\",\n        \"size\": 601,\n        \"stakingTransactions\": [],\n        \"stateRoot\": \"0x8be048c908585bbb6b155324ad8a854484994ab27e5987af134ad036079675bf\",\n        \"timestamp\": 1561736306,\n        \"transactions\": [],\n        \"transactionsRoot\": \"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421\",\n        \"uncles\": [],\n        \"viewID\": 0\n    }\n}"}],"_postman_id":"6a49ec47-1f74-4732-9f04-e5d76160bd5c"},{"name":"hmyv2_getBlockSigners","event":[{"listen":"test","script":{"id":"bbd2f262-ab7b-4ce0-8834-4e50a9399031","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"1e4b5f41-9db6-4dea-92fb-4408db78e622","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockSigners\",\n    \"params\": [\n\t\t    1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> : Start block</p>\n<p><code>Number</code> : End block</p>\n<p><code>Object</code></p>\n<ul>\n<li><code>withSigners</code> - <code>Bool</code> : Include block signer wallet addresses</li>\n<li><code>fullTx</code> - <code>Bool</code> : Include full transaction data</li>\n<li><code>inclStaking</code> - <code>Bool</code> : Include full staking transactions</li>\n</ul>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> : List of block signer wallet addresses</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"7a410104-d98d-4cb1-bb74-fe5eaa2a6cdc","name":"hmyv2_getBlockSigners","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockSigners\",\n    \"params\": [\n\t\t    1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:14:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        \"one1gh043zc95e6mtutwy5a2zhvsxv7lnlklkj42ux\",\n        \"one1jyvcqu4k0rszgf3r2a02tm89dzd68arw5lz9vl\",\n        \"one1nn2c86kwaq4nk8lda50fnepepqr9y73kd9w2z3\",\n        \"one1u7jzpkd3sr40kzw62vjval85dkzeyn3g2shz83\",\n        \"one1tfrpfvrgj5tnxj029xsdkl33hmrsry056nrpvt\",\n        \"one1fg0nrc7djkm2p47tjsuhd8n9435mz9ed57dj8v\",\n        \"one15jv9h2rwtczgmre923nde50jfz0sjs8c9gnwpd\",\n        \"one145zhxlug79wjwlf9wrx5vh90u2t7nfu562rdlh\",\n        \"one17fn65sgdnp9hphg6vn58h90k3ujt07xtqrnn3y\",\n        \"one1ssctny3j3hs92wnetqgkrncwfatq6er6rhede9\",\n        \"one1uevxtwdqehq7k2v5jdm6mz4m492f3qpja4e36q\",\n        \"one1m4909gjt2g4fsl2jw95kxmjmja2ka4cc6d4sgs\",\n        \"one1sdrc3dla7zzd5pdqjagywfdumnqsyl57ql7sj2\",\n        \"one1w4ekumvg88ex5txjrzk9qgfx3xheua4djrphld\",\n        \"one1h3ztpa75txa2ng20jzzekqzcfmxx9v83lpeuaz\",\n        \"one1zsk49ypjc540vy2663gpn76d8z0mg577d8x5kw\",\n        \"one1pq9zk56dsapwracyx0z7lgz32603hzfk7f2t2e\",\n        \"one16dllsrjr04uhzsuw7raaq4cszpkt3g997yev2s\",\n        \"one1rs666h8mfgm33kqdkzzq4s6klem4d0hk9lldc4\",\n        \"one1xgk5rmygeuh5p4m2uhp048dfucr7avf7tzj6w4\",\n        \"one1jyzcklsqmr5r5qvvyh0r0e2436ss6vteap69kv\",\n        \"one1mvlwv0wjp9u6yv2v0ema3qurlnxkp5ftekegm8\",\n        \"one12q6kh768sn3m2dwf5vhn7nfuxstp6xvtf35m4r\",\n        \"one198as6uj8p4yucttkkhzrtpu9z8nfwqrgh7d3g6\",\n        \"one1su2vsv854y639m0qlst580ctx7sm4zwsy60xq7\",\n        \"one1x0sm3y8e2cgql05spqc2y20xwgx9m9trpfn2pq\",\n        \"one1curhrds59j26ldue4x8sx3glf6dxnfkk3lqa53\",\n        \"one1uzsl45tzdn652xkqdc60w42hehrc0nrd7lj7zu\",\n        \"one135nj2r8jd88uffht52q4zs88h6vpwmy6f88vjr\",\n        \"one1vg5frvtn82thc5vv0rytysdwtl6qcsjpessvst\",\n        \"one1xlnx308wrvfjxxs4h8v894vwz35tpcfyex63um\",\n        \"one1jegwvj0vpkncgsw9p3nuyt36dp94erdu79kv5j\",\n        \"one1el39ku64kkdpmrv598d8g63r9ftd25nc8ppuly\",\n        \"one1s3vgvw85j4055tq7ky7say5n80hy2vws8hgvfu\",\n        \"one1tmxgqudfnzuy5y9wf7gsntwv6f768878r3q8q6\",\n        \"one13fjjymcva76vzn6e4ykde77wt5j4jyr60u778j\",\n        \"one1cfq2v4kysk3vdrjtjju2q7d2k8qa204cqcsqsq\",\n        \"one1g2rm7ay0htx5tlkgqwvvwk4sq2tgm5wratfzq2\",\n        \"one1nsu6n9sv7ztgcrred3lnml7qxmr3la94ymsrw0\",\n        \"one10tu906wspjnc3mn5kvzlr36882swkwf9s8e5xd\",\n        \"one1chxf96l9c0g0w55703j0q37gtnedg424zlmraf\",\n        \"one1gum0zqu2zstptk7fdl8v2wsdrfdtl054qx8jar\",\n        \"one1gugtmrxusqk2j7xce3sltnc0sgegnnfuv6hq80\",\n        \"one1ekllcv39gdpac9497gc3894ddsehkzlqds7ewl\",\n        \"one18pymc7sn6e3jk07xx3gagrfgmkcmgtuxa428s6\",\n        \"one147x8wxytztf80avpy4s4f99t5u3ksfr7h02j4x\",\n        \"one1vfy349h4y44244zf3zm47jwc7z4jdwpgsgdtm3\",\n        \"one14hrttmv9xapdkj0auuwlgpvmmhfz2mp4a2c8ey\",\n        \"one1ktud786d0w6ww8gt8crra4mg6zyl7xf7xr47u6\",\n        \"one18jsru7gjz8tex8nux0xe4agffwz2mvq62xjp2x\",\n        \"one1a29x52lelvelspzx9scdml3nhy9hrau9k5mvdn\",\n        \"one13ar9c7czmg5j26fcpwqckj5kx5kyk02j0nqvjr\",\n        \"one19hnhhs2dkxl0v0gr0h755y6f9l86emt0z3zuj7\",\n        \"one1uwkgzutlp76qhvuhtlvhpd77gyuxlm0w3nj0fx\",\n        \"one10jg0a2wv5fk9042us876xt57ej0lqm6xvm5vxu\",\n        \"one1hhf55rl0jzjyshlw4ftlm25ylxhsc5rrq7rznd\",\n        \"one1pegk36wh4dnyv29dhe5s3faveenhl60wcef9y2\",\n        \"one1y82p9rex6ezqenjze8yxe5a0nhskvamcgn8rqc\",\n        \"one1yu2wdsl7x5k58zecsdh5p0ucapfe74mrydwks9\",\n        \"one1kgyntj9yg6vvasmt06g5w7x8e84z84hnlx4eda\",\n        \"one1uc3xg782sslsrkyffvaakmy8dw0evl0zzq06ts\",\n        \"one1tvtrynm5rp8gsxf69hhy7mx0uljlzguxwxgtjy\",\n        \"one1t03xpg9f6tgguwke23e56k3chd28d2d37ttxqw\",\n        \"one1khln4errq87hnpjs9zqxmll9slwxwywtxy0y3d\",\n        \"one14jntfqa47hatag382uaxkp2zddhwwgwf3wl33x\",\n        \"one1ycdxxqd4x5wgu3wjc26edsjkc3cztm99jpnfry\",\n        \"one13rtrd09sxez76efdqhmtamfclt44ew02auyhwa\",\n        \"one18hmhzhfnm47sjwcaz73tjhz09zay4jrc2stagj\",\n        \"one19lp6lj7j5efhtv6f4mjwyu3c50ey84ajnfntsa\",\n        \"one10t76e65x7m0pfkhmpwm4wgr7u3xu3t8qndvq5e\",\n        \"one1w70ts3l3ehdws08sdx7n639lxp4fgg4ztxxp4s\",\n        \"one1445u8kcryuz98d0husyrn0dnudfs77fuzdtqfm\",\n        \"one12h79f9lmyyrzfcf08a2zzuv4mct72e0vsyfcax\",\n        \"one17fth44p5a89fyck8sxxz767sqzt35frxj9f0lq\",\n        \"one1lml39n0qemt2gg7r6kwl0gerue0q7sr4u6rqjq\",\n        \"one15wh83u4p54dfrjmmk79t4e2dgn0fw6c54ml0vz\",\n        \"one17jzfd3pwu4peerl26yxr7rkynv8385dczppnnc\",\n        \"one156pcuu77dxef29cc6nu5wsjndmk9cw4ta7crpx\",\n        \"one1wjqtk2krrlsqxcr2jgau7s58vuf2fepdu3cwnu\",\n        \"one1t0y5jmv84cu4eqeev2cczpwr63flrz22ptmnf8\",\n        \"one168rjtx20cyyqjygt248gxpcqqcw7a08ga93kvh\",\n        \"one1v525e2ddyq5xpecnq9f3gtpz6dlggg93l2uac7\",\n        \"one13j7h7mmlmlypxa2aefuuf5xrw0vjn5ahp0zfr0\",\n        \"one12su07r3rk8hgg8e36gds92z5370t8yhjyxpp0h\",\n        \"one10urht2e6gfeq4fskmnwrlxnx4vqhaxzz3d00em\",\n        \"one1g4g72jk5cumlmnkzzslzhlv9vwp85clx2mmzau\",\n        \"one1pey5w5wjv03acwwj0rwhft7wr6dulesjkrl4ah\",\n        \"one1dzr9ruh47we0lmtkaxk4an7hxe8qp2u6fqsett\",\n        \"one1qt8z2h76unuz4jh60hupddlct8pes30hfclm4h\",\n        \"one12p85puccq3h6fgdtvhvmu2932yutv8xgk3lynk\",\n        \"one1cppp40k4kkjq4dwa9lv60wgc8fhx0c7yzr88l9\",\n        \"one13rdkjur7mzqvvxvpp644eehr50zqvahrmxg6n5\",\n        \"one16fcp2y6fagty2wmc7qglcezhvk9sa9vqtkp8h0\",\n        \"one1stcz8mr4u0efye4vl4nefq8k0v6cdx8aalxw09\",\n        \"one1xreg53amt4gke3g3jag4h64h4n0ndprsu2nuep\",\n        \"one1ln27g8ypym49v7pudkazp0ftv9lekdy7hxldky\",\n        \"one1pr0cgkwwv7h9dpud02uqje582xjanfxycfzr07\",\n        \"one152hm7nxgr3ng4xwpv7dghtntjza9sq58q7za67\",\n        \"one1q942nk0nh04phhlcsurzfj4a0e6rqdwvasfa7k\",\n        \"one17n0pxvjsz5sgan0hnu5pj6vt25u44urnm9cp3e\",\n        \"one1cjkgecdwqks3st9qxt4ns3y848evl2jwxcxsh8\",\n        \"one1rcl2ax4y5ksa67d5c6qnavgk79xstz7wxu5k3u\",\n        \"one1prmemfp0txxqmf0rh6an5w5hc4mmcghnlc0pn3\",\n        \"one1597ccchp5npfpkad505snsnjzlxzmcyye5dk3t\",\n        \"one1mhc3sl6u43uvwxapy9h04th2fq4mpsqg0d7gpf\",\n        \"one1vhcut4wcgu8wmm0t890mlknh2qmm8y8zjw588h\",\n        \"one1fnr7raecmnu0vegqg5t2ssgewkz97m03z0uppe\",\n        \"one1g568wpxknsp7j27nun27p7fa3ll0fej0h42j7v\",\n        \"one163zz9czzgkc47taypfpl2axy9tuyugr8a49rjf\",\n        \"one1nyewdjjvm53ytz8ag496x9ye7lmw0qaayr6qqu\",\n        \"one1tj8vz0qdgaf78nwuqqee20cfn036e2s5nfgdgq\",\n        \"one1cfrtcemg94y5n5ke0a4hfwf9fp9hhdhf5kcg9u\",\n        \"one10vy4gdzga08vhenqke36x67fjqukyzk6d4hrqw\"\n    ]\n}"}],"_postman_id":"1e4b5f41-9db6-4dea-92fb-4408db78e622"},{"name":"hmyv2_getBlockSignersKeys","event":[{"listen":"test","script":{"id":"eb1fedc6-cd6a-4ed5-bb34-b8199c1aec36","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"9f9c8298-1a4e-4901-beac-f34b59ed02f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockSignerKeys\",\n    \"params\": [\n\t\t1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> : Block number</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Array</code> : List of block signer public BLS keys</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"22f98af7-7445-45c8-a493-5f7f9859a93f","name":"hmyv2_getBlockSignersKeys","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockSignerKeys\",\n    \"params\": [\n\t\t1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:14:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": [\n        \"ca23704be46ce9c4704681ac9c08ddc644f1858a5c28ce236e1b5d9dee67c1f5a28075b5ef089adeffa8a372c1762007\",\n        \"50b20b4eb89041aa4715e87e4aa6430e674658959d8be657d43e4d3d4c35d7507d6a40aec5188218dcbb5460e354fd12\",\n        \"5ecf182ef0cfe449470d900dbe4ce312d534c882765e639c59525f2710d9f96a04abd871e4f0afadc1bd4b07a54ea106\",\n        \"6350958f98fad3d2aa3d8655d11f60acd67a8f9574f580b5f09bd602c644365c548484a0d2a06714124b9f6e01dcd794\",\n        \"a54fdb9bdb8fd96ff9c58002ab528e2b1515be0dcf45a92ac03b47c0995d93ee41901d611cf13d92c20fb03d6abddb08\",\n        \"cfdbceeeb2bfe61ae2bb8c5743f7c51cf8767945f66f3701d8350f319d6a487470d8a871e21279172944c0d06070eb87\",\n        \"0110a0a1e55cfbe6928e1997f26a0cc8264c61e43a76c66ded32a0ca40b610656b20d4677175f80df055669a50390c03\",\n        \"f9d624113a56ef8ea08119a0162fa81b6e644b98af6c1029c98ca72e1fd79ca4c36dd1a2b4ea2ac916d08a3740c25c19\",\n        \"02bd0857e2cf224d5f4a7cdbccbce0ece8eecb560e49f5955f28d98e22e60b6975d5cd890ad70cc557b7c1879da44a82\",\n        \"5ae80464819a6062b2c93f2884dd3400aab970a0e70dc58bac7d5b394971c338598e0ee5aa8812adcb0b40898a08a590\",\n        \"ea781dff5e22998622b7b19c189b8bbf4050384238853fe3b8f2f0a80401364589b5e67ff54f05878fff42d7b48aeb00\",\n        \"6bfaabe3a12ebb4c8991f1221a995fb0a2756b2d48ddfdfd2fc3df42e554187d473634cee58159dd81ecc24989b5d38b\",\n        \"b885040f11b742de68d121cb8da133099afb876658ab7cabb5624794b37f48b00e438ad447478343375dba7b3099a991\",\n        \"c42479699f74dddc90caf2ec5f8825fad746826797948c299f7a64ade7c8b37a9ecfdc8cc714204e813413073ac12d0c\",\n        \"ae420cc03a18543fb2e57e1434b52fb65981465265b60dfd375fee68c910a893e93db23b258da658449ac055d8a7eb0f\",\n        \"225065e248691c59e004808b45733e3a84b53b977580e193057c337dafc43bbf39963bb37b9564ea39d72361c78fbf0b\",\n        \"7f5eb00ed4b061ab486ab66c28ec70ee3bd3f88b3348f9b4f6ad9ad820daef4b5242a780737021b5a5f675ab78f53e8c\",\n        \"aeab90cb890d1419bd6d215e65f473b73efae07a9686bec906e300e223abeaffb7da06a6fb42abf3dee9e828ebbfec12\",\n        \"1c193e6077a36d290a29d4d6c45ad2cb7163ba98f29029b3ef968a5e464561806ef0d86ed0c81e98d83ae4f87d0f7309\",\n        \"927d06aa9bc1334ef5c2cd08b6138574509ff0e62aa0bc5b207119e75aaec13e1e81df367a648c74cd15f40e63634485\",\n        \"78c409907db47d0872eaa7ebeb35f2ffcc9c9a69b1179676f9783b39fcefe66e96060305419561ac7cd0b0d70f950007\",\n        \"0383b668cf36b3887e48004734ebf989d5547b5c153e8eae1ed568a4fab1972e4bac08e4985e15bd582c9f6d28941c0b\",\n        \"2a7416c9b57cb1e34978ef473bf9bc2acaab509fd9cc542056aa60fe0780a69cbd49f5a91129fd6c4f98ae7312495499\",\n        \"a1d2c2c919682772190ed2d0d5fd592538964ec8d5ac066c03177b2a840e1ff5c81418473169fdd9017591209979df15\",\n        \"a9c788233dda857bd19233cd4b547bcafc4211e6cc6cfe43ef2ccd0ac576ae944683b27a003fa95d246b71579164e00c\",\n        \"ad009861e1389ed152b8a5ca48f9a095f4d29701ada0ef126f6bb6ae01995e38b0c527fa1c479e77bb9fb61171dd060e\",\n        \"38d7ecfd350b40b51408392a7d589a6aec2315053c94226fe8aafbfcf9575497b55e3a90e3e1639c09fcf4db34c7d503\",\n        \"22721801c98e71190bc64eddc04b2d422f5f0fff4b939654e00e4063754d2ef0921627fd6f96f1db112724e139c05318\",\n        \"5a34b281d855a854ac7eef415a51c632d5de84a63e5500f4929bc9860a552a36034b7a318c271c87c8765b4ae4528413\",\n        \"4011d03567248f5ffef3a82b9b5ac94f327bbff25f955123371ce0c1a90cdb469e8ba200e24a5e552a0efadce58c1e89\",\n        \"9792041e8264bfadf82ac62dbd7ff22c0681fb4dae9a111dd528aacb0bcae4ac8bd16afa2874f86d4beb9cfea69bb30e\",\n        \"d1a74426b887744b32f62b2f070f0b8ba8010fba4581189c35a51d241958ce93239a0c1a749495573003049f59f1918f\",\n        \"5b38c8854996464cd60656ac0afec5b460f9451124fe576229aafd8775e217e0e6f783ce56235957adb137c7e7caa30e\",\n        \"49c69f426110466721d9dc4fa2f0b4808c546088ccfecf77e42f1d60719b7932c44e7c18771057f164e03cdb6486d000\",\n        \"deec63912e755be51ad225d9feccc89a97dcb02b4047cc04c8c9312b8e9076aa21b0a96c0ea2ca904213ca349b253d93\",\n        \"a27eeb7976954d052078c8a3512449b61886418677131bde005441dd4738c90a783474bffd91023631a4a62286563b96\",\n        \"11a25753e8d36f97580e6e15790ea47e22ad84a8b638e880e42bca765d9587cacf3ac1fedb3cef6f4087b071bfc1278d\",\n        \"0a186205b9ac93d83d1d474c3e548715e8c3dbdb4882d60c8ff69b01e950b6c4f3db5b680377701299345f17a509570e\",\n        \"11c3606099680455db309cfa732e8e362a139259e1b89418662577a4d8a0851cdec0488acd8d8eee6adbed4e4cd68d88\",\n        \"514e2df4d945d40f873f8b4b77de13a9128377a142aa30c6f3ef2554622f708a30cb0277a17d7d5babef7d79ceedff97\",\n        \"98452fd6a94d63c8e3a20e3514f38fbc043a7290ce1a7e93711d06eadb4e5296ead92c63105f8287cd45c9f0b8725293\",\n        \"e4060b4bf6fc2bac221c0ae3de202bbaaf18a66c1b840383096151815b6f6dde0ac33b9233191e41ab1f425471f0b394\",\n        \"a52247e43b6abebf86b8c8697e7c6fd8994ca343e4311c0f6acf6c8a1738a96ab2c09d86edc3729a5e911149347d5689\",\n        \"295d06ba7b2b58896bb68ad324f58399553e3d5e774a80170ff8673b3b9fbb7e5604bdacf381b7d598cd471a3a49b190\",\n        \"fcd1036b8c7d59006ffcf8e1ecd3faf567ddb25155fa505eb2082ca886c5fe0f8b62556a78438b526777ed9692ccfb0d\",\n        \"dbee77bce2f00706d226cbc89f085c7bee45e0b11cfce8c5654636ee8c1a5a635b27c0c010b7ddde266ce44ea1435b8d\",\n        \"f1db95e67a4f1baf48a2dea65a5172a402d1369bc9d05422fb9539eff5dfa2537c2112513736ad626923092bdc0b580b\",\n        \"13d936398c988a598e96db9ef5980da9347dcb1a34e87f4a403db8901c33dfea76433c7105890c9ffc44fdcecda10c04\",\n        \"89ee8d5bc9ff2db7315525264c13c133b91516a78516d9574c347b08d5f8761dad4e1a8d3a8ba58e003e250a8c804490\",\n        \"c7f37568afec98cdd729e6f33b6b095284a96eea59389bf88239f640145c4285e342b6936968b17b9881ebf306546f17\",\n        \"7818a1a592f321279dbc1f53732de2fe7640b5294e38ea895bf4cc53e90d61015bb0fe0e9b76ea5bbde9863a51ccf899\",\n        \"7e5f9270132f34b5c9dc6c79644bf79a790a42baa1bebe76b6477aac912a9dc1f0251f57c2a06306ef7fd7d7684d9483\",\n        \"1aeb918501c4657b175d90527b67edd8844bab6977e9630d1fa73b373a1ed88a1c44036ccfbb83792673554ff14da599\",\n        \"514c26eb13b9ac9902dcd6516cb086d366ba6cc7415d79a227eab1c7517791ffcc53d0f8ecbd1c6722b18c17f9f3a590\",\n        \"aa4ee9698743ec6114251796861422de7dcd182ccebf6aafe65e9bda48577330061e2880851437f4d054b57fcb74ca10\",\n        \"e611da8fa8887d160ce8d76b0d50d45f18b89e6652b2cbcddf8d2bcd48c1758654c5c8cb907138e6a3fc51847d3c6918\",\n        \"a845c999642fb6ff96ab50cf0de871b9ccf9bba3471e69a7254c5b3dfabd62743c4d2a63dffb480554a78de7429e858a\",\n        \"9749b71a42cf13ef035b676553e2926c815be906c4173bde249ac76423e2dd6ccee1b8244a25f667bbde1c4ef87ef500\",\n        \"9a7f7d02338bbc8ae41f1957d349a30301cca90ba4886f4cb23b0a71e8b4ee9f13a5ea7081c6a5bc6617278e3a650213\",\n        \"5282fa73531fd810ad854be2bdebd09d1efaa463564c6bf52624968be6b707e76672bdc3efe6e7761e8ee7bb8e5e3b92\",\n        \"a9a83a4842dcaa3133f34e333764d3e33062a5669f75e9faac6e734360781984a3a99367f995dfda3faafb648236a991\",\n        \"e90c79600e596ff981d872d812b0644fd928eb556f369476db86b02be3143990d734e69aa8e0c6b6cf29003ab697bc19\",\n        \"3cabd9bc1ac865ce5b3655a1f15e4657a99b56cb29984d00e21142b9b8dfc69d96b8bec5071272966989d711a8e32617\",\n        \"8c48db351942443c6b91e03c27fe612d34c6cb3d1fd108428f04df762a8acab8d14a6d0456543be4e4dd56d49ddf6e80\",\n        \"077edde9fa10c8c1663bb50ac4d28ceb2d58283c759341963683ba6d43a73fbc31cc9145107abf0ef82930fae6440994\",\n        \"623718098929bb558b9a46ee2aa32402f9c8e5ac959ab7a0a5241ca69d704f50fad168efe6f363fe1a19ff7c33405299\",\n        \"03a3431e0d925662bc4da71966fe34933a50d29388327d608f8ead841132c970b8d22244f0c8fca157c08c04e8751787\",\n        \"ae02cceb71c354576b7af662695a24def1f646f71e1fda19b541cded3fb43076d68f03e1160009414936b434035f3911\",\n        \"a2219d19d547f78fa04282f1e3d55d28d7b8f04ea6f347abf9e009d2eb4ba63ba43c8a657a72023dfcd92b3fe36fd612\",\n        \"d2173075cda0ae34a76b2407b2b6b7b87f42012b313be63cacb41fd5115f31da7bc3f77c09de396badc48b122be4a216\",\n        \"57ca05a5cd653662f4004dd409a057831a79a4d7ee0b03a402c92db90ce687f8ec6caee0c3c03778e1deabb623c18f10\",\n        \"cedb69f6dde95d8464fc81b053eeb9f377b47458c83d0a5cd837b978d5e1a1fc2a1ac4970c3606c576cd1074aef12112\",\n        \"172793ea5eec637a28bc210df85acb932683c38b37b8a8e6ca8e75b0f8c00c0a9195d55ee6bcbdc36e57137681378005\",\n        \"caf70afcb26d571d355140182cb8e22215abd27f6e833340c88c080eb8bc2e8d61fbc95b46cc99cfdb64825d1ab21595\",\n        \"458e57f12ea9c1a92c237baec06a0d0335ad458d894f8d6fed29a1fb54948327096e85d196c240ef4178f2d2dd6cee89\",\n        \"dd668b34d02c53c8db16a14749365edeff51ea6edd91e4bdaae9e738a8dbf5ab9f6d226852a814df1576b311a376f198\",\n        \"39accf250b555fe249c838b5a969f49c7f9f69c55387b1b830daa4e8e72c28f5a7e7029c9a5916e474adef933162fc97\",\n        \"1f3e059b9ccea9b9f5f223a04fb0f28c890039d20bc016173e4f8c60af00e0e0d547893b9ecc2e22a6ee204e8dfeea83\",\n        \"b42b39da95826568dbaaec0fc7cf0d6a8e5b270ef2091aa15f9efef8bed4f510bba51ba11195da855d44b3bd25803d85\",\n        \"4a3cb3bf33c5133e5fcf801a52db000b62ef82fefa98cd90f8d12eb807dfcdc87d12a5c28bd6b34a6a228863ed05b190\",\n        \"9b384ec4abe732cc2855faa80e02e47159b35ad23819631bb0e5562a51f4ddf45da81b2a09e0782b3bd0e94a6316a817\",\n        \"9fe2ce7d413b0b2930d8f00c99e8500780541aa5d72f9b0d19ba6364d8dbadc30e14ea2885f6d65bf7272158ba113307\",\n        \"738cb0203a6c01c64031e22a76b117061b85f499faa446e0b7f0bf81804b61302626729afa0b6b2073dd77c044b49093\",\n        \"479b35fc9b04c2027d9818fc42133eab872ad89c1e4d434523e3ee06f434601e3c52de77a0fa1989bb0ff4e0fb9a0c19\",\n        \"0995dce1f64701c2502fc8b627df9e57d10ca49875022b8a7a7b447c9672be04a7771fc97eb8190df8002536f93ca78e\",\n        \"f296c15a7015503a346f542a9da87eec2fe5c06036c12fca7b182c2183484848d4f8b1edf0c5d71be59ce52dda9fe190\",\n        \"d347b60a226fb55e3f3624b5a40d08b5958f8a44c3c89274105108c2afb3da9156d4bde1ec16ea33b409a980d4efd293\",\n        \"376b54621b144654dba41295e76d413c222688c12ac4cfdb1379260cea4870344db655e72e16c388cf59ef6e0de39288\",\n        \"4d179bf6082a2436540c5fe1d84cdd2868377af042ee18e17876d5f8e22ad1aeb8ef4480271d5b29d15bc8c9228f7611\",\n        \"6faad32b862cd7b52ca315cee857de8aab3d4b6b04e5b6c46223b8f4a49b6420019abab977378bb0577ca8ece8f7e604\",\n        \"a99d649ff8d94c826c3dc3a21b52095425122003b0dfa0ae269915d0488328c1d67a5e46fd1e60ee1ee81b3b8e438519\",\n        \"d809b93446ce9a379fac35eb823809b36e4da993170ea014a76119092b6ee7825e55ae1bd63a2a6bb4bc6504edde768e\",\n        \"5367b3bce6b557c719f65d5ea0061363a8980d30c185076c1c12ee4d683c26d1749ff5820421bad66157ce62f71c3510\",\n        \"01f743d70cc3ac969b1da159a87ef2b098ce849d71dcca2fda81481fd4bd0ed3b1a0e4e092f6d451cedc2b0afc5df313\",\n        \"613feef4c14f916d63a8645a623eeb394c55eb78a05c7be8719ff56f62e9c8cff1ad97f20280fe47e209887a8bc69704\",\n        \"396c1d565943c941b832d2999b48a36efab2c1081086428fedf85325093a9588c710251a6bae45d0f452ff6363a71f13\",\n        \"f25f453d7a223950e2155f91b0deee7db3499b0b6ae19324dc118aaf3d630be4f52b7e8a12fa391a1033a5a7e28db00e\",\n        \"1f2d74b5befca2f60acf948b7aaff960cfc628a2f8042fbdfc123c102f7ca7758279bce4a20d2b98c5493fea8ba8c708\",\n        \"0d73e64927d37dbd7297c7ece55ddaec6f427217165e6e482e0cabe8b67327a1907de8f69e58482824aac4aaac47e602\",\n        \"b4253fa4e998c80672789b2dafd6e8821b7a03e258a0395e639337d7ad18463b28cdc55093196246a6aba513e63e970b\",\n        \"5210d58005e37c9d54db3d2dead462d6f896b36db43ade706e2d28f2d7a99a14d1119b2a45d4c09d348c6e399a171b80\",\n        \"996021ce105fa2d44925f51efc3834fcc5d551c72391d387669a657f30877058cb641c348292442d488879de562a4f95\",\n        \"b5cb74f26c0fefc937fe1a6d38bc5c9571f95607f02db3a4392cb2ae55d408d645ac9f1e9bc88c486185b371d26bbf92\",\n        \"a0a3e37f8ebf345ea1cf3c9915e203dadc9568caeca69d61ead3357c26aaf7f568476d588f0d2eba227500acb0527183\",\n        \"c5cab19917002a47aae411017695af5bb7fc60a12e01175e8f9f8591e6905644011ff168ce204e0e625d7cc5944e020c\",\n        \"fb4011905e4505eda64f465013e6334c718708747c03c2cba8ec98c0881e1e1f82383cee23cffdbcaf98e5a14e9ab30d\",\n        \"e2cd254c82718e67b2bf07ea4051ac6922ae38292f1e28224d0569530d3bfde1343e56a322bba09b6b69b489ece24017\",\n        \"0a2c8055849a7d06aac00a6d7e2a884b6d9c36baf52faa0c96087a35abaa54e32429a280238402cda4773dafbe512d82\",\n        \"09ede6fe871b8f629a487ef070448fb82b1ef7075eb7aec2941ca3f1a39cfc054bcd3419571034b2f676d285e3d43518\",\n        \"0485ad94e8d85d716b03b187e16a6cdf5c3b3b23e00b06edc292721053d475d3fb959aea44e45e2d5b3d8b8bdce2e309\",\n        \"ba69a459478fc0d48eaca27a1c1fe47cf6b51329f2f7ad166a81d90d1401c9f3e54d5de6c763a643e1bfe51d5b4e6306\",\n        \"65558b383e981a224d58d6221ba295c8f4fb4ab914f6bca4eb5b671f8c28b8bba103f5ca0c7b951bad02332adc4d2505\",\n        \"445ef889e5f294f1a5d231ff0de6fc25f228145c36d813084c9aa5e33bbae0b73cc71efa16b88f0490a80660564d2293\"\n    ]\n}"}],"_postman_id":"9f9c8298-1a4e-4901-beac-f34b59ed02f1"},{"name":"hmyv2_getBlockTransactionCountByNumber","event":[{"listen":"test","script":{"id":"729251a3-1f02-454c-bf02-b1b11a3ccebf","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"26c5adfb-d757-4595-9eb7-c6efef63df32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockTransactionCountByNumber\",\n    \"params\": [\n       1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> : Block number</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Number</code> : Number of transactions in block</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"776dfa2e-2256-4829-9825-fc7cc9cb2cb8","name":"hmyv2_getBlockTransactionCountByNumber","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockTransactionCountByNumber\",\n    \"params\": [\n       1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:14:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": 0\n}"}],"_postman_id":"26c5adfb-d757-4595-9eb7-c6efef63df32"},{"name":"hmyv2_getBlockTransactionCountByHash","event":[{"listen":"test","script":{"id":"06e1a715-b135-4f55-9f2a-64eed2e68353","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"66c68844-0208-49bb-a83b-08722bc113eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockTransactionCountByHash\",\n    \"params\": [\n       \"0x61ce03ef5efa374b0d0d527ea38c3d13cb05cf765a4f898e91a5de1f6b224cdd\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> : Block hash</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Number</code> : Number of transactions in block</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"92fad1cc-8e1f-4b8b-801a-fae295214c7c","name":"hmyv2_getBlockTransactionCountByHash","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBlockTransactionCountByHash\",\n    \"params\": [\n       \"0x61ce03ef5efa374b0d0d527ea38c3d13cb05cf765a4f898e91a5de1f6b224cdd\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:14:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": 0\n}"}],"_postman_id":"66c68844-0208-49bb-a83b-08722bc113eb"},{"name":"hmyv2_getHeaderByNumber","event":[{"listen":"test","script":{"id":"df1b10ed-1e48-4222-8ed6-e05d20fbd464","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"01148e4f-72bb-426d-a123-718a161eaec0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getHeaderByNumber\",\n    \"params\": [\n        1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Number</code> : Block number</p>\n<h4 id=\"result\">Result</h4>\n<p>See <code>hmyv2_latestHeader</code> for reply structure</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"cdb037e3-40a2-4467-84bb-119c7ce6a082","name":"hmyv2_getHeaderByNumber","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getHeaderByNumber\",\n    \"params\": [\n        1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:15:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"293"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"blockHash\": \"0x61ce03ef5efa374b0d0d527ea38c3d13cb05cf765a4f898e91a5de1f6b224cdd\",\n        \"blockNumber\": 1,\n        \"crossLinks\": [],\n        \"epoch\": 0,\n        \"lastCommitBitmap\": \"\",\n        \"lastCommitSig\": \"000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\",\n        \"leader\": \"one1gh043zc95e6mtutwy5a2zhvsxv7lnlklkj42ux\",\n        \"shardID\": 0,\n        \"timestamp\": \"2019-06-28 15:38:26 +0000 UTC\",\n        \"unixtime\": 1561736306,\n        \"viewID\": 0\n    }\n}"}],"_postman_id":"01148e4f-72bb-426d-a123-718a161eaec0"},{"name":"hmyv2_getLatestChainHeaders","event":[{"listen":"test","script":{"id":"257b8d91-9ca2-490d-99ee-60d6a4c41389","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"7625493d-16bf-4611-8009-9635d063b4c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getLatestChainHeaders\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Object</code></p>\n<ul>\n<li><code>beacon-chain-header</code> - <code>Object</code><ul>\n<li><code>shard-id</code> - <code>Number</code> : Shard ID</li>\n<li><code>block-header-hash</code> - <code>String</code> : Block header hash</li>\n<li><code>block-number</code> - <code>Number</code> : Block number</li>\n<li><code>view-id</code> - <code>Number</code> : View ID</li>\n<li><code>epoch</code> - <code>Number</code> : Epoch number</li>\n</ul>\n</li>\n<li><code>shard-chain-header</code> - <code>Object</code><ul>\n<li><code>shard-id</code> - <code>Number</code> : Shard ID</li>\n<li><code>block-header-hash</code> - <code>String</code> : Block header hash</li>\n<li><code>block-number</code> - <code>Number</code> : Block number</li>\n<li><code>view-id</code> - <code>Number</code> : View ID</li>\n<li><code>epoch</code> - <code>Number</code> : Epoch number</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"1a30734f-70e5-4d7b-a33b-8bf67cc04b3c","name":"hmyv2_getLatestChainHeaders","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getLatestChainHeaders\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:15:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"193"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"beacon-chain-header\": {\n            \"block-header-hash\": \"0xd1e668797a66ea0e720dbd09e7d42efd73b68a3db29c694342365adc39cc1671\",\n            \"block-number\": 5601677,\n            \"epoch\": 321,\n            \"shard-id\": 0,\n            \"view-id\": 5601862\n        },\n        \"shard-chain-header\": {\n            \"block-header-hash\": \"0xd1e668797a66ea0e720dbd09e7d42efd73b68a3db29c694342365adc39cc1671\",\n            \"block-number\": 5601677,\n            \"epoch\": 321,\n            \"shard-id\": 0,\n            \"view-id\": 5601862\n        }\n    }\n}"}],"_postman_id":"7625493d-16bf-4611-8009-9635d063b4c0"},{"name":"hmyv2_latestHeader","event":[{"listen":"test","script":{"id":"6c4a90c9-3029-4f27-b561-71519518e460","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"73fc9b97-b048-4b85-8a93-4d2bf1da54a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_latestHeader\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p>None</p>\n<h4 id=\"result\">Result</h4>\n<p><code>Object</code></p>\n<ul>\n<li><code>blockHash</code> - <code>String</code> : Block hash</li>\n<li><code>blockNumber</code> - <code>Number</code> : Block number</li>\n<li><code>shardID</code> - <code>Number</code> : Shard ID</li>\n<li><code>leader</code> - <code>String</code> : Wallet address of leader that proposed this block if prestaking, otherwise sha256 hash of leader's public bls key</li>\n<li><code>viewID</code> - <code>Number</code> : View ID of the block</li>\n<li><code>epoch</code> - <code>Number</code> : Epoch of block</li>\n<li><code>timestamp</code> - <code>String</code> : Timestamp that the block was finalized</li>\n<li><code>unixtime</code> - <code>Number</code> : Timestamp that the block was finalized in Unix time</li>\n<li><code>lastCommitSig</code> - <code>String</code> : Hex representation of aggregated signatures of the previous block</li>\n<li><code>lastCommitBitmap</code> - <code>String</code> : Hex representatino of the aggregated signature bitmap of the previous block</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"8faf9052-b580-4df4-b901-13d3bab62da9","name":"hmyv2_latestHeader","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_latestHeader\",\n    \"params\": []\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:15:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"955"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"blockHash\": \"0x66a822f6b0006459f8e8a108912511a6e7bb639a69c128043df26bfbcb417704\",\n        \"blockNumber\": 5601679,\n        \"crossLinks\": [\n            {\n                \"block-number\": 5623235,\n                \"epoch-number\": 321,\n                \"hash\": \"0x9030e70ce4a32610817b9019ce2cd27f938f4f98f5bd2fb1b74387d713e205af\",\n                \"shard-id\": 1,\n                \"signature\": \"d84a71df23d5ef630892a2f0a7cf34464679620a6b3a3c82452d4acb62f9162c7e807e9960557dc4589045d0ea001b188a3bd4a2343d4e750b08f49340efefb901ac8b7788ef4dabf64f50a1f7efc913c499bbc5fad643db7e6f0692cf4d3c09\",\n                \"signature-bitmap\": \"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03\",\n                \"view-id\": 5623429\n            },\n            {\n                \"block-number\": 5661242,\n                \"epoch-number\": 321,\n                \"hash\": \"0xddd398aecaf931cf091e787dcb4a2631bde2d342915f970766a3fce0d3d818a3\",\n                \"shard-id\": 2,\n                \"signature\": \"663fb4519986a9bbb71ddc0b378f471814b6ab6ca678780ce7af6c30285e1cf48d2de5352fe9449a68fec1be2a0c10083e9d75b5fe8fda3a45f16b803c61b2c333b2b35460a9a087644917b49368d2f6f8bf2d0bfd5ce39236399844d67b8a8a\",\n                \"signature-bitmap\": \"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff07\",\n                \"view-id\": 5661413\n            },\n            {\n                \"block-number\": 5644969,\n                \"epoch-number\": 321,\n                \"hash\": \"0x695c3c3b35e56a94201c25f84d589ad0de4d390623649eeb643be6c16ed465ba\",\n                \"shard-id\": 3,\n                \"signature\": \"fe7389c2457b450e48c54f8b5d145e971c4d76a6c2a532fec2581fa2bf9d1bd5b747e3dc594674e311d2389300e5140629ecdd793ed7648c007d5978a6eca81fc4240af59d582ec2d52bfeff230d24ea3de8357a681ba56c7857e5efe9caba95\",\n                \"signature-bitmap\": \"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03\",\n                \"view-id\": 5645162\n            }\n        ],\n        \"epoch\": 321,\n        \"lastCommitBitmap\": \"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01\",\n        \"lastCommitSig\": \"e0e3426d73f2bf77fd1881d27c6fc4adbc81ad3575f649be2b4d499f9feff19b2369822805751b8fea1e131b2004bb153addddfa81578b2ffa09851d65f38cc023ac2b0f03f252c60c75bc03dd3b411a6db03fa916027c274aeb64b2b56e808f\",\n        \"leader\": \"one1gh043zc95e6mtutwy5a2zhvsxv7lnlklkj42ux\",\n        \"shardID\": 0,\n        \"timestamp\": \"2020-10-27 13:15:16 +0000 UTC\",\n        \"unixtime\": 1603804516,\n        \"viewID\": 5601864\n    }\n}"}],"_postman_id":"73fc9b97-b048-4b85-8a93-4d2bf1da54a6"}],"id":"24d30f53-6cfb-4029-89ba-218a15d9a09f","_postman_id":"24d30f53-6cfb-4029-89ba-218a15d9a09f","description":""}],"id":"dc5d625e-7357-46c2-8009-16ca3460b748","description":"<p>Harmony network and node related RPCs</p>\n","_postman_id":"dc5d625e-7357-46c2-8009-16ca3460b748"},{"name":"Account","item":[{"name":"hmyv2_getBalance","event":[{"listen":"test","script":{"id":"fcc46cab-c096-4a86-8c0f-409b5c6862a6","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"da8901d2-d237-4c3b-9d7d-10af9def05c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBalance\",\n    \"params\": [\n        \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\"\n    ]\n}\n\n\n"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> - Wallet address</p>\n<h4 id=\"returns\">Returns</h4>\n<p><code>Number</code> - Wallet balance at given block in Atto</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"6f2a441c-9d86-4079-82b6-50435d1a0932","name":"hmyv2_getBalance","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBalance\",\n    \"params\": [\n        \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\"\n    ]\n}\n\n\n"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:15:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"73"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": 1.2001989979e+22\n}"}],"_postman_id":"da8901d2-d237-4c3b-9d7d-10af9def05c4"},{"name":"hmyv2_getBalanceByBlockNumber","event":[{"listen":"test","script":{"id":"32a1cddf-2f18-4616-8928-a251ff5f7d40","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"9aeae4b8-1a09-4ed2-956b-d7c96266dd33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBalanceByBlockNumber\",\n    \"params\": [\n        \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n        1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> - Wallet address</p>\n<p><code>Number</code> - Block to get balance at</p>\n<h4 id=\"returns\">Returns</h4>\n<p><code>Number</code> - Wallet balance at given block in Atto</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"54466e61-abb1-4785-bea9-42c08dbfdc7e","name":"hmyv2_getBalanceByBlockNumber","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getBalanceByBlockNumber\",\n    \"params\": [\n        \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n        1\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:15:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": 0\n}"}],"_postman_id":"9aeae4b8-1a09-4ed2-956b-d7c96266dd33"},{"name":"hmyv2_getStakingTransactionsCount","id":"ddc1b029-f341-4c4d-ba19-74b528d6e5e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingTransactionsCount\",\n    \"params\": [\n        \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n        \"SENT\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> - Wallet address</p>\n<p><code>String</code> - Type of staking transaction (SENT, RECEIVED, ALL)</p>\n<h4 id=\"returns\">Returns</h4>\n<p><code>Number</code> - Number of staking transactions</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"6bfe1510-6ca6-4f30-8615-9bda95b10f1c","name":"hmyv2_getStakingTransactionsCount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingTransactionsCount\",\n    \"params\": [\n        \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n        \"SENT\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:16:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"62"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": 396\n}"}],"_postman_id":"ddc1b029-f341-4c4d-ba19-74b528d6e5e5"},{"name":"hmyv2_getStakingTransactionsHistory","event":[{"listen":"test","script":{"id":"1cf1c147-27d6-4118-82c5-b2ebb8c7a508","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"c5d25b36-57be-4e43-a23b-17ace350e322","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingTransactionsHistory\",\n    \"params\": [\n        {\n            \"address\": \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n            \"pageIndex\": 0,\n            \"pageSize\": 1,\n            \"fullTx\": true,\n            \"txType\": \"ALL\",\n            \"order\": \"ASC\"\n        }\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Object</code> - Transaction history args</p>\n<ul>\n<li><code>address</code> - <code>String</code> : Wallet address</li>\n<li><code>pageIndex</code> - <code>Number</code> : Optional, which page of transactinos to return, default 0</li>\n<li><code>pageSize</code> - <code>Number</code> : Optional, how many transactions to display per page, default 1000</li>\n<li><code>fullTx</code> - <code>Bool</code> : Optional, return full transaction data or just transaction hashes, default false</li>\n<li><code>txType</code> - <code>String</code>: Optional, which type of transactions to display (\"ALL\", \"RECEIVED\", or \"SENT\"), default \"ALL\"</li>\n<li><code>order</code> - <code>String</code>: Optional, sort transactions in ascending or descending order based on timestamp (\"ASC\" or \"DESC\"), default \"ASC\"</li>\n</ul>\n<h4 id=\"returns\">Returns</h4>\n<p>If <code>fullTx</code> is <code>true</code></p>\n<p><code>Array</code> of <code>Object</code> : List of staking transactions</p>\n<ul>\n<li><code>blockHash</code> - <code>String</code>: Block hash that transaction was finalized. <code>null</code> if the transaction is pending.</li>\n<li><code>blockNumber</code> - <code>Number</code>: Block number that transaction was finalized. <code>null</code> if the transaction is pending.</li>\n<li><code>from</code> - <code>String</code>: Wallet address of sender</li>\n<li><code>timestamp</code> - <code>Number</code> : Timestamp in Unixtime when transaction was finalized</li>\n<li><code>gasPrice</code> - <code>Number</code>: Gas price in Atto</li>\n<li><code>gas</code> - <code>Number</code>: Gas limit in Atto</li>\n<li><code>hash</code> - <code>String</code>: Transaction hash</li>\n<li><code>nonce</code> - <code>Number</code>: Wallet nonce for the transaction</li>\n<li><code>transactionIndex</code> - <code>Number</code>: Index of transaction in block. <code>null</code> if the transaction is pending.</li>\n<li><code>type</code> - <code>String</code> : Type of staking transaction</li>\n<li><code>msg</code> - <code>Object</code>: Staking transaction data</li>\n</ul>\n<p>If <code>fullTx</code> is <code>false</code></p>\n<p><code>Array</code> of <code>String</code> : List of staking transaction hashes</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"1a2905c7-e336-4d70-8fcd-f8c6a3e31dbc","name":"hmyv2_getStakingTransactionsHistory","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getStakingTransactionsHistory\",\n    \"params\": [\n        {\n            \"address\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n            \"pageIndex\": 0,\n            \"pageSize\": 1,\n            \"fullTx\": true,\n            \"txType\": \"ALL\",\n            \"order\": \"ASC\"\n        }\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:16:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"469"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"staking_transactions\": [\n            {\n                \"blockHash\": \"0xac478a2f8ac8d67069d6453d66bccc08ef44dbfbe4b1959e8bbcb360accbec30\",\n                \"blockNumber\": 3399009,\n                \"from\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                \"gas\": 25000,\n                \"gasPrice\": 1000000000,\n                \"hash\": \"0xc139301b99ec9a7ea716579cda7dd863f5243f0d47e3d34233a5006c2754abb9\",\n                \"msg\": {\n                    \"amount\": 5e+23,\n                    \"delegatorAddress\": \"one1pgqzkwz95zd6cjjf7aa9lxjfppuy74kcgjn3pu\",\n                    \"validatorAddress\": \"one1ju6cn0dtfa3fahuelc6ppj8c2sg2xqn759zxcm\"\n                },\n                \"nonce\": 0,\n                \"r\": \"0xee6c7cf42da84ff0f6835a1911793e368f3066e9ef045068829168b5f18871c6\",\n                \"s\": \"0x22f2f655ea207dd61dcf7c48f22143f435a6b3a9ff63570df2980759a4075c29\",\n                \"timestamp\": 1589887142,\n                \"transactionIndex\": 0,\n                \"type\": \"Delegate\",\n                \"v\": \"0x26\"\n            }\n        ]\n    }\n}"}],"_postman_id":"c5d25b36-57be-4e43-a23b-17ace350e322"},{"name":"hmyv2_getTransactionsCount","event":[{"listen":"test","script":{"id":"690d14fa-8e91-4c35-a7fa-bab51aa5964b","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"fc97aed2-e65e-4cf4-bc01-8dadb76732c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTransactionsCount\",\n    \"params\": [\n        \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n        \"SENT\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>String</code> - Wallet address</p>\n<p><code>String</code> - Type of staking transaction (SENT, RECEIVED, ALL)</p>\n<h4 id=\"returns\">Returns</h4>\n<p><code>Number</code> - Number of transactions</p>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"9f0f067a-a67e-4c30-ad66-e79562cc4cbb","name":"hmyv2_getTransactionsCount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTransactionsCount\",\n    \"params\": [\n        \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n        \"SENT\"\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:16:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": 1\n}"}],"_postman_id":"fc97aed2-e65e-4cf4-bc01-8dadb76732c0"},{"name":"hmyv2_getTransactionsHistory","event":[{"listen":"test","script":{"id":"82f27001-6b05-4941-abe7-54e31755bef3","exec":["console.log(\"Request Body\")","console.log(pm.request.body.raw)","console.log()","console.log(\"Response\")","console.log(pm.response.json())","","pm.test(\"Response should not contain errors.\", () => {","    pm.expect('error' in pm.response.json()).to.equal(false);","})","","pm.test(\"Response should have non-null result field.\", () => {","    pm.expect('result' in pm.response.json()).to.equal(true);","    pm.expect(pm.response.json().result).not.equal(null);","})"],"type":"text/javascript"}}],"id":"2200a088-81b5-4420-a291-312a7c6d880e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTransactionsHistory\",\n    \"params\": [\n        {\n            \"address\": \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n            \"pageIndex\": 0,\n            \"pageSize\": 1,\n            \"fullTx\": true,\n            \"txType\": \"ALL\",\n            \"order\": \"ASC\"\n        }\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io","description":"<h4 id=\"parameters\">Parameters</h4>\n<p><code>Object</code> - Transaction history args</p>\n<ul>\n<li><code>address</code> - <code>String</code> : Wallet address</li>\n<li><code>pageIndex</code> - <code>Number</code> : Optional, which page of transactions to return, default 0</li>\n<li><code>pageSize</code> - <code>Number</code> : Optional, how many transactions to display per page, default 1000</li>\n<li><code>fullTx</code> - <code>Bool</code> : Optional, return full transaction data or just transaction hashes, default false</li>\n<li><code>txType</code> - <code>String</code>: Optional, which type of transactions to display (\"ALL\", \"RECEIVED\", or \"SENT\"), default \"ALL\"</li>\n<li><code>order</code> - <code>String</code>: Optional, sort transactions in ascending or descending order based on timestamp (\"ASC\" or \"DESC\"), default \"ASC\"</li>\n</ul>\n<h4 id=\"returns\">Returns</h4>\n<p>If <code>fullTx</code> <code>true</code></p>\n<p><code>Array</code> of <code>Object</code></p>\n<ul>\n<li><code>blockHash</code> - <code>String</code>: Block hash that transaction was finalized. <code>null</code> if the transaction is pending.</li>\n<li><code>blockNumber</code> - <code>Number</code>: Block number that transaction was finalized. <code>null</code> if the transaction is pending.</li>\n<li><code>from</code> - <code>String</code> : Wallet address</li>\n<li><code>timestamp</code> - <code>Number</code> : Timestamp in Unix time when transaction was finalized</li>\n<li><code>gas</code> - <code>Number</code>: Gas limit in Atto</li>\n<li><code>gasPrice</code> - <code>Number</code>: Gas price in Atto</li>\n<li><code>hash</code> - <code>String</code>: Transaction hash</li>\n<li><code>input</code> - <code>String</code>: Transaction data, used for smart contracts</li>\n<li><code>nonce</code> - <code>Number</code>: Wallet nonce for the transaction</li>\n<li><code>to</code> - <code>String</code>: Wallet address of receiver</li>\n<li><code>transactionIndex</code> - <code>Number</code>: Index of transaction in block. <code>null</code> if the transaction is pending.</li>\n<li><code>value</code> - <code>Number</code>: Amount transfered in Atto</li>\n<li><code>shardID</code> - <code>Number</code> : Shard where amount is from</li>\n<li><code>toShardID</code> - <code>Number</code> : Shard where the amount is sent</li>\n</ul>\n<p>If <code>fullTx</code> is <code>false</code></p>\n<ul>\n<li><code>Array</code> of <code>String</code> : List of transaction hashes</li>\n</ul>\n","urlObject":{"protocol":"https","host":["rpc","s0","t","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"ebd8ba5a-edf8-4d52-bd76-bac09cc4d070","name":"hmyv2_getTransactionsHistory","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"method\": \"hmyv2_getTransactionsHistory\",\n    \"params\": [\n        {\n            \"address\": \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n            \"pageIndex\": 0,\n            \"pageSize\": 1,\n            \"fullTx\": true,\n            \"txType\": \"ALL\",\n            \"order\": \"ASC\"\n        }\n    ]\n}"},"url":"https://rpc.s0.t.hmny.io"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Oct 2020 13:16:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"451"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1,\n    \"result\": {\n        \"transactions\": [\n            {\n                \"blockHash\": \"0x77ef489dce6deee69374aa878a67a9cf1f653ec4f7b697bbeed2931669f6be77\",\n                \"blockNumber\": 3687181,\n                \"from\": \"one1a5fznwvnr3fed9676g42u7q30crtmmkk5qspe9\",\n                \"gas\": 21000,\n                \"gasPrice\": 1000000000,\n                \"hash\": \"0x41d6e74ff3a7e615080b98fcfb7bce8be7b1ba4a8671e1ba2e9527eb3e1da20d\",\n                \"input\": \"0x\",\n                \"nonce\": 354,\n                \"r\": \"0x509fad8c9aca4ef3a6732ebfb544261d527e062c1d8169569f91e18cb60fade9\",\n                \"s\": \"0x14f1dc80082be16aabca42079807ba9f8312545586020b33d1d470c391828246\",\n                \"shardID\": 0,\n                \"timestamp\": 1592529632,\n                \"to\": \"one15vlc8yqstm9algcf6e94dxqx6y04jcsqjuc3gt\",\n                \"toShardID\": 0,\n                \"transactionIndex\": 0,\n                \"v\": \"0x26\",\n                \"value\": 1.0001e+22\n            }\n        ]\n    }\n}"}],"_postman_id":"2200a088-81b5-4420-a291-312a7c6d880e"}],"id":"e1554965-be49-4e63-9d1a-193147fb4037","description":"<p>Wallet related RPCs</p>\n","_postman_id":"e1554965-be49-4e63-9d1a-193147fb4037"}],"id":"2cd1b3c9-2e76-4362-865b-24a95819cf44","description":"<h2 id=\"overview\">Overview</h2>\n<p>A Remote Procedure Call (RPC) executes a procedure/method in a different address-space or machine — in this context, it is a node on the Harmony network.</p>\n<p>For reference, all RPC methods that can be called on a Harmony node (along with implementation details) can be seen <a href=\"https://github.com/harmony-one/harmony/tree/main/rpc\">here</a>.</p>\n<h2 id=\"endpoints\">Endpoints</h2>\n<ul>\n<li>Mainnet</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Shard</strong></th>\n<th><strong>Endpoint</strong></th>\n<th><strong>Websocket</strong></th>\n<th><strong>Node Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td><a href=\"https://rpc.s0.t.hmny.io\">https://rpc.s0.t.hmny.io</a></td>\n<td>wss://ws.s0.t.hmny.io</td>\n<td>non archival</td>\n</tr>\n<tr>\n<td>0</td>\n<td><a href=\"https://a.api.s0.t.hmny.io\">https://a.api.s0.t.hmny.io</a></td>\n<td>wss://a.ws.s0.t.hmny.ioarchival</td>\n<td>archival</td>\n</tr>\n<tr>\n<td>1</td>\n<td><a href=\"https://rpc.s1.t.hmny.io\">https://rpc.s1.t.hmny.io</a></td>\n<td>wss://ws.s1.t.hmny.io</td>\n<td>archival</td>\n</tr>\n</tbody>\n</table>\n</div><p><em>S1 nodes behind the endpoints are running in archival mode with a full archival DB. Please take note on Shard 0 difference</em>.</p>\n<ul>\n<li>Testnet</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Shard</strong></th>\n<th><strong>Endpoint</strong></th>\n<th><strong>Websocket</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td><a href=\"https://rpc.s0.b.hmny.io\">https://rpc.s0.b.hmny.io</a> or  <br /><a href=\"https://api.s0.b.hmny.io\">https://api.s0.b.hmny.io</a></td>\n<td>wss://ws.s0.t.hmny.io</td>\n</tr>\n<tr>\n<td>1</td>\n<td><a href=\"https://rpc.s1.b.hmny.io\">https://rpc.s1.b.hmny.io</a> or <a href=\"https://api.s1.b.hmny.io\">https://api.s1.b.hmny.io</a></td>\n<td>wss://ws.s1.t.hmny.io</td>\n</tr>\n</tbody>\n</table>\n</div><p><em>All nodes behind the endpoints are running in archival mode with a full archival DB</em>.</p>\n<h2 id=\"setup\">Setup</h2>\n<ul>\n<li><p>All requests are <code>POST</code></p>\n</li>\n<li><p>All request data follow the standard <a href=\"https://www.jsonrpc.org/specification\">JSON RPC 2.0</a> format with the following 4 fields in the data object</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Request Data Object</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Purpose</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>jsonrpc</td>\n<td>\"2.0\"</td>\n<td>JSON-RPC version number</td>\n</tr>\n<tr>\n<td>id</td>\n<td>\"1\"</td>\n<td>Request ID</td>\n</tr>\n<tr>\n<td>method</td>\n<td>\"example_method\"</td>\n<td>RPC method</td>\n</tr>\n<tr>\n<td>params</td>\n<td>[]</td>\n<td>List of parameters</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><p>The endpoint URL can be your own node or one of the endpoints (listed above) ran by Harmony</p>\n</li>\n<li><p>When developing on a local network, the endpoint URLs are:</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Shard</strong></th>\n<th><strong>Endpoint</strong></th>\n<th><strong>Websocket</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td><a href=\"http://localhost:9120\">http://localhost:9120</a></td>\n<td><a href=\"http://localhost:9920\">http://localhost:9920</a></td>\n</tr>\n<tr>\n<td>1</td>\n<td><a href=\"http://localhost:9122\">http://localhost:9122</a></td>\n<td><a href=\"http://localhost:9922\">http://localhost:9922</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"postman\">Postman</h2>\n<p>An easy tool you can use to interact with the RPC Methods is <a href=\"https://www.postman.com/downloads/\">Postman</a>. When using Postman, ensure that you have the following things configured:</p>\n<ul>\n<li>All requests must be a <code>POST</code> to the correct endpoint. Note that the local network uses <code>http</code> not <code>https</code></li>\n</ul>\n<img src=\"https://i.imgur.com/iL4pETt.png\" />\n\n<ul>\n<li>The header must have the key <code>Content-Type</code> with the value <code>application/json</code></li>\n</ul>\n<img src=\"https://i.imgur.com/du4UMbx.png\" />\n\n<ul>\n<li>The body must be raw JSON</li>\n</ul>\n<img src=\"https://i.imgur.com/ItdqK1E.png\" />\n\n<h4 id=\"you-can-also-import-and-run-all-of-the-examples-using-postman-by-clicking-on-run-in-postman-at-the-top-of-the-webpage\">You can also import and run all of the examples using Postman by clicking on '<em>Run in Postman</em>' at the top of the webpage.</h4>\n","event":[{"listen":"prerequest","script":{"id":"655e43ff-21cb-4bd2-8bdc-9ebc65790ee1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fc751ce1-3dd5-49fb-8cd2-6c9d81efa091","type":"text/javascript","exec":[""]}}],"_postman_id":"2cd1b3c9-2e76-4362-865b-24a95819cf44"},{"name":"Rosetta","item":[{"name":"Data","item":[{"name":"/network/list","id":"cc61f732-e8f1-4df6-bdb6-193ed7c5d237","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/network/list","description":"<h2 id=\"overview\">Overview</h2>\n<p>This endpoint returns a list of <a href=\"https://www.rosetta-api.org/docs/models/NetworkIdentifier.html\"><code>NetworkIdentifiers</code></a> that the Rosetta server supports.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/NetworkApi.html#networklist\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"network-identifier\">Network Identifier</h4>\n<p>The Harmony network identifier has the following values:</p>\n<ul>\n<li><code>blockchain</code> - <code>String</code>: Always \"Harmony\"</li>\n<li><code>network</code> - <code>String</code>: Either \"Testnet\" or \"Mainnet\"</li>\n<li><code>sub_network_identifier</code> - <a href=\"https://www.rosetta-api.org/docs/models/SubNetworkIdentifier.html\"><code>SubNetworkIdentifier</code></a>: <ul>\n<li><code>network</code> - <code>String</code>: Either \"shard 0\" or \"shard 1\" or \"shard 2\" or \"shard 3\" depending on the shard</li>\n<li><code>metadata</code> - <code>Object</code>:<ul>\n<li><code>is_beacon</code> - <code>Bool</code>: <code>true</code> for shard 0, <code>false</code> in all other cases</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["network","list"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"d6fc1e99-e7fa-4172-b580-ecb500873cac","name":"/network/list","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/network/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Wed, 28 Oct 2020 09:31:55 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"148"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"network_identifiers\": [\n        {\n            \"blockchain\": \"Harmony\",\n            \"network\": \"Testnet\",\n            \"sub_network_identifier\": {\n                \"network\": \"shard 0\",\n                \"metadata\": {\n                    \"is_beacon\": true\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"cc61f732-e8f1-4df6-bdb6-193ed7c5d237"},{"name":"/network/options","id":"d5016e62-e084-4989-afb5-a98c28994fa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 1\",\n            \"metadata\": {\n                \"is_beacon\": false\n            }\n        }\n    },\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/network/options","description":"<h2 id=\"overview\">Overview</h2>\n<p>This endpoint returns the version information and allowed network-specific types for a shard's <code>NetworkIdentifier</code> on Harmony.<br /><em>Note that not all shards support the same types/options.</em></p>\n<p><a href=\"https://www.rosetta-api.org/docs/NetworkApi.html#networkoptions\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"version-information\">Version information:</h4>\n<ul>\n<li><code>rosetta_version</code> is the <a href=\"https://www.rosetta-api.org/versions.html\">spec version</a> that the node currently implements.</li>\n<li><code>node_version</code> is the version of the node program that is running the Rosetta service.</li>\n</ul>\n<h4 id=\"the-allowed-types-for-the-harmony-network\">The 'allowed' types for the Harmony network:</h4>\n<ul>\n<li><p><code>operation_types</code> contains all the <a href=\"https://www.rosetta-api.org/docs/models/Operation.html\">operations</a> that can be done on the Harmony network:</p>\n<blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Operation Type</th>\n<th>Discription</th>\n<th>Supported Shard</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Gas</code></td>\n<td>All <strong>submitted</strong> transactions will incur an implicit gas operation. However, some on-chain effects (such as undelegation payout, or cross-shard transaction payout) will <em>not</em> incur gas as it was paid by the submitted transaction that caused said effect.</td>\n<td>All</td>\n</tr>\n<tr>\n<td><code>NativeTransfer</code></td>\n<td>This operation is for transferring native ONE tokens from one account to another in the <strong>same shard</strong>. All \"NativeTransfer\" operations come in pairs, one operation deducting an amount from an account, and the other operation crediting said amount to an account. Moreover, the 2 operations are related in one (and only one) direction.</td>\n<td>All</td>\n</tr>\n<tr>\n<td><code>NativeCrossShardTransfer</code></td>\n<td>his operation is for transferring native ONE tokens between <strong>different shards</strong>. Note that cross-shard transfer operations appear in pairs, but not in the same transaction/block. The first appearance will be on the submitted transaction on the source/from shard. The second appearance will be on the destination/to shard.</td>\n<td>All</td>\n</tr>\n<tr>\n<td><code>ContractCreation</code></td>\n<td>This operation creates/instantiates a smart contract.  All \"ContractCreation\" operations come in pairs, one operation deducting the native ONE tokens from the sender's account, the other operation crediting said amount to the contract's account (as dictated by the contract instantiation code).</td>\n<td>All</td>\n</tr>\n<tr>\n<td><code>Genesis</code></td>\n<td>This is a special operation that is only valid for block 0. It indicates the initial funds of the shard.</td>\n<td>All</td>\n</tr>\n<tr>\n<td><code>UndelegationPayout</code></td>\n<td>This is a special operation that is only present on the last block of an Epoch. It represents any delegated/locked native ONE tokens that are refunded to an account.</td>\n<td>Beacon (0)</td>\n</tr>\n<tr>\n<td><code>CreateValidator</code></td>\n<td>This operation creates a validator on the Harmony network for the sender's account.</td>\n<td>Beacon (0)</td>\n</tr>\n<tr>\n<td><code>EditValidator</code></td>\n<td>This operation edits the sender's validator information or election status (i.e: validator name and/or being eligible for election).</td>\n<td>Beacon (0)</td>\n</tr>\n<tr>\n<td><code>Delegate</code></td>\n<td>This operation delegates (or re-delegates from pending undelegations) native ONE tokens from the sender's account to a validator's account.</td>\n<td>Beacon (0)</td>\n</tr>\n<tr>\n<td><code>Undelegate</code></td>\n<td>This operation removes delegation from a validator. Note that this operation does not immediately unlock the sender's tokens.</td>\n<td>Beacon (0)</td>\n</tr>\n<tr>\n<td><code>CollectRewards</code></td>\n<td>This operation credits <strong>all</strong> the staking rewards to the sender's account.</td>\n<td>Beacon (0)</td>\n</tr>\n</tbody>\n</table>\n</div></blockquote>\n</li>\n<li><p><code>operation_statuses</code> contains all of the on-chain <a href=\"https://www.rosetta-api.org/docs/models/OperationStatus.html\">status</a> for <em>any</em> of the <code>operation_types</code> on Harmony:</p>\n<blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Discription</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>success</code></td>\n<td>This indicates that the transaction's operation and associated EVM code was executed successfully.</td>\n</tr>\n<tr>\n<td><code>contract_failure</code></td>\n<td>This indicates that the smart contract code associated with a transaction's operation failed to execute.</td>\n</tr>\n<tr>\n<td><code>failure</code></td>\n<td>This indicates that a transaction's operation (not related to smart contract) failed.</td>\n</tr>\n</tbody>\n</table>\n</div></blockquote>\n</li>\n<li><p><code>errors</code> contains all of the supported <a href=\"https://www.rosetta-api.org/docs/models/Error.html\">Rosetta errors</a>:</p>\n<blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Discription</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Catch all/fallback errors.</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Sanity check errors.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Invalid network errors.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Plain transaction submission errors.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Staking transaction submission errors.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Block not found errors.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Plain or staking transaction not found errors.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Receipt not found errors.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Singing curve type not supported errors.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>Invalid transaction construction errors.</td>\n</tr>\n</tbody>\n</table>\n</div></blockquote>\n</li>\n<li><p><code>historical_balance_lookup</code> is only true for nodes running in archival mode.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["network","options"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"9f8943df-e42d-4ee0-93c3-e5aef3ca72a6","name":"/network/options (Shard 1)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 1\",\n            \"metadata\": {\n                \"is_beacon\": false\n            }\n        }\n    },\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s1.b.hmny.io/network/options"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 29 Oct 2020 07:32:16 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"1099"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"version\": {\n        \"rosetta_version\": \"1.4.6\",\n        \"node_version\": \"Harmony (C) 2020. harmony, version v6478-v2.3.7-121-g46bbe894 (jenkins@ 2020-10-28T12:53:59+0000)\"\n    },\n    \"allow\": {\n        \"operation_statuses\": [\n            {\n                \"status\": \"success\",\n                \"successful\": true\n            },\n            {\n                \"status\": \"failure\",\n                \"successful\": false\n            },\n            {\n                \"status\": \"contract_failure\",\n                \"successful\": false\n            }\n        ],\n        \"operation_types\": [\n            \"Gas\",\n            \"NativeTransfer\",\n            \"NativeCrossShardTransfer\",\n            \"ContractCreation\",\n            \"Genesis\",\n            \"PreStakingBlockReward\",\n            \"UndelegationPayout\"\n        ],\n        \"errors\": [\n            {\n                \"code\": 0,\n                \"message\": \"catch all error\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 1,\n                \"message\": \"sanity check error\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 2,\n                \"message\": \"invalid network error\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 3,\n                \"message\": \"transaction submission error\",\n                \"retriable\": true\n            },\n            {\n                \"code\": 5,\n                \"message\": \"block not found error\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 6,\n                \"message\": \"transaction or staking transaction not found\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 7,\n                \"message\": \"receipt not found\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 8,\n                \"message\": \"unsupported curve type\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 9,\n                \"message\": \"invalid transaction construction\",\n                \"retriable\": false\n            }\n        ],\n        \"historical_balance_lookup\": true\n    }\n}"},{"id":"bdaca95b-3ddf-4827-ac8f-f999924c4462","name":"/network/options (Shard 0)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/network/options"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 29 Oct 2020 07:31:29 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"1251"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"version\": {\n        \"rosetta_version\": \"1.4.6\",\n        \"node_version\": \"Harmony (C) 2020. harmony, version v6478-v2.3.7-121-g46bbe894 (jenkins@ 2020-10-28T12:53:59+0000)\"\n    },\n    \"allow\": {\n        \"operation_statuses\": [\n            {\n                \"status\": \"success\",\n                \"successful\": true\n            },\n            {\n                \"status\": \"failure\",\n                \"successful\": false\n            },\n            {\n                \"status\": \"contract_failure\",\n                \"successful\": false\n            }\n        ],\n        \"operation_types\": [\n            \"Gas\",\n            \"NativeTransfer\",\n            \"NativeCrossShardTransfer\",\n            \"ContractCreation\",\n            \"Genesis\",\n            \"PreStakingBlockReward\",\n            \"UndelegationPayout\",\n            \"CreateValidator\",\n            \"EditValidator\",\n            \"Delegate\",\n            \"Undelegate\",\n            \"CollectRewards\"\n        ],\n        \"errors\": [\n            {\n                \"code\": 0,\n                \"message\": \"catch all error\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 1,\n                \"message\": \"sanity check error\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 2,\n                \"message\": \"invalid network error\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 3,\n                \"message\": \"transaction submission error\",\n                \"retriable\": true\n            },\n            {\n                \"code\": 5,\n                \"message\": \"block not found error\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 6,\n                \"message\": \"transaction or staking transaction not found\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 7,\n                \"message\": \"receipt not found\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 8,\n                \"message\": \"unsupported curve type\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 9,\n                \"message\": \"invalid transaction construction\",\n                \"retriable\": false\n            },\n            {\n                \"code\": 4,\n                \"message\": \"staking transaction submission error\",\n                \"retriable\": true\n            }\n        ],\n        \"historical_balance_lookup\": true\n    }\n}"}],"_postman_id":"d5016e62-e084-4989-afb5-a98c28994fa5"},{"name":"/network/status","id":"fc75c7aa-7d41-44dc-baeb-9faeb0c2e813","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/network/status","description":"<h2 id=\"overview\">Overview</h2>\n<p>This endpoint returns the current status of the network.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/NetworkApi.html#networkstatus\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"supported-blocks\">Supported Blocks</h4>\n<p>Only a node running in archival mode can ensure full Rosetta functionality on any block. Nodes running in state-pruned mode (most validators) can only ensure full Rosetta functionality on the last 50-ish <em>synced</em> blocks. </p>\n<p>You may see up to what block is supported with the <code>oldest_block_identifier</code> in this response. A node that supports all blocks will <em>not</em> have the <code>oldest_block_identifier</code> in the response. </p>\n<h4 id=\"block-sync\">Block Sync</h4>\n<p>There are 3 sync stages:</p>\n<blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Stage</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>unknown</code></td>\n<td>This usually means that the node is still initializing the syncing service, but it also acts as a default status.</td>\n</tr>\n<tr>\n<td><code>syncing new block(s)</code></td>\n<td>This means that the node has found a higher block height (that the majority of connected nodes are at least at), and will sync to said height.</td>\n</tr>\n<tr>\n<td><code>fully synced</code></td>\n<td>This means that the node is at or past the block height of all the nodes it is connected to.</td>\n</tr>\n</tbody>\n</table>\n</div></blockquote>\n<h4 id=\"peer-information\">Peer information</h4>\n<p>This endpoint returns all of the connected peers along with what p2p topic each peer is connected with. The p2p topics for a peer can be found in the <code>metadata</code> of each <a href=\"https://www.rosetta-api.org/docs/models/Peer.html\"><code>Peer</code></a> object under the <code>topics</code> key. The topics are an array of strings where each string is a topic the node is connected with for the <code>Peer</code>.</p>\n","urlObject":{"protocol":"https","path":["network","status"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"f3c7f0da-3623-4a3a-92e1-3c2dbba98cc9","name":"/network/status","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/network/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 29 Oct 2020 15:22:55 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"current_block_identifier\": {\n        \"index\": 2230608,\n        \"hash\": \"0x8350095bca1ff83c1ab7b92af136ebd804493adbaebf04ddd6c8bd67c2a59e63\"\n    },\n    \"current_block_timestamp\": 1603984969000,\n    \"genesis_block_identifier\": {\n        \"index\": 0,\n        \"hash\": \"0xaa0680c6545ca25426023025fd928faae88eb8bc59eb9f5525cc3c0f409925a5\"\n    },\n    \"sync_status\": {\n        \"current_index\": 2230608,\n        \"target_index\": 2230608,\n        \"stage\": \"fully synced\"\n    },\n    \"peers\": [\n        {\n            \"peer_id\": \"Qmefyrh8wNKAqQpKteidz6mWZ1fXviTyAyYWKFKMJZZ1AZ\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmcmNAKbZvtEk87FtnjVyAmPwgmfrRdCVp1udvbx1tFrbz\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"Qmb9coQsPKhmQLRMi3AFjRNB49t4Ru4d81bmPx9qAdW22r\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmQQqLpVjxF95qPwnS99DqA5q23v1WXuq9HHqKi1nudmH8\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmaDqhrdjgmhvWrbK5TBZHuQd2LTXSgYD8GRJLbCi7Ee1k\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmW6S3Um9npTFpjdtBtwYEH8mQu8MV4TgGdN4w1dv8abjZ\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmeQG4LStdcUp3ba9yR1tVyuxNa72kADrt2mhgSDCJ7hpu\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmWDg8hom6tgPwTTuKNgASYT6tBVPQHkEdpuUgNpDNQuSN\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmUPqT8A3xhQEmbdBmYhbbd8cgVtrpLv1hx8zmYLHoki1f\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmSkkwKVUeUWbqckxfDMr9Zb9y1gdGquxvBc1bnjG8xjAJ\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmVNF5SHiXiTg2ViCzqFBD94WZE7vNjLpyVKBTfDtRihrA\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"Qmd3JKCEYdiSWn65TxGztZ26D1MFNbiFFeEnjKXarUFW3H\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmNZfGLiArunBCwhjhe34bTznmMrj32pZBDPNtqv43L84Z\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"Qmb79RMt6mQTU2ocCG8dLX8YL5LUQj2PdZgjivtus7JWcn\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmbeRbjiNG4w5A7Tqnz1xRCqY5VMVQcs4Wf6HGJ1LaNPPZ\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmS9L5u6fVoh53mBrQQUATCQbeJcrg8VANM4fbWDeumuNQ\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"Qmc9fFruuwo6Kx1c2SksDXiFsm4NqBa2kuS7QzqPvGVbfQ\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmRjGgsjdsfqwXcfoq86cMFxyfjHKSQBPJTbwjbBbb5XDM\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmTvULbY5CUTARPBPymtDDmMHJJrYoeDJPjv7tzckqJ7G3\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmbnVd1g9vEqe2euCoGeyX9ngiL6zXM97J5fnbDmUfXNub\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmU9AdDM88LsT2pUYkhkpCddSzvZZsceYUkKzdsg4tVmP5\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmNeSxQ9r4AiXfSguTTxBUU1ZsvGcSJF9wGRGpUxe9XWUY\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmYCV1MDtVKp4LPquzTWncLyXaR31fkWrYoSKVHPmtNCMP\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmTTy7yRydG9UuetdBJhBJaEBhCQUmaP1tTH2LsdfgGzdp\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\",\n                    \"hmy/testnet/0.0.1/node/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmQQFs81bT4TEZUh8K1mZsbyF1e3m3GWw5mzaKf2QzwmhK\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        },\n        {\n            \"peer_id\": \"QmaUf2Ej1dHPjcf42pbGepA1HFPVWLSnGbiFRvtrdyYfSM\",\n            \"metadata\": {\n                \"topics\": [\n                    \"hmy/testnet/0.0.1/client/beacon\"\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"fc75c7aa-7d41-44dc-baeb-9faeb0c2e813"},{"name":"/account/balance","id":"c4ee05a6-93ea-4b78-9ee6-ba870646d3c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"account_identifier\": {\n        \"address\": \"one1zksj3evekayy90xt4psrz8h6j2v3hla4qwz4ur\",\n        \"metadata\": {\n            \"hex_address\": \"0x15a128e599b74842BCcBa860311Efa92991bffb5\"\n        }\n    },\n    \"block_identifier\": {\n        \"index\": 1123941\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/account/balance","description":"<h2 id=\"overview\">Overview</h2>\n<p>This endpoint gets an array of all <code>AccountBalances</code> for an <code>AccountIdentifier</code> and the BlockIdentifier at which the balance lookup was performed.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/AccountApi.html#accountbalance\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"supported-blocks\">Supported Blocks</h4>\n<p>Only a node running in archival mode (with a full archival DB) can fetch the balance of an account at any block. Nodes running in state-pruned mode (most validators) can only fetch account balance at the last 50-ish <em>synced</em> blocks. For state-pruned nodes, any block after the <code>oldest_block_identifier</code> (from the <code>/network/status</code> endpoint) will return the balance at that block.</p>\n","urlObject":{"protocol":"https","path":["account","balance"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"3dc1ecce-d8dc-499d-af3f-1d1c46c7e658","name":"/account/balance (block hash)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"account_identifier\": {\n        \"address\": \"one1zksj3evekayy90xt4psrz8h6j2v3hla4qwz4ur\",\n        \"metadata\": {\n            \"hex_address\": \"0x15a128e599b74842BCcBa860311Efa92991bffb5\"\n        }\n    },\n    \"block_identifier\": {\n        \"hash\": \"0xc36aa0c2878fcc8d9b8359932dc80a56af6dcfc8a0231474f933087313be2518\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/account/balance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 06:50:22 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"211"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"block_identifier\": {\n        \"index\": 1123941,\n        \"hash\": \"0xc36aa0c2878fcc8d9b8359932dc80a56af6dcfc8a0231474f933087313be2518\"\n    },\n    \"balances\": [\n        {\n            \"value\": \"4937075263744361682000000000\",\n            \"currency\": {\n                \"symbol\": \"ONE\",\n                \"decimals\": 18\n            }\n        }\n    ]\n}"},{"id":"7799ce7d-4faa-47fe-b4db-0f25e7592bfd","name":"/account/balance (block index)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"account_identifier\": {\n        \"address\": \"one1zksj3evekayy90xt4psrz8h6j2v3hla4qwz4ur\",\n        \"metadata\": {\n            \"hex_address\": \"0x15a128e599b74842BCcBa860311Efa92991bffb5\"\n        }\n    },\n    \"block_identifier\": {\n        \"index\": 1123941\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/account/balance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 06:49:19 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"211"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"block_identifier\": {\n        \"index\": 1123941,\n        \"hash\": \"0xc36aa0c2878fcc8d9b8359932dc80a56af6dcfc8a0231474f933087313be2518\"\n    },\n    \"balances\": [\n        {\n            \"value\": \"4937075263744361682000000000\",\n            \"currency\": {\n                \"symbol\": \"ONE\",\n                \"decimals\": 18\n            }\n        }\n    ]\n}"}],"_postman_id":"c4ee05a6-93ea-4b78-9ee6-ba870646d3c1"},{"name":"/block","id":"ef70ac68-92d7-42e3-a798-96a8049c8a2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"block_identifier\": {\n        \"index\": 2241709\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/block","description":"<h2 id=\"overview\">Overview</h2>\n<p>This endpoint gets a block by its <code>BlockIdentifier</code>. Requests to this endpoint are idempotent.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/BlockApi.html#block\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"epoch-information\">Epoch Information</h4>\n<p>For Harmony, an epoch is an interval of consecutive blocks that are validated with a fixed committee of validators. Every epoch, a new committee of validators is elected. </p>\n<p>The epoch of the block can be found in the <code>metadata</code> of the <code>block</code>.</p>\n","urlObject":{"protocol":"https","path":["block"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"a0a3c203-d35d-4fed-8be1-508fa4071e89","name":"/block (block hash)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"block_identifier\": {\n        \"hash\": \"0x9480debdba5755ede7545d886793fa141ad8ae9ec76cc9ecef81da8fb8ebdd02\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/block"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 07:46:29 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"417"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"block\": {\n        \"block_identifier\": {\n            \"index\": 2241709,\n            \"hash\": \"0x9480debdba5755ede7545d886793fa141ad8ae9ec76cc9ecef81da8fb8ebdd02\"\n        },\n        \"parent_block_identifier\": {\n            \"index\": 2241708,\n            \"hash\": \"0x0e245a0ccd83f61f15e3c87d2d75945c627684e4ff57f1d572a174b2b94006d3\"\n        },\n        \"timestamp\": 1604042286000,\n        \"transactions\": [],\n        \"metadata\": {\n            \"epoch\": 58992\n        }\n    },\n    \"other_transactions\": [\n        {\n            \"hash\": \"0x133a3ac6d8a9f0ffb377d4c8bb805dbfbafe876eb3a2cd72142bafb23ea93a4f\"\n        }\n    ]\n}"},{"id":"c10b6ed5-faa2-4fac-91f8-764602ce34ab","name":"/block (block index)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"block_identifier\": {\n        \"index\": 2241709\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/block"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 07:45:08 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"417"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"block\": {\n        \"block_identifier\": {\n            \"index\": 2241709,\n            \"hash\": \"0x9480debdba5755ede7545d886793fa141ad8ae9ec76cc9ecef81da8fb8ebdd02\"\n        },\n        \"parent_block_identifier\": {\n            \"index\": 2241708,\n            \"hash\": \"0x0e245a0ccd83f61f15e3c87d2d75945c627684e4ff57f1d572a174b2b94006d3\"\n        },\n        \"timestamp\": 1604042286000,\n        \"transactions\": [],\n        \"metadata\": {\n            \"epoch\": 58992\n        }\n    },\n    \"other_transactions\": [\n        {\n            \"hash\": \"0x133a3ac6d8a9f0ffb377d4c8bb805dbfbafe876eb3a2cd72142bafb23ea93a4f\"\n        }\n    ]\n}"},{"id":"f3c64ec7-5a18-4ee1-a2ab-b869d66570a1","name":"/block (reward example)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"block_identifier\": {\n        \"index\": 3\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/block"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Sat, 31 Oct 2020 16:26:53 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"block\": {\n        \"block_identifier\": {\n            \"index\": 3,\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67\"\n        },\n        \"parent_block_identifier\": {\n            \"index\": 2,\n            \"hash\": \"0x996be9b22c329f7b4e2f9a794414d9f6eec49ad40d28730ee085c8a9291ae91a\"\n        },\n        \"timestamp\": 1590744811000,\n        \"transactions\": [],\n        \"metadata\": {\n            \"epoch\": 0\n        }\n    },\n    \"other_transactions\": [\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one1yc06ghr2p8xnl2380kpfayweguuhxdtupkhqzw_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one1gzf2cmv607r64nths76ur3z5rkdl9n2ucnaw66_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one1yd8hywc5rhas63l2mn9a49hg8znfnha2zntunc_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one1taefmq49nv5k0rkr2kj4xv8n3a75m4vm6pvzg2_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one14rujvdv383r90s2qer05jf5zwk5n4slr5h5syr_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one14e5ffwdejnt7njgq54d9w8gltwrggdusyw7y5p_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one1fcm35f8e9xc3f7c4tu3sm7ygkh338f2v2sxzyl_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one1puj38zamhlu89enzcdjw6rlhlqtyp2c675hjg5_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one1dpm37ppsgvepjfyvsamas25md280ctgmcfjlfx_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one12zlfzd2tyfngcghslrmv57xmn7ec4cqct32sks_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one17hlq693v48gy9snnhvd7cuvl8g9nkakgaf3pya_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one1drrv46y50uqym5nn7pxrj5sx4qzn6qesewqk3q_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one1n7puxkjd7mr6gr09ascyrd5z30mj23exwr3ypa_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one147r29htvd2fy3l82arvsuqc8szqy6py35aedex_reward\"\n        },\n        {\n            \"hash\": \"0x970f7004658a72baabfaa69098ca362c5518488ef28189764090a1e374e15e67_one1qlcc76thenzwgzy8x780dehygjdq6sef3czmxn_reward\"\n        }\n    ]\n}"}],"_postman_id":"ef70ac68-92d7-42e3-a798-96a8049c8a2f"},{"name":"/block/transaction","id":"6e1ccb83-7869-4e96-9a62-aa2bafc58f5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"transaction_identifier\": {\n        \"hash\": \"0x398c63f6958547bf65f7055175fb9428a9c644de205c8fc19e8deadc41104201\"\n    },\n    \"block_identifier\": {\n        \"index\": 2241386,\n        \"hash\": \"0x0376f64e703a25d41b4af91da402183f3b8cc9ab8b8c3f781377d99dd2c67555\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/block/transaction","description":"<h2 id=\"overview\">Overview</h2>\n<p>This endpoint gets a transaction in a block by its Transaction Identifier and Block Identifier.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/BlockApi.html#blocktransaction\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"transaction-operations\">Transaction Operations</h4>\n<p>Each type of transaction on Harmony executes a certain set of operations (from <code>/network/options</code>). This relationship is mapped below:</p>\n<blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction</th>\n<th>Operations</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Native same-shard transfer</td>\n<td><code>Gas</code>, <code>NativeTransfer</code></td>\n<td>All transactions incur gas fees. Both types of operations always appear together in a transaction. The amounts of the related <code>NativeTransfer</code> operations always sum to 0. If a transaction executed code in the EVM, the <code>NativeTransfer</code> operation <code>status</code> will indicate if it was successful or not. The metadata of these transactions will include the EVM logs (if any) as well as raw data of the transaction.</td>\n</tr>\n<tr>\n<td>Native cross-shard transfer</td>\n<td><code>Gas</code>, <code>NativeCrossShardTransfer</code></td>\n<td>All transaction <em>submissions</em> (on the 'from' shard) incur gas fees. Cross-shard payouts (on the 'to' shard) will <em>not</em> incur gas. The metadata of these transactions will include the to &amp; from shard ID as well as the related transaction identifier on the opposing shard.</td>\n</tr>\n<tr>\n<td>Contract creation</td>\n<td><code>Gas</code>, <code>ContractCreation</code></td>\n<td>All transactions incur gas fees. Both types of operations always appear together in a transaction. The amounts of the related <code>ContractCreation</code> operations always sum to 0. The status of the <code>ContractCreation</code> operation will indicate if the contract was successfully deployed. The metadata of these transactions will include the contract account identifier, EVM logs (if any), and the raw data of the transaction.</td>\n</tr>\n<tr>\n<td>Staking</td>\n<td><code>Gas</code>, <code>CreateValidator</code>, <code>EditValidator</code>, <code>Delegate</code>, <code>CollectRewards</code>, <code>Undelegate</code></td>\n<td>These transactions are only possible on the beacon shard (shard 0). All transactions incur gas fees. All operations that are not <code>Gas</code> are mutually exclusive in a transaction. The metadata of each operation (other than <code>Gas</code>) contains the staking details of the operation (i.e: validator address/information). The <code>Undelegate</code> operation <em>always</em> has 0 native tokens for the amount since the undelegation payout is done at a separate future block due to the locking period (the pending undelegate amount is stored in the metadata). A <code>Delegate</code> operation's amount need not be the exact amount delegated to the validator due to the re-delegation mechanism (which pulls funds from locked pending undelegations first).</td>\n</tr>\n<tr>\n<td>Undelegation Payout</td>\n<td><code>UndelegationPayout</code></td>\n<td>This is a special transaction that resulted in one or more previous undelegate staking transactions for an account. It incurs no gas fees.</td>\n</tr>\n<tr>\n<td>Genesis</td>\n<td><code>Genesis</code></td>\n<td>This is a special transaction for the genesis block. It incurs no gas fees.</td>\n</tr>\n<tr>\n<td>Pre-Staking Rewards</td>\n<td><code>PreStakingBlockReward</code></td>\n<td>This is a special transaction for the pre-staking epoch. It incurs no gas fees.</td>\n</tr>\n</tbody>\n</table>\n</div></blockquote>\n<h4 id=\"special-transactions\">Special Transactions</h4>\n<p>Some internal workings of the chain are expressed as special transactions since it changes the native token balance of accounts in the network. They are considered special since they cannot be directly created by a user, instead, they are the effects of previous transactions or derived from genesis settings. </p>\n<p>All special transactions have the following identifier format to guarantee uniqueness: <code>&lt;block_hash&gt;_&lt;address&gt;_&lt;special_tx_type&gt;</code>. For example, here is a pre-staking block reward transaction identifier: <code>0x996be9b22c329f7b4e2f9a794414d9f6eec49ad40d28730ee085c8a9291ae91a_one14e5ffwdejnt7njgq54d9w8gltwrggdusyw7y5p_reward</code>.</p>\n<p>All of the special transaction types:</p>\n<blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Special Tx Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>undelegation</code></td>\n<td>These transactions appear on the last block of every epoch since the staking mechanism was enabled.<br />They indicate the final amount of native tokens credited to an account due to a previously submitted staking undelegation transaction.</td>\n</tr>\n<tr>\n<td><code>genesis</code></td>\n<td>These transactions only appear on block 0. They indicate the initial native funds of the Harmony network.</td>\n</tr>\n<tr>\n<td><code>reward</code></td>\n<td>These transactions appear on block 2, up to the block before staking is enabled.<br />They indicate the block rewards (in native tokens) before the staking mechanism was enabled.</td>\n</tr>\n</tbody>\n</table>\n</div></blockquote>\n","urlObject":{"protocol":"https","path":["block","transaction"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"51fdb9ea-b569-406c-bfe5-3108fd8e42fb","name":"/block/transaction (Staking - CollectRewards)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"transaction_identifier\": {\n        \"hash\": \"0x345f32782f17ff593a1e8dbb4f69fbb27a17bfb5d0beada8112644b2d0de8e45\"\n    },\n    \"block_identifier\": {\n        \"index\": 2242196,\n        \"hash\": \"0x984c994cf5598926d324762c53f305b91d44c61f8bb2f9796549cb43cb5ab55e\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/block/transaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 08:02:05 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"838"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction\": {\n        \"transaction_identifier\": {\n            \"hash\": \"0x345f32782f17ff593a1e8dbb4f69fbb27a17bfb5d0beada8112644b2d0de8e45\"\n        },\n        \"operations\": [\n            {\n                \"operation_identifier\": {\n                    \"index\": 0\n                },\n                \"type\": \"Gas\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one1ru5znrwvrqg3caysp8pfugx4t9uj4wyz99pv0f\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x1f28298Dcc18111c749009C29E20d559792aB882\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"-21352000000000\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                }\n            },\n            {\n                \"operation_identifier\": {\n                    \"index\": 1\n                },\n                \"related_operations\": [\n                    {\n                        \"index\": 0\n                    }\n                ],\n                \"type\": \"CollectRewards\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one1ru5znrwvrqg3caysp8pfugx4t9uj4wyz99pv0f\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x1f28298Dcc18111c749009C29E20d559792aB882\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"33205856599775202310\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                },\n                \"metadata\": {\n                    \"delegatorAddress\": \"one1ru5znrwvrqg3caysp8pfugx4t9uj4wyz99pv0f\"\n                }\n            }\n        ]\n    }\n}"},{"id":"8ac66fa2-6cbd-49e4-9034-e17cf7af7c50","name":"/block/transaction (Staking - Delegate)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"transaction_identifier\": {\n        \"hash\": \"0x398c63f6958547bf65f7055175fb9428a9c644de205c8fc19e8deadc41104201\"\n    },\n    \"block_identifier\": {\n        \"index\": 2241386,\n        \"hash\": \"0x0376f64e703a25d41b4af91da402183f3b8cc9ab8b8c3f781377d99dd2c67555\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/block/transaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 08:04:09 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"936"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction\": {\n        \"transaction_identifier\": {\n            \"hash\": \"0x398c63f6958547bf65f7055175fb9428a9c644de205c8fc19e8deadc41104201\"\n        },\n        \"operations\": [\n            {\n                \"operation_identifier\": {\n                    \"index\": 0\n                },\n                \"type\": \"Gas\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one1kh6ypdwxy90wmsdjuy45h9j05v0h47nam9l4l4\",\n                    \"metadata\": {\n                        \"hex_address\": \"0xB5f440B5c6215eEDc1b2E12b4b964fa31f7afa7d\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"-218520000000000\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                }\n            },\n            {\n                \"operation_identifier\": {\n                    \"index\": 1\n                },\n                \"related_operations\": [\n                    {\n                        \"index\": 0\n                    }\n                ],\n                \"type\": \"Delegate\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one1kh6ypdwxy90wmsdjuy45h9j05v0h47nam9l4l4\",\n                    \"metadata\": {\n                        \"hex_address\": \"0xB5f440B5c6215eEDc1b2E12b4b964fa31f7afa7d\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"-178889020491000000000000\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                },\n                \"metadata\": {\n                    \"amount\": 1.78889020491e+23,\n                    \"delegatorAddress\": \"one1kh6ypdwxy90wmsdjuy45h9j05v0h47nam9l4l4\",\n                    \"validatorAddress\": \"one1ru5znrwvrqg3caysp8pfugx4t9uj4wyz99pv0f\"\n                }\n            }\n        ]\n    }\n}"},{"id":"90aef103-d25a-47ba-bcb3-773d4cb47257","name":"/block/transaction (Staking - EditValidator)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"transaction_identifier\": {\n        \"hash\": \"0x938441b681fc0df7cba343367b584a458f66bf187cee7906857ff4ac8e1191ca\"\n    },\n    \"block_identifier\": {\n        \"index\": 2242209,\n        \"hash\": \"0x5b632da5af25a1b68433e71f271f6ecbf9f74ebdbeafaab3fe9e35e838636819\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/block/transaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 08:03:13 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"1002"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction\": {\n        \"transaction_identifier\": {\n            \"hash\": \"0x938441b681fc0df7cba343367b584a458f66bf187cee7906857ff4ac8e1191ca\"\n        },\n        \"operations\": [\n            {\n                \"operation_identifier\": {\n                    \"index\": 0\n                },\n                \"type\": \"Gas\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one170xqsfzm4xdmuyax54t5pvtp5l5yt66u50ctrp\",\n                    \"metadata\": {\n                        \"hex_address\": \"0xf3Cc08245BA99BBE13A6A55740b161A7E845eB5c\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"-21560000000000\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                }\n            },\n            {\n                \"operation_identifier\": {\n                    \"index\": 1\n                },\n                \"related_operations\": [\n                    {\n                        \"index\": 0\n                    }\n                ],\n                \"type\": \"EditValidator\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one170xqsfzm4xdmuyax54t5pvtp5l5yt66u50ctrp\",\n                    \"metadata\": {\n                        \"hex_address\": \"0xf3Cc08245BA99BBE13A6A55740b161A7E845eB5c\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"0\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                },\n                \"metadata\": {\n                    \"commissionRate\": 0,\n                    \"details\": \"\",\n                    \"identity\": \"\",\n                    \"maxTotalDelegation\": 0,\n                    \"minSelfDelegation\": 0,\n                    \"name\": \"\",\n                    \"securityContact\": \"\",\n                    \"slotPubKeyToAdd\": null,\n                    \"slotPubKeyToRemove\": null,\n                    \"validatorAddress\": \"one170xqsfzm4xdmuyax54t5pvtp5l5yt66u50ctrp\",\n                    \"website\": \"\"\n                }\n            }\n        ]\n    }\n}"},{"id":"bb34e2d6-44dd-4ced-8ee7-3b84c565e066","name":"/block/transaction (Native Transfer)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"transaction_identifier\": {\n        \"hash\": \"0x133a3ac6d8a9f0ffb377d4c8bb805dbfbafe876eb3a2cd72142bafb23ea93a4f\"\n    },\n    \"block_identifier\": {\n        \"index\": 2241709,\n        \"hash\": \"0x9480debdba5755ede7545d886793fa141ad8ae9ec76cc9ecef81da8fb8ebdd02\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/block/transaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 08:00:56 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"1070"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction\": {\n        \"transaction_identifier\": {\n            \"hash\": \"0x133a3ac6d8a9f0ffb377d4c8bb805dbfbafe876eb3a2cd72142bafb23ea93a4f\"\n        },\n        \"operations\": [\n            {\n                \"operation_identifier\": {\n                    \"index\": 0\n                },\n                \"type\": \"Gas\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one1ru5znrwvrqg3caysp8pfugx4t9uj4wyz99pv0f\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x1f28298Dcc18111c749009C29E20d559792aB882\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"-2100000000000000\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                }\n            },\n            {\n                \"operation_identifier\": {\n                    \"index\": 1\n                },\n                \"related_operations\": [\n                    {\n                        \"index\": 0\n                    }\n                ],\n                \"type\": \"NativeTransfer\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one1ru5znrwvrqg3caysp8pfugx4t9uj4wyz99pv0f\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x1f28298Dcc18111c749009C29E20d559792aB882\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"-2423\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                }\n            },\n            {\n                \"operation_identifier\": {\n                    \"index\": 2\n                },\n                \"related_operations\": [\n                    {\n                        \"index\": 1\n                    }\n                ],\n                \"type\": \"NativeTransfer\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one18nxqvxhvq0vy9a4ql2tzfz7uauwh6q2sauhjeh\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x3cCC061AEC03D842F6a0fa96248bDceF1d7d0150\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"2423\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"6e1ccb83-7869-4e96-9a62-aa2bafc58f5e"},{"name":"/mempool","id":"33f0cdc6-5f94-4fbe-b794-c53c0af4ce15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/mempool","description":"<h2 id=\"overview\">Overview</h2>\n<p>This endpoint gets all Transaction Identifiers in the mempool.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/MempoolApi.html#mempool\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"pool-contents\">Pool contents</h4>\n<p>The Harmony transaction pool contains 'pending' transactions (transactions that can be added to the next block) and 'queued' transactions (transactions that can only be added to some block after the next block). Due to the short block time, this endpoint returns <strong>all</strong> of the mempool transactions without any easy way to discern which list it was from. In general, transactions that are always in the mempool across multiple blocks, tend to be these 'queued' transactions.</p>\n<h4 id=\"stuck-transaction-in-pool\">Stuck transaction in pool</h4>\n<p>Normally, stuck transactions tend to be 'queued' transaction because they were submitted with a wrong nonce or some previous transaction from the same account got rejected (for insufficient funds, nonce to low, etc...). All 'queued' transactions will be dropped after an hour if the sender's account does not submit any more transactions. Alternatively, you can replace the 'queued' transaction (say to have it transfer 0 tokens) by paying double the gas fee for that transaction, then submit a new (correct) transaction afterward. </p>\n","urlObject":{"protocol":"https","path":["mempool"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"6be754dc-cd8b-4e7c-885a-ee2773683150","name":"/mempool","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/mempool"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 08:25:29 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"108"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_identifiers\": [\n        {\n            \"hash\": \"0x7c4e7cb00d0f8d88a5198e17f8223390e3dd7355a6f1444744f214d4e3e81b53\"\n        }\n    ]\n}"}],"_postman_id":"33f0cdc6-5f94-4fbe-b794-c53c0af4ce15"},{"name":"/mempool/transaction","id":"9a6b2616-11bb-4f28-a851-ac554456c571","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"transaction_identifier\": {\n        \"hash\": \"0xd30e75e68c6f4d28e81848805edf1d79baa7d3a8a08028b09077df2b319a296d\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/mempool/transaction","description":"<h2 id=\"overview\">Overview</h2>\n<p>This endpoint gets a transaction in the mempool by its Transaction Identifier.<br /><em>Note that transactions may not be fully parsable until they are in a block.</em></p>\n<p><a href=\"https://www.rosetta-api.org/docs/MempoolApi.html#mempooltransaction\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"missing-data\">Missing Data</h4>\n<p>Most contract related transactions will <strong>not</strong> have any EVM related information (logs, status, contract code, etc..) until they are finalized on-chain. </p>\n","urlObject":{"protocol":"https","path":["mempool","transaction"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"d61e7f01-0bc9-4bdd-a1cd-5f09066e33fc","name":"/mempool/transaction","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"transaction_identifier\": {\n        \"hash\": \"0xd30e75e68c6f4d28e81848805edf1d79baa7d3a8a08028b09077df2b319a296d\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/mempool/transaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 08:31:18 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"1100"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction\": {\n        \"transaction_identifier\": {\n            \"hash\": \"0xd30e75e68c6f4d28e81848805edf1d79baa7d3a8a08028b09077df2b319a296d\"\n        },\n        \"operations\": [\n            {\n                \"operation_identifier\": {\n                    \"index\": 0\n                },\n                \"type\": \"Gas\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one1zksj3evekayy90xt4psrz8h6j2v3hla4qwz4ur\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x15a128e599b74842BCcBa860311Efa92991bffb5\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"-21000000000000\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                }\n            },\n            {\n                \"operation_identifier\": {\n                    \"index\": 1\n                },\n                \"related_operations\": [\n                    {\n                        \"index\": 0\n                    }\n                ],\n                \"type\": \"NativeTransfer\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one1zksj3evekayy90xt4psrz8h6j2v3hla4qwz4ur\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x15a128e599b74842BCcBa860311Efa92991bffb5\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"-69000000000000000000\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                }\n            },\n            {\n                \"operation_identifier\": {\n                    \"index\": 2\n                },\n                \"related_operations\": [\n                    {\n                        \"index\": 1\n                    }\n                ],\n                \"type\": \"NativeTransfer\",\n                \"status\": \"success\",\n                \"account\": {\n                    \"address\": \"one1r3dk2zzyzttd4q07zvqh7rwuuk2ch5rdsx6sfd\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x1C5b65084412d6da81Fe13017f0DdCE5958Bd06D\"\n                    }\n                },\n                \"amount\": {\n                    \"value\": \"69000000000000000000\",\n                    \"currency\": {\n                        \"symbol\": \"ONE\",\n                        \"decimals\": 18\n                    }\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"9a6b2616-11bb-4f28-a851-ac554456c571"}],"id":"ff5de66a-778b-4bf4-82a4-e9bc1d9ade70","description":"<h2 id=\"overview\">Overview</h2>\n<p>The Data API provides the ability to access blocks, transactions, and balances.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/data_api_introduction.html\">Reference Rosetta Documentation</a></p>\n<p>For reference, here is a flow of operations for common 'read' operations:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                                  Caller                                              + Data API Implementation\n                                 +----------------------------------------------------------------------------------+\n                               X                                                      |\n                               X      Get Supported Networks +---------------------------------&gt; /network/list\n                               X                                                      |                +\n                               X  +-----------+--------------------------------------------------------+\n      Get supported networks,  X  |           v                                       |\n      their supported options, X  |   Get Network Options +------------------------------------&gt; /network/options\n      and their status         X  |                                                   |\n                               X  +-----------+                                       |\n                               X              v                                       |\n                               X      Get Network Status +-------------------------------------&gt; /network/status\n                               X                                                      |\n                                                                                      |\n                                   X                                                  |\n                                   X  Get Block +----------------------------------------------&gt; /block\n                                   X                                                  |             +\n                        +---------+X                +-----------------------------------------------+\n                        |          X                v                                 |\nEnsure balance computed |          X  [Optional] Get Additional Block Transactions +-----------&gt; /block/transaction\nfrom block operations   |          X                                                  |\nequals balance on node  |                                                             |\n                        |                                                             |\n                        +-----------&gt; Get account balance for each +---------------------------&gt; /account/balance\n                                      account seen in a block                         |\n                                                                                      |\n                                                                                      |\n                                   X                                                  |\n                                   X  Get Mempool Transactions +-------------------------------&gt; /mempool\n      Monitor the mempool for      X                                                  |              +\n      broadcast transaction status X                 +-----------------------------------------------+\n      and incoming deposits        X                 v                                |\n                                   X  Get a Specific Mempool Transaction +---------------------&gt; /mempool/transaction\n                                   X                                                  |\n                                                                                      +\n</code></pre>","_postman_id":"ff5de66a-778b-4bf4-82a4-e9bc1d9ade70"},{"name":"Construction","item":[{"name":"/construction/derive","id":"178e3072-bf94-4335-a508-d3f4b9c23d63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"public_key\": {\n        \"hex_bytes\": \"03f91adb1671a2430484441b591bdad19358458e938ba291bf9e717031b6c3330d\",\n        \"curve_type\": \"secp256k1\"\n    },\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/derive","description":"<h2 id=\"overview\">Overview</h2>\n<p><em>This endpoint is <a href=\"https://www.rosetta-api.org/docs/construction_api_introduction.html#completely-offline\">offline</a>.</em></p>\n<p>This endpoint returns the AccountIdentifier associated with a public key.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/ConstructionApi.html#constructionderive\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"curve-support\">Curve Support</h4>\n<p>Harmony only supports secp256k1 curve keys. The <code>hex_bytes</code> of the key is assumed to be the <em>compressed</em> public key.</p>\n","urlObject":{"protocol":"https","path":["construction","derive"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"c0f1bafc-cd1a-4033-8c57-1775d08ef86f","name":"/construction/derive","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"public_key\": {\n        \"hex_bytes\": \"03f91adb1671a2430484441b591bdad19358458e938ba291bf9e717031b6c3330d\",\n        \"curve_type\": \"secp256k1\"\n    },\n    \"metadata\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/derive"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 09:23:55 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"207"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": \"one13lx3exmpfc446vsguc5d0mtgha2ff7h5uz85pk\",\n    \"account_identifier\": {\n        \"address\": \"one13lx3exmpfc446vsguc5d0mtgha2ff7h5uz85pk\",\n        \"metadata\": {\n            \"hex_address\": \"0x8fCD1C9B614E2b5D3208E628d7eD68bF5494faF4\"\n        }\n    }\n}"}],"_postman_id":"178e3072-bf94-4335-a508-d3f4b9c23d63"},{"name":"/construction/preprocess","id":"bc5d1e6a-3ad7-421f-8a1a-4eb45afacdb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"operations\": [\n        {\n            \"operation_identifier\": {\n                \"index\": 0\n            },\n            \"type\": \"NativeTransfer\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one1kxkr9svezrwjgddh2fq2q3w49mjvvkadqkcfkw\",\n                \"metadata\": {\n                    \"hex_address\": \"0xB1ac32C19910DD2435B75240A045D52EE4c65BAd\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"-3347819199729047095735837923\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            }\n        },\n        {\n            \"operation_identifier\": {\n                \"index\": 1\n            },\n            \"related_operations\": [\n                {\n                    \"index\": 0\n                }\n            ],\n            \"type\": \"NativeTransfer\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one13lx3exmpfc446vsguc5d0mtgha2ff7h5uz85pk\",\n                \"metadata\": {\n                    \"hex_address\": \"0x8fCD1C9B614E2b5D3208E628d7eD68bF5494faF4\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"3347819199729047095735837923\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            }\n        }\n    ],\n    \"suggested_fee_multiplier\": 2,\n    \"metadata\": {\n        \"from_shard\": 0,\n        \"to_shard\": 0\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/preprocess","description":"<h2 id=\"overview\">Overview</h2>\n<p><em>This endpoint is <a href=\"https://www.rosetta-api.org/docs/construction_api_introduction.html#completely-offline\">offline</a>.</em></p>\n<p>The endpoint is called prior to the <code>/construction/payloads</code> endpoint to construct a request for any metadata that is needed for transaction construction given (i.e. account nonce).</p>\n<p><a href=\"https://www.rosetta-api.org/docs/ConstructionApi.html#constructionpreprocess\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"gas-fees\">Gas Fees</h4>\n<p>It is considered <em>invalid</em> to provide the <code>Gas</code> operation since (in most cases) the true gas fee is only known once the transaction is finalized. Instead, you must only provide the intended non-<code>Gas</code> operations. </p>\n<p>You can optionally specify the priority of the transaction in the mempool by providing a <code>suggested_fee_multiplier</code> &gt;= 1. Transactions with a higher fee multiplier will be prioritized over transactions with a lower fee multiplier when validators construct the next block. By default, the <code>suggested_fee_multiplier</code> is 1.</p>\n<h4 id=\"supported-operations\">Supported Operations</h4>\n<p>Currently, Harmony supports the construction of the following types of transactions:</p>\n<ul>\n<li>Native same-shard transfer</li>\n<li>Native cross-shard transfer</li>\n<li>Contract creation<blockquote>\n<p>Reference the <code>/block/transaction</code> documentation for more details on the operations of such transactions.\n<br />You can also view some examples of how to construct each transaction in the example Rosetta-CLI config <a href=\"https://github.com/harmony-one/harmony-test/blob/master/localnet/configs/localnet_rosetta_test_s0.json\">here</a> &amp; <a href=\"https://github.com/harmony-one/harmony-test/blob/master/localnet/configs/localnet_rosetta_test_s0.json\">here</a>.</p>\n</blockquote>\n</li>\n</ul>\n<h4 id=\"metadata\">Metadata</h4>\n<p>Relevant metadata fields for construction:</p>\n<blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Value Type</th>\n<th>Value Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>to_shard</code></td>\n<td><code>Int</code></td>\n<td>The destination shard ID. Optional for name same-shard transfer, required for native cross-shard transfer.</td>\n</tr>\n<tr>\n<td><code>from_shard</code></td>\n<td><code>Int</code></td>\n<td>The source shard ID. Optional for name same-shard transfer, required for native cross-shard transfer.</td>\n</tr>\n<tr>\n<td><code>contract_account_identifier</code></td>\n<td><a href=\"https://www.rosetta-api.org/docs/models/AccountIdentifier.html\"><code>AccountIdentifier</code></a></td>\n<td>The main contract address for any transaction involving smart contract calls. Empty for contract construction transactions. This is necessary if any EVM evaluation checks is desired from the <code>/construction/metadata</code> endpoint.</td>\n</tr>\n</tbody>\n</table>\n</div></blockquote>\n","urlObject":{"protocol":"https","path":["construction","preprocess"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"5daec508-4814-4714-9802-594da48b1a52","name":"/construction/preprocess","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"operations\": [\n        {\n            \"operation_identifier\": {\n                \"index\": 0\n            },\n            \"type\": \"NativeTransfer\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one1kxkr9svezrwjgddh2fq2q3w49mjvvkadqkcfkw\",\n                \"metadata\": {\n                    \"hex_address\": \"0xB1ac32C19910DD2435B75240A045D52EE4c65BAd\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"-3347819199729047095735837923\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            }\n        },\n        {\n            \"operation_identifier\": {\n                \"index\": 1\n            },\n            \"related_operations\": [\n                {\n                    \"index\": 0\n                }\n            ],\n            \"type\": \"NativeTransfer\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one13lx3exmpfc446vsguc5d0mtgha2ff7h5uz85pk\",\n                \"metadata\": {\n                    \"hex_address\": \"0x8fCD1C9B614E2b5D3208E628d7eD68bF5494faF4\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"3347819199729047095735837923\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            }\n        }\n    ],\n    \"suggested_fee_multiplier\": 2,\n    \"metadata\": {\n        \"from_shard\": 0,\n        \"to_shard\": 0\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/preprocess"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 09:40:19 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"280"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"options\": {\n        \"gas_price_multiplier\": 2,\n        \"operation_type\": \"NativeTransfer\",\n        \"transaction_metadata\": {\n            \"to_shard\": 0,\n            \"from_shard\": 0\n        }\n    },\n    \"required_public_keys\": [\n        {\n            \"address\": \"one1kxkr9svezrwjgddh2fq2q3w49mjvvkadqkcfkw\",\n            \"metadata\": {\n                \"hex_address\": \"0xB1ac32C19910DD2435B75240A045D52EE4c65BAd\"\n            }\n        }\n    ]\n}"}],"_postman_id":"bc5d1e6a-3ad7-421f-8a1a-4eb45afacdb8"},{"name":"/construction/metadata","id":"51a766ea-6593-403e-ab33-8b5eede09de5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"options\": {\n        \"gas_price_multiplier\": 2,\n        \"operation_type\": \"NativeTransfer\",\n        \"transaction_metadata\": {\n            \"to_shard\": 0,\n            \"from_shard\": 0\n        }\n    },\n    \"public_keys\": [\n        {\n            \"hex_bytes\": \"03f91adb1671a2430484441b591bdad19358458e938ba291bf9e717031b6c3330d\",\n            \"curve_type\": \"secp256k1\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/metadata","description":"<h2 id=\"overview\">Overview</h2>\n<p><em>This endpoint is <a href=\"https://www.rosetta-api.org/docs/construction_api_introduction.html#completely-offline\">online</a></em>.</p>\n<p>This endpoint gets any on-chain (live) information required to construct a transaction.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/ConstructionApi.html#constructionmetadata\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"metadata-fetched-from-chain\">Metadata fetched from chain</h4>\n<p>All data fetch on-chain is returned in the <code>metadata</code>. Below is a brief explanation of each field that a client could consume for construction:</p>\n<blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Value Type</th>\n<th>Value Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>contract_code </code></td>\n<td><code>String</code></td>\n<td>Hex encoded bytes of the main contract called by the transaction (if applicable).</td>\n</tr>\n<tr>\n<td><code>evm_error_message</code></td>\n<td><code>String</code></td>\n<td>EVM error message from an evaluation of the transaction smart contract data (if applicable). Empty string if no error message.</td>\n</tr>\n<tr>\n<td><code>evm_return</code></td>\n<td><code>String</code></td>\n<td>Hex encoded bytes of the returned EVM data from an evaluation of the transaction smart contract data (if applicable).</td>\n</tr>\n<tr>\n<td><code>gas_limit</code></td>\n<td><code>Int</code></td>\n<td>The <em>maximum</em> amount of gas 'units' that the transaction's data can consume in the EVM before aborting.</td>\n</tr>\n<tr>\n<td><code>gas_price</code></td>\n<td><code>Int</code></td>\n<td>The price in ATTO (1 ONE = 1e18 ATTO) per unit of gas. The minimum is 1e9 ATTO (or 1 NANO). Note that this is the number that gets scaled with the <code>suggested_fee_multiplier</code>.</td>\n</tr>\n<tr>\n<td><code>nonce</code></td>\n<td><code>Int</code></td>\n<td>The transaction number (on a specific shard) for the sender's account</td>\n</tr>\n<tr>\n<td><code>transaction_metadata</code></td>\n<td><code>Object</code></td>\n<td>The transaction metadata (unchanged) from <code>/construction/preprocess</code></td>\n</tr>\n</tbody>\n</table>\n</div></blockquote>\n<h4 id=\"fee\">Fee</h4>\n<p>The <code>suggested_fee</code> is an <em>over</em> estimation of how much it will cost to execute the operation(s) in a transaction. </p>\n<p>In the case that your transaction's contract call has an infinite loop, you will see an error that says that you have exceeded the gas cap of the block. </p>\n","urlObject":{"protocol":"https","path":["construction","metadata"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"5073c1b6-86df-43e7-a502-cb6cef9ad82e","name":"/construction/metadata","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"options\": {\n        \"gas_price_multiplier\": 2,\n        \"operation_type\": \"NativeTransfer\",\n        \"transaction_metadata\": {\n            \"to_shard\": 0,\n            \"from_shard\": 0\n        }\n    },\n    \"public_keys\": [\n        {\n            \"hex_bytes\": \"03f91adb1671a2430484441b591bdad19358458e938ba291bf9e717031b6c3330d\",\n            \"curve_type\": \"secp256k1\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/metadata"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 10:17:41 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"268"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"metadata\": {\n        \"contract_code\": \"0x\",\n        \"evm_error_message\": \"\",\n        \"evm_return\": \"0x\",\n        \"gas_limit\": 21000,\n        \"gas_price\": 2000000000,\n        \"nonce\": 0,\n        \"transaction_metadata\": {\n            \"to_shard\": 0,\n            \"from_shard\": 0\n        }\n    },\n    \"suggested_fee\": [\n        {\n            \"value\": \"42000000000000\",\n            \"currency\": {\n                \"symbol\": \"ONE\",\n                \"decimals\": 18\n            }\n        }\n    ]\n}"}],"_postman_id":"51a766ea-6593-403e-ab33-8b5eede09de5"},{"name":"/construction/payloads","id":"d3844bf9-55f1-445e-8319-5077f9f77b3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"operations\": [\n        {\n            \"operation_identifier\": {\n                \"index\": 0\n            },\n            \"type\": \"NativeTransfer\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one13lx3exmpfc446vsguc5d0mtgha2ff7h5uz85pk\",\n                \"metadata\": {\n                    \"hex_address\": \"0x8fCD1C9B614E2b5D3208E628d7eD68bF5494faF4\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"-3347819199729047095735837923\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            }\n        },\n        {\n            \"operation_identifier\": {\n                \"index\": 1\n            },\n            \"related_operations\": [\n                {\n                    \"index\": 0\n                }\n            ],\n            \"type\": \"NativeTransfer\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one13lx3exmpfc446vsguc5d0mtgha2ff7h5uz85pk\",\n                \"metadata\": {\n                    \"hex_address\": \"0x8fCD1C9B614E2b5D3208E628d7eD68bF5494faF4\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"3347819199729047095735837923\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            }\n        }\n    ],\n    \"metadata\": {\n        \"contract_code\": \"0x\",\n        \"evm_error_message\": \"\",\n        \"evm_return\": \"0x\",\n        \"gas_limit\": 21000,\n        \"gas_price\": 2000000000,\n        \"nonce\": 0,\n        \"transaction_metadata\": {\n            \"to_shard\": 0,\n            \"from_shard\": 0\n        }\n    },\n    \"public_keys\": [\n        {\n            \"hex_bytes\": \"03f91adb1671a2430484441b591bdad19358458e938ba291bf9e717031b6c3330d\",\n            \"curve_type\": \"secp256k1\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/payloads","description":"<h2 id=\"overview\">Overview</h2>\n<p><em>This endpoint is <a href=\"https://www.rosetta-api.org/docs/construction_api_introduction.html#completely-offline\">offline</a>.</em></p>\n<p>This endpoint is called with an array of operations and the response from <code>/construction/metadata</code>. It returns an unsigned transaction blob and a collection of payloads that must be signed by particular <code>AccountIdentifiers</code> using a certain <code>SignatureType</code>.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/ConstructionApi.html#constructionpayloads\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"operations--metadata\">Operations &amp; Metadata</h4>\n<p>The operations here share the same constraints as the operations given to the <code>/construction/preprocess</code> endpoint. The metadata is assumed to be unchanged from the <code>/construction/metadata</code> endpoint. It may be useful to know that the operations &amp; metadata is all that is needed to construct a valid transaction on the Harmony network. </p>\n<h4 id=\"unsigned-transactions\">Unsigned Transactions</h4>\n<p>This implementation makes <em>no guarantee</em> that the <code>unsiged_transaction</code> string will remain legable/formatted the way it is now. It is possible that the <code>unsiged_transaction</code> becomes a hex-encoded byte string in a future patch or minor update. </p>\n<h4 id=\"signature-type\">Signature Type</h4>\n<p>Harmony only supports the <a href=\"https://github.com/coinbase/rosetta-sdk-go/blob/master/types/signature_type.go\"><code>ecdsa_recovery</code></a> signature type. This is <em>not</em> the same as the <code>ecdsa</code> signature type.</p>\n","urlObject":{"protocol":"https","path":["construction","payloads"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"8144d063-8ce5-427d-9b89-883b2016edfb","name":"/construction/payloads","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"operations\": [\n        {\n            \"operation_identifier\": {\n                \"index\": 0\n            },\n            \"type\": \"NativeTransfer\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one13lx3exmpfc446vsguc5d0mtgha2ff7h5uz85pk\",\n                \"metadata\": {\n                    \"hex_address\": \"0x8fCD1C9B614E2b5D3208E628d7eD68bF5494faF4\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"-3347819199729047095735837923\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            }\n        },\n        {\n            \"operation_identifier\": {\n                \"index\": 1\n            },\n            \"related_operations\": [\n                {\n                    \"index\": 0\n                }\n            ],\n            \"type\": \"NativeTransfer\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one13lx3exmpfc446vsguc5d0mtgha2ff7h5uz85pk\",\n                \"metadata\": {\n                    \"hex_address\": \"0x8fCD1C9B614E2b5D3208E628d7eD68bF5494faF4\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"3347819199729047095735837923\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            }\n        }\n    ],\n    \"metadata\": {\n        \"contract_code\": \"0x\",\n        \"evm_error_message\": \"\",\n        \"evm_return\": \"0x\",\n        \"gas_limit\": 21000,\n        \"gas_price\": 2000000000,\n        \"nonce\": 0,\n        \"transaction_metadata\": {\n            \"to_shard\": 0,\n            \"from_shard\": 0\n        }\n    },\n    \"public_keys\": [\n        {\n            \"hex_bytes\": \"03f91adb1671a2430484441b591bdad19358458e938ba291bf9e717031b6c3330d\",\n            \"curve_type\": \"secp256k1\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/payloads"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 11:34:15 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"643"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"unsigned_transaction\": \"{\\\"rlp_bytes\\\":\\\"8YCEdzWUAIJSCICAlI/NHJthTitdMgjmKNftaL9UlPr0jArRQEp4xFT22Xlk44CAgIA=\\\",\\\"is_staking\\\":false,\\\"contract_code\\\":\\\"0x\\\",\\\"from\\\":{\\\"address\\\":\\\"one13lx3exmpfc446vsguc5d0mtgha2ff7h5uz85pk\\\",\\\"metadata\\\":{\\\"hex_address\\\":\\\"0x8fCD1C9B614E2b5D3208E628d7eD68bF5494faF4\\\"}}}\",\n    \"payloads\": [\n        {\n            \"address\": \"one13lx3exmpfc446vsguc5d0mtgha2ff7h5uz85pk\",\n            \"hex_bytes\": \"c66fc277ffe2acb60c11774823b7378f5a3f2509f5cbf25cd7d8c4095b27ac04\",\n            \"account_identifier\": {\n                \"address\": \"one13lx3exmpfc446vsguc5d0mtgha2ff7h5uz85pk\",\n                \"metadata\": {\n                    \"hex_address\": \"0x8fCD1C9B614E2b5D3208E628d7eD68bF5494faF4\"\n                }\n            },\n            \"signature_type\": \"ecdsa_recovery\"\n        }\n    ]\n}"}],"_postman_id":"d3844bf9-55f1-445e-8319-5077f9f77b3b"},{"name":"/construction/parse","id":"82eed540-8947-4fca-b03d-931da04abe31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"transaction\": \"{\\\"rlp_bytes\\\":\\\"8ICEO5rKAIJSCIABlIkuJhaBLskNlXGi3PTIMkKKR1fwi6psz0ykyLZq/CNngICAgA==\\\",\\\"is_staking\\\":false,\\\"contract_code\\\":\\\"0x\\\",\\\"from\\\":{\\\"address\\\":\\\"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\\\",\\\"metadata\\\":{\\\"hex_address\\\":\\\"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\\\"}}}\",\n    \"signed\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/parse","description":"<h2 id=\"overview\">Overview</h2>\n<p><em>This endpoint is <a href=\"https://www.rosetta-api.org/docs/construction_api_introduction.html#completely-offline\">offline</a>.</em></p>\n<p>This endpoint is called on both unsigned and signed transactions to understand the intent of the formulated transaction. This is run as a sanity check before signing (after <code>/construction/payloads</code>) and before broadcast (after <code>/construction/combine</code>).</p>\n<p><a href=\"https://www.rosetta-api.org/docs/ConstructionApi.html#constructionparse\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"transaction\">Transaction</h4>\n<p>The <code>transaction</code> should be either the <code>unsigned_transaction</code> (<em>unchanged</em>) from the <code>/construction/payloads</code> endpoint, or the <code>signed_transaction</code> (<em>unchanged</em>) from the <code>/construction/comdbine</code> endpoint. </p>\n<h4 id=\"gas\">Gas</h4>\n<p>The <code>Gas</code> operation's value in the parsed <code>operations</code> is only an <em>over</em> estimation of the incurred gas of the transaction. </p>\n","urlObject":{"protocol":"https","path":["construction","parse"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"0e896dc2-3c98-4a7d-ad3f-384f77772cb2","name":"/construction/parse (Signed)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"transaction\": \"{\\\"rlp_bytes\\\":\\\"+HCAhDuaygCCUgiAAZSJLiYWgS7JDZVxotz0yDJCikdX8IuqbM9MpMi2avwjZ4AooGmW5TmKsTyFcWoHKxUV7FOzadF31b6c4vXf85KBvINVoHdJOzbRI1oooH72uTqEKAnVQFfkTOphgoJv6ID4bwsM\\\",\\\"is_staking\\\":false,\\\"contract_code\\\":\\\"0x\\\",\\\"from\\\":{\\\"address\\\":\\\"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\\\",\\\"metadata\\\":{\\\"hex_address\\\":\\\"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\\\"}}}\",\n    \"signed\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 13:32:33 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"1146"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"signers\": [\n        \"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\"\n    ],\n    \"operations\": [\n        {\n            \"operation_identifier\": {\n                \"index\": 0\n            },\n            \"type\": \"Gas\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\",\n                \"metadata\": {\n                    \"hex_address\": \"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"-21000000000000\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            }\n        },\n        {\n            \"operation_identifier\": {\n                \"index\": 1\n            },\n            \"related_operations\": [\n                {\n                    \"index\": 0\n                }\n            ],\n            \"type\": \"NativeCrossShardTransfer\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\",\n                \"metadata\": {\n                    \"hex_address\": \"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"-206031228913419868127896423\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            },\n            \"metadata\": {\n                \"from\": {\n                    \"address\": \"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\"\n                    }\n                },\n                \"to\": {\n                    \"address\": \"one13yhzv95p9mysm9t35tw0fjpjg29yw4lsfst8rc\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x892E2616812EC90D9571a2DCF4C832428A4757f0\"\n                    }\n                }\n            }\n        }\n    ],\n    \"account_identifier_signers\": [\n        {\n            \"address\": \"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\",\n            \"metadata\": {\n                \"hex_address\": \"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\"\n            }\n        }\n    ]\n}"},{"id":"87c1a0b4-7dd3-4fe6-85e0-8b64fe87a5be","name":"/construction/parse (Unsigned)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"transaction\": \"{\\\"rlp_bytes\\\":\\\"8ICEO5rKAIJSCIABlIkuJhaBLskNlXGi3PTIMkKKR1fwi6psz0ykyLZq/CNngICAgA==\\\",\\\"is_staking\\\":false,\\\"contract_code\\\":\\\"0x\\\",\\\"from\\\":{\\\"address\\\":\\\"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\\\",\\\"metadata\\\":{\\\"hex_address\\\":\\\"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\\\"}}}\",\n    \"signed\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 13:31:46 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"929"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"operations\": [\n        {\n            \"operation_identifier\": {\n                \"index\": 0\n            },\n            \"type\": \"Gas\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\",\n                \"metadata\": {\n                    \"hex_address\": \"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"-21000000000000\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            }\n        },\n        {\n            \"operation_identifier\": {\n                \"index\": 1\n            },\n            \"related_operations\": [\n                {\n                    \"index\": 0\n                }\n            ],\n            \"type\": \"NativeCrossShardTransfer\",\n            \"status\": \"\",\n            \"account\": {\n                \"address\": \"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\",\n                \"metadata\": {\n                    \"hex_address\": \"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\"\n                }\n            },\n            \"amount\": {\n                \"value\": \"-206031228913419868127896423\",\n                \"currency\": {\n                    \"symbol\": \"ONE\",\n                    \"decimals\": 18\n                }\n            },\n            \"metadata\": {\n                \"from\": {\n                    \"address\": \"one1amhwamhwamhwamhwamhwamhwamhwamhwzdcv76\",\n                    \"metadata\": {\n                        \"hex_address\": \"0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE\"\n                    }\n                },\n                \"to\": {\n                    \"address\": \"one13yhzv95p9mysm9t35tw0fjpjg29yw4lsfst8rc\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x892E2616812EC90D9571a2DCF4C832428A4757f0\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"82eed540-8947-4fca-b03d-931da04abe31"},{"name":"/construction/combine","id":"5d1d411e-3869-48ed-b78e-2bb780fea82a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"unsigned_transaction\": \"{\\\"rlp_bytes\\\":\\\"8ICEO5rKAIJSCIABlIkuJhaBLskNlXGi3PTIMkKKR1fwi6psz0ykyLZq/CNngICAgA==\\\",\\\"is_staking\\\":false,\\\"contract_code\\\":\\\"0x\\\",\\\"from\\\":{\\\"address\\\":\\\"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\\\",\\\"metadata\\\":{\\\"hex_address\\\":\\\"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\\\"}}}\",\n    \"signatures\": [\n        {\n            \"hex_bytes\": \"6996e5398ab13c85716a072b1515ec53b369d177d5be9ce2f5dff39281bc835577493b36d1235a28a07ef6b93a842809d54057e44cea6182826fe880f86f0b0c01\",\n            \"signing_payload\": {\n                \"address\": \"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\",\n                \"hex_bytes\": \"9287244daf23457d8629141b2c2357faeed10b4a81769cdbcf97a39cb56c4a9d\",\n                \"account_identifier\": {\n                    \"address\": \"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\"\n                    }\n                },\n                \"signature_type\": \"ecdsa_recovery\"\n            },\n            \"public_key\": {\n                \"hex_bytes\": \"0221d3f5a19460d02984d83c87fe1068bf2e013bc9a7c950a26a9e813d1eaa1509\",\n                \"curve_type\": \"secp256k1\"\n            },\n            \"signature_type\": \"ecdsa_recovery\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/combine","description":"<h2 id=\"overview\">Overview</h2>\n<p><em>This endpoint is <a href=\"https://www.rosetta-api.org/docs/construction_api_introduction.html#completely-offline\">offline</a>.</em></p>\n<p>This endpoint is called to create a transaction from an unsigned transaction and an array of provided signatures. The signed transaction returned from this method will be sent to the <code>/construction/submit</code> endpoint by the caller.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/ConstructionApi.html#constructioncombine\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"signed-transactions\">Signed Transactions</h4>\n<p>Similar to <code>unsigned_transaction</code> from the <code>/construction/payloads</code> endpoint, this implementation makes <em>no guarantee</em> that the <code>signed_transaction</code> string will remain legable/formatted the way it is now. It is possible that the <code>signed_transaction</code> becomes a hex-encoded byte string in a future patch or minor update. </p>\n<h4 id=\"signature-type\">Signature Type</h4>\n<p>Harmony only supports the <a href=\"https://github.com/coinbase/rosetta-sdk-go/blob/master/types/signature_type.go\"><code>ecdsa_recovery</code></a> signature type. This is <em>not</em> the same as the <code>ecdsa</code> signature type.</p>\n","urlObject":{"protocol":"https","path":["construction","combine"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"15931421-4484-4e39-bef0-5ae36a3ec8af","name":"/construction/combine","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"unsigned_transaction\": \"{\\\"rlp_bytes\\\":\\\"8ICEO5rKAIJSCIABlIkuJhaBLskNlXGi3PTIMkKKR1fwi6psz0ykyLZq/CNngICAgA==\\\",\\\"is_staking\\\":false,\\\"contract_code\\\":\\\"0x\\\",\\\"from\\\":{\\\"address\\\":\\\"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\\\",\\\"metadata\\\":{\\\"hex_address\\\":\\\"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\\\"}}}\",\n    \"signatures\": [\n        {\n            \"hex_bytes\": \"6996e5398ab13c85716a072b1515ec53b369d177d5be9ce2f5dff39281bc835577493b36d1235a28a07ef6b93a842809d54057e44cea6182826fe880f86f0b0c01\",\n            \"signing_payload\": {\n                \"address\": \"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\",\n                \"hex_bytes\": \"9287244daf23457d8629141b2c2357faeed10b4a81769cdbcf97a39cb56c4a9d\",\n                \"account_identifier\": {\n                    \"address\": \"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\",\n                    \"metadata\": {\n                        \"hex_address\": \"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\"\n                    }\n                },\n                \"signature_type\": \"ecdsa_recovery\"\n            },\n            \"public_key\": {\n                \"hex_bytes\": \"0221d3f5a19460d02984d83c87fe1068bf2e013bc9a7c950a26a9e813d1eaa1509\",\n                \"curve_type\": \"secp256k1\"\n            },\n            \"signature_type\": \"ecdsa_recovery\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/combine"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 13:21:51 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"392"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"signed_transaction\": \"{\\\"rlp_bytes\\\":\\\"+HCAhDuaygCCUgiAAZSJLiYWgS7JDZVxotz0yDJCikdX8IuqbM9MpMi2avwjZ4AooGmW5TmKsTyFcWoHKxUV7FOzadF31b6c4vXf85KBvINVoHdJOzbRI1oooH72uTqEKAnVQFfkTOphgoJv6ID4bwsM\\\",\\\"is_staking\\\":false,\\\"contract_code\\\":\\\"0x\\\",\\\"from\\\":{\\\"address\\\":\\\"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\\\",\\\"metadata\\\":{\\\"hex_address\\\":\\\"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\\\"}}}\"\n}"}],"_postman_id":"5d1d411e-3869-48ed-b78e-2bb780fea82a"},{"name":"/construction/hash","id":"c5e189a6-6419-4d57-b31a-12ebc3cde5e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"signed_transaction\": \"{\\\"rlp_bytes\\\":\\\"+HCAhDuaygCCUgiAAZSJLiYWgS7JDZVxotz0yDJCikdX8IuqbM9MpMi2avwjZ4AooGmW5TmKsTyFcWoHKxUV7FOzadF31b6c4vXf85KBvINVoHdJOzbRI1oooH72uTqEKAnVQFfkTOphgoJv6ID4bwsM\\\",\\\"is_staking\\\":false,\\\"contract_code\\\":\\\"0x\\\",\\\"from\\\":{\\\"address\\\":\\\"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\\\",\\\"metadata\\\":{\\\"hex_address\\\":\\\"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\\\"}}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/hash","description":"<h2 id=\"overview\">Overview</h2>\n<p><em>This endpoint is <a href=\"https://www.rosetta-api.org/docs/construction_api_introduction.html#completely-offline\">offline</a>.</em></p>\n<p>This endpoint returns the transaction hash for a signed transaction.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/ConstructionApi.html#constructionhash\">Reference Rosetta Documentation</a></p>\n","urlObject":{"protocol":"https","path":["construction","hash"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"f4729faf-95e1-4873-bc1d-78da0f2f64e4","name":"/construction/hash","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"signed_transaction\": \"{\\\"rlp_bytes\\\":\\\"+HCAhDuaygCCUgiAAZSJLiYWgS7JDZVxotz0yDJCikdX8IuqbM9MpMi2avwjZ4AooGmW5TmKsTyFcWoHKxUV7FOzadF31b6c4vXf85KBvINVoHdJOzbRI1oooH72uTqEKAnVQFfkTOphgoJv6ID4bwsM\\\",\\\"is_staking\\\":false,\\\"contract_code\\\":\\\"0x\\\",\\\"from\\\":{\\\"address\\\":\\\"one1xsfk4wqnehzn8f3ejwy6tw4vc233hh9ytrmxmy\\\",\\\"metadata\\\":{\\\"hex_address\\\":\\\"0x34136Ab813CDC533A6399389a5BAAcc2A31bDca4\\\"}}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/hash"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 13:17:38 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"105"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_identifier\": {\n        \"hash\": \"0xfcb59bcd59ca2fae526e3a1bfa161419122f037b5bfd45e331344a4ee4ab139a\"\n    }\n}"}],"_postman_id":"c5e189a6-6419-4d57-b31a-12ebc3cde5e3"},{"name":"/construction/submit","id":"f5ed97ef-3c46-46cd-a016-be1a51cdd303","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"signed_transaction\": \"{\\\"rlp_bytes\\\":\\\"+HGAhDuaygCCUggBAZSxrDLBmRDdJDW3UkCgRdUu5MZbrYwO7O1MokLMSCB7aOqAJ6Dp98FOTB0xe8I0mhv7eJ45n2HRYar2EvLVUXpEEea+pqAIVlqD/BI04sV122jkgGE200K0oB+3nB6FFOVQogRj1A==\\\",\\\"is_staking\\\":false,\\\"contract_code\\\":\\\"0x\\\",\\\"from\\\":{\\\"address\\\":\\\"one155jp2y76nazx8uw5sa94fr0m4s5aj8e5xm6fu3\\\",\\\"metadata\\\":{\\\"hex_address\\\":\\\"0xA5241513DA9F4463F1d4874b548dFBAC29D91f34\\\"}}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/submit","description":"<h2 id=\"overview\">Overview</h2>\n<p><em>This endpoint is <a href=\"https://www.rosetta-api.org/docs/construction_api_introduction.html#completely-offline\">online</a>.</em></p>\n<p>This endpoint submits a pre-signed transaction to the node <strong>without</strong> waiting for the transaction to be finalized. </p>\n<p><a href=\"https://www.rosetta-api.org/docs/ConstructionApi.html#constructionsubmit\">Reference Rosetta Documentation</a></p>\n<h2 id=\"harmony-specific-documentation\">Harmony Specific Documentation</h2>\n<h4 id=\"submission-errors\">Submission Errors</h4>\n<p>It is possible that by the time a transaction is submitted to the mempool, some previously validated state may be invalid. Moreover, it is possible that some more intricate state consideration and/or verification (like other pending transactions) invalidates the construction transaction. This endpoint returns any such error upon submission, however, it is possible that the transaction is invalidated <em>after</em> the submission. Therefore, you should keep an eye out for the transaction using the <code>/mempool</code> endpoint and/or use the <code>hmyv2_getCurrentTransactionErrorSink</code> RPC method to fetch the reason why a transaction was dropped from the pool. </p>\n","urlObject":{"protocol":"https","path":["construction","submit"],"host":["rosetta","s0","b","hmny","io"],"query":[],"variable":[]}},"response":[{"id":"36ed0827-6b86-476a-8551-02bff8140659","name":"/construction/submit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n     \"network_identifier\": {\n        \"blockchain\": \"Harmony\",\n        \"network\": \"Testnet\",\n        \"sub_network_identifier\": {\n            \"network\": \"shard 0\",\n            \"metadata\": {\n                \"is_beacon\": true\n            }\n        }\n    },\n    \"signed_transaction\": \"{\\\"rlp_bytes\\\":\\\"+HGAhDuaygCCUggBAZSxrDLBmRDdJDW3UkCgRdUu5MZbrYwO7O1MokLMSCB7aOqAJ6Dp98FOTB0xe8I0mhv7eJ45n2HRYar2EvLVUXpEEea+pqAIVlqD/BI04sV122jkgGE200K0oB+3nB6FFOVQogRj1A==\\\",\\\"is_staking\\\":false,\\\"contract_code\\\":\\\"0x\\\",\\\"from\\\":{\\\"address\\\":\\\"one155jp2y76nazx8uw5sa94fr0m4s5aj8e5xm6fu3\\\",\\\"metadata\\\":{\\\"hex_address\\\":\\\"0xA5241513DA9F4463F1d4874b548dFBAC29D91f34\\\"}}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://rosetta.s0.b.hmny.io/construction/submit"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 30 Oct 2020 13:19:19 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"395"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"Access-Control-Allow-Methods","value":"GET, POST,OPTIONS"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_identifier\": {\n        \"hash\": \"0xfcb59bcd59ca2fae526e3a1bfa161419122f037b5bfd45e331344a4ee4ab139a\"\n    },\n    \"metadata\": {}\n}"}],"_postman_id":"f5ed97ef-3c46-46cd-a016-be1a51cdd303"}],"id":"4aec13d6-4768-478e-b295-4c3ee874b943","description":"<h2 id=\"overview\">Overview</h2>\n<p>Just as the Data API provides the ability to read data from a blockchain in a standard format, the Construction API enables developers to write to a blockchain (i.e. construct transactions) in a standard format.</p>\n<p><a href=\"https://www.rosetta-api.org/docs/construction_api_introduction.html\">Reference Rosetta Documentation</a></p>\n<p>For reference, here is a flow of the steps needed to create a valid transaction:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                               Caller                                + Construction API Implementation\n                              +----------------------------------------------------------------------------------+\n                                                                     |\n                               Derive Address   +----------------------------&gt; /construction/derive\n                               from Public Key                       |\n                                                                     |\n                             X                                       |\n                             X Create Metadata Request +---------------------&gt; /construction/preprocess\n                             X (array of operations)                 |                    +\n    Get metadata needed      X                                       |                    |\n    to construct transaction X            +-----------------------------------------------+\n                             X            v                          |\n                             X Fetch Online Metadata +-----------------------&gt; /construction/metadata (online)\n                             X                                       |\n                                                                     |\n                             X                                       |\n                             X Construct Payloads to Sign +------------------&gt; /construction/payloads\n                             X (array of operations)                 |                   +\n                             X                                       |                   |\n Create unsigned transaction X          +------------------------------------------------+\n                             X          v                            |\n                             X Parse Unsigned Transaction +------------------&gt; /construction/parse\n                             X to Confirm Correctness                |\n                             X                                       |\n                                                                     |\n                             X                                       |\n                             X Sign Payload(s) +-----------------------------&gt; /construction/combine\n                             X (using caller's own detached signer)  |                 +\n                             X                                       |                 |\n   Create signed transaction X         +-----------------------------------------------+\n                             X         v                             |\n                             X Parse Signed Transaction +--------------------&gt; /construction/parse\n                             X to Confirm Correctness                |\n                             X                                       |\n                                                                     |\n                             X                                       |\n                             X Get hash of signed transaction +--------------&gt; /construction/hash\nBroadcast Signed Transaction X to monitor status                     |\n                             X                                       |\n                             X Submit Transaction +--------------------------&gt; /construction/submit (online)\n                             X                                       |\n                                                                     +\n</code></pre>","_postman_id":"4aec13d6-4768-478e-b295-4c3ee874b943"}],"id":"290797a1-2593-44ff-b284-6a4c06b3cb77","description":"<h2 id=\"overview\">Overview</h2>\n<p><a href=\"https://www.rosetta-api.org/\">Rosetta</a> is an open-source specification developed by Coinbase that makes integrating with blockchains simpler, faster, and more reliable by providing a universal layer for interacting with different blockchains. It does so by standardizing deployment, communication, and data formats. </p>\n<p><strong>IMPORTANT</strong>: This documentation will focus on the specifics of how to use Rosetta on Harmony. While some explanation of the Rosetta specification will be done here for context, please reference the official Rosetta documentation <a href=\"https://www.rosetta-api.org/docs/welcome.html\">here</a> for the best documentation on the general specification. </p>\n<p>For reference, implementation details about Harmony's integration of the Rosetta specification can be seen <a href=\"https://github.com/harmony-one/harmony/tree/main/rosetta\">here</a>.</p>\n<h2 id=\"native-node-support\">Native node support</h2>\n<p>Rosetta is natively supported on the Harmony node program, meaning that a Harmony node is ran (with Rosetta option enabled) to provide the service. </p>\n<p>It is important to note that full Rosetta functionality is only supported for nodes running in archival mode with a full archival DB (such as the nodes behind the endpoints ran by Harmony). Nodes running in state pruned mode can only guarantee full functionality for the last ~50-ish synced blocks. Note that explorer nodes are by default running in archival mode.</p>\n<h2 id=\"staking--smart-contracts\">Staking &amp; Smart Contracts</h2>\n<p>As of release <code>2.3.9</code> of the Harmony node, the implementation of staking and smart contract functionality via Rosetta is <strong>partially</strong> done. </p>\n<ul>\n<li>You <strong>can</strong> see all balance changing operations related to staking such as creating a validator, delegating, undelegating, collecting rewards, and editing a validator's information. </li>\n<li>You <strong>can</strong> see all balance changing operations related to contracts such as contract method calls that require state finality, and contract creation.</li>\n<li>You <strong>can</strong> see all logs of a transaction to help with debugging.</li>\n<li>You <strong>can</strong> see if a transaction's code was successfully executed in the EVM.</li>\n<li>You <strong>cannot</strong> create staking transactions using the Rosetta Construction API.</li>\n<li>You <strong>cannot</strong> view validator information.</li>\n<li>You <strong>cannot</strong> track delegated/locked balance.</li>\n<li>You <strong>cannot</strong> call a contract without a transaction to emulate the <code>hmyv2_call</code> RPC method.</li>\n<li>You <strong>cannot</strong> extract an EVM stack trace of a transaction.</li>\n<li>You <strong>cannot</strong> resend a cross-shard transaction.</li>\n</ul>\n<blockquote>\n<p>All of the missing features are present as an RPC and are integrated with our <a href=\"https://github.com/harmony-one/sdk\">Javascript-SDK</a>.</p>\n</blockquote>\n<p><em>Harmony is seeking developers to implement the missing features as a grant. Reach out to us if you are interested!</em></p>\n<h2 id=\"endpoints\">Endpoints</h2>\n<p>You can choose to run your own Rosetta enabled explorer (non-validating) node using <a href=\"https://www.docker.com/\">Docker</a>. The Documentation for doing so can be found <a href=\"https://github.com/harmony-one/harmony/blob/main/rosetta/infra/README.md\">here</a>. Since the docker deployment is compliant with the Rosetta deployment <a href=\"https://www.rosetta-api.org/docs/automated_deployment.html\">specification</a>, the node binary is built from source and all data will be stored in one directory for easy data management between the host machine &amp; docker container. </p>\n<p>If you would like to instead use an endpoint/node ran by Harmony, here are the URLs:</p>\n<ul>\n<li><p><strong>Mainnet</strong></p>\n<blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Shard</th>\n<th>URL</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td><a href=\"https://rosetta.s0.t.hmny.io\">https://rosetta.s0.t.hmny.io</a></td>\n</tr>\n<tr>\n<td>1</td>\n<td><a href=\"https://rosetta.s1.t.hmny.io\">https://rosetta.s1.t.hmny.io</a></td>\n</tr>\n<tr>\n<td>2</td>\n<td><a href=\"https://rosetta.s2.t.hmny.io\">https://rosetta.s2.t.hmny.io</a></td>\n</tr>\n<tr>\n<td>3</td>\n<td><a href=\"https://rosetta.s3.t.hmny.io\">https://rosetta.s3.t.hmny.io</a></td>\n</tr>\n</tbody>\n</table>\n</div><p><em>All nodes behind the endpoints are running in archival mode with a full archival DB</em>.</p>\n</blockquote>\n</li>\n<li><p><strong>Testnet</strong> (<em>could be unstable</em>)</p>\n<blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Shard</th>\n<th>URL</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td><a href=\"https://rosetta.s0.b.hmny.io\">https://rosetta.s0.b.hmny.io</a></td>\n</tr>\n<tr>\n<td>1</td>\n<td><a href=\"https://rosetta.s1.b.hmny.io\">https://rosetta.s1.b.hmny.io</a></td>\n</tr>\n<tr>\n<td>2</td>\n<td><a href=\"https://rosetta.s2.b.hmny.io\">https://rosetta.s2.b.hmny.io</a></td>\n</tr>\n<tr>\n<td>3</td>\n<td><a href=\"https://rosetta.s3.b.hmny.io\">https://rosetta.s3.b.hmny.io</a></td>\n</tr>\n</tbody>\n</table>\n</div><p><em>All nodes behind the endpoints are running in archival mode with a full archival DB</em>.</p>\n</blockquote>\n</li>\n</ul>\n<p>Note that there are future plans to release a gateway middleware that will allow one endpoint to route to all of the different shards using the <code>network_identifier</code>. That said, the listed endpoints will be maintained for the foreseeable future — even after the release of the gateway.</p>\n<h2 id=\"setup\">Setup</h2>\n<ul>\n<li>All requests are <code>POST</code> to one of the Rosetta <a href=\"https://www.rosetta-api.org/docs/data_api_introduction.html\">Data</a> or <a href=\"https://www.rosetta-api.org/docs/construction_api_introduction.html\">Construction</a> endpoints</li>\n<li>All request data is a valid JSON object</li>\n<li>All returned data is a valid JSON object</li>\n<li>When developing on a local network, the rosetta endpoint URLs are:<blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Shard</th>\n<th>URL</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td><a href=\"http://localhost:9799\">http://localhost:9799</a></td>\n</tr>\n<tr>\n<td>1</td>\n<td><a href=\"http://localhost:9798\">http://localhost:9798</a></td>\n</tr>\n</tbody>\n</table>\n</div></blockquote>\n</li>\n</ul>\n<h2 id=\"postman\">Postman</h2>\n<p>An easy tool you can use to interact with the Rosetta Endpoints is <a href=\"https://www.postman.com/downloads/\">Postman</a>. When using Postman, ensure that you have the following things configured:</p>\n<ul>\n<li>All requests must be a <code>POST</code> to the correct Rosetta endpoint. Note that the local network uses <code>http</code> not <code>https</code></li>\n</ul>\n<p><img src=\"https://i.imgur.com/BF1JBPa.png\" alt /></p>\n<ul>\n<li>The body must be raw JSON</li>\n</ul>\n<p><img src=\"https://i.imgur.com/hzwRkbX.png\" alt /></p>\n<h4 id=\"you-can-also-import-and-run-all-of-the-examples-using-postman-by-clicking-on-run-in-postman-at-the-top-of-the-webpage\">You can also import and run all of the examples using Postman by clicking on '<em>Run in Postman</em>' at the top of the webpage.</h4>\n<h2 id=\"rosetta-cli\">Rosetta-CLI</h2>\n<p>A tool to probe or play with any Rosetta enabled network is the <a href=\"https://github.com/coinbase/rosetta-cli\">Rosetta-CLI</a>. You can download it from the Coinbase repository <a href=\"https://github.com/coinbase/rosetta-cli/releases\">here</a>.</p>\n<p>There are a couple of things that must be set in the configuration file so that it can be used on the Harmony network.</p>\n<ol>\n<li>The configured network must be a JSON object where <code>blockchain</code> is \"Harmony\", <code>network</code> set to either \"Mainnet\" or \"Testnet\", and <code>sub_network_identifier</code> set to the correct shard. For example:</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"network\": {\n \"blockchain\": \"Harmony\",\n \"network\": \"Testnet\",\n \"sub_network_identifier\": {\n  \"network\": \"shard 0\",\n  \"metadata\": {\n   \"is_beacon\": true\n  }\n }\n}\n</code></pre><ol>\n<li><p>The <code>online_url</code> must be set to either your own node's URL or to a Harmony ran URL. Note that you must <strong>not</strong> have a slash ('/') at the end of your URL.</p>\n</li>\n<li><p>(Optional) Set the <code>offline_url</code> in <code>construction</code> to your own node running in offline mode.</p>\n</li>\n</ol>\n<p><strong>Example of simple Rosetta-CLI config:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n \"network\": {\n  \"blockchain\": \"Harmony\",\n  \"network\": \"Testnet\",\n  \"sub_network_identifier\": {\n   \"network\": \"shard 0\",\n   \"metadata\": {\n    \"is_beacon\": true\n   }\n  }\n },\n \"online_url\": \"https://rosetta.s0.b.hmny.io\",\n \"data_directory\": \"\",\n \"http_timeout\": 10,\n \"tip_delay\": 300,\n \"data\": {\n  \"historical_balance_enabled\": false,\n  \"reconciliation_disabled\": true,\n  \"inactive_discrepency_search_disabled\": true,\n  \"balance_tracking_disabled\": true,\n  \"end_conditions\": {\n    \"tip\": true\n  }\n }\n}\n</code></pre><blockquote>\n<p>You can view an example of some local network testing config, which includes some construction examples, <a href=\"https://github.com/harmony-one/harmony-test/blob/master/localnet/configs/localnet_rosetta_test_s0.json\">here</a> &amp; <a href=\"https://github.com/harmony-one/harmony-test/blob/master/localnet/configs/localnet_rosetta_test_s0.json\">here</a>.</p>\n</blockquote>\n","event":[{"listen":"prerequest","script":{"id":"3923acba-6604-40bb-b3e6-38a8c6899201","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"98e97ab7-f22e-4ec2-b73b-677d46f27a97","type":"text/javascript","exec":[""]}}],"_postman_id":"290797a1-2593-44ff-b284-6a4c06b3cb77"}],"event":[{"listen":"prerequest","script":{"id":"d2ddf760-7b21-4c57-885c-ce4d124aa996","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5f60f23a-95ca-4b00-b889-fefb5fd444f9","type":"text/javascript","exec":[""]}}]}