My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x3115994545496c69f8592aabfd1841593f84c57a18669e0ed262f66290860708 | 9198460 | 606 days 21 hrs ago | 0xa801864d0d24686b15682261aa05d4e1e6e5bd94 | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
Timelock
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2021-06-08 */ // COPIED FROM https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/GovernorAlpha.sol // Copyright 2020 Compound Labs, Inc. // Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: // 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. // 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. // 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // SPDX-License-Identifier: GPL-3.0-or-later Or MIT pragma solidity >=0.8.0 <0.9.0; contract Timelock { event NewAdmin(address indexed newAdmin); event NewPendingAdmin(address indexed newPendingAdmin); event NewDelay(uint indexed newDelay); event CancelTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta); event ExecuteTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta); event QueueTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta); uint public constant GRACE_PERIOD = 14 days; uint public constant MINIMUM_DELAY = 24 hours; uint public constant MAXIMUM_DELAY = 30 days; address public admin; address public pendingAdmin; uint public delay; bool public admin_initialized; mapping (bytes32 => bool) public queuedTransactions; constructor(address admin_, uint delay_) { require(delay_ >= MINIMUM_DELAY, "Timelock::constructor: Delay must exceed minimum delay."); require(delay_ <= MAXIMUM_DELAY, "Timelock::constructor: Delay must not exceed maximum delay."); admin = admin_; delay = delay_; admin_initialized = false; } receive() external payable { } function setDelay(uint delay_) public { require(msg.sender == address(this), "Timelock::setDelay: Call must come from Timelock."); require(delay_ >= MINIMUM_DELAY, "Timelock::setDelay: Delay must exceed minimum delay."); require(delay_ <= MAXIMUM_DELAY, "Timelock::setDelay: Delay must not exceed maximum delay."); delay = delay_; emit NewDelay(delay); } function acceptAdmin() public { require(msg.sender == pendingAdmin, "Timelock::acceptAdmin: Call must come from pendingAdmin."); admin = msg.sender; pendingAdmin = address(0); emit NewAdmin(admin); } function setPendingAdmin(address pendingAdmin_) public { // allows one time setting of admin for deployment purposes if (admin_initialized) { require(msg.sender == address(this), "Timelock::setPendingAdmin: Call must come from Timelock."); } else { require(msg.sender == admin, "Timelock::setPendingAdmin: First call must come from admin."); admin_initialized = true; } pendingAdmin = pendingAdmin_; emit NewPendingAdmin(pendingAdmin); } function queueTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public returns (bytes32) { require(msg.sender == admin, "Timelock::queueTransaction: Call must come from admin."); require(eta >= getBlockTimestamp() + delay, "Timelock::queueTransaction: Estimated execution block must satisfy delay."); bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta)); queuedTransactions[txHash] = true; emit QueueTransaction(txHash, target, value, signature, data, eta); return txHash; } function cancelTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public { require(msg.sender == admin, "Timelock::cancelTransaction: Call must come from admin."); bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta)); queuedTransactions[txHash] = false; emit CancelTransaction(txHash, target, value, signature, data, eta); } function executeTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public payable returns (bytes memory) { require(msg.sender == admin, "Timelock::executeTransaction: Call must come from admin."); bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta)); require(queuedTransactions[txHash], "Timelock::executeTransaction: Transaction hasn't been queued."); require(getBlockTimestamp() >= eta, "Timelock::executeTransaction: Transaction hasn't surpassed time lock."); require(getBlockTimestamp() <= eta + GRACE_PERIOD, "Timelock::executeTransaction: Transaction is stale."); queuedTransactions[txHash] = false; bytes memory callData; if (bytes(signature).length == 0) { callData = data; } else { callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data); } // solium-disable-next-line security/no-call-value (bool success, bytes memory returnData) = target.call{value: value}(callData); require(success, "Timelock::executeTransaction: Transaction execution reverted."); emit ExecuteTransaction(txHash, target, value, signature, data, eta); return returnData; } function getBlockTimestamp() internal view returns (uint) { // solium-disable-next-line security/no-block-members return block.timestamp; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin_","type":"address"},{"internalType":"uint256","name":"delay_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"CancelTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"ExecuteTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newDelay","type":"uint256"}],"name":"NewDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"QueueTransaction","type":"event"},{"inputs":[],"name":"GRACE_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINIMUM_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin_initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"cancelTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"delay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"executeTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"queueTransaction","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"queuedTransactions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"delay_","type":"uint256"}],"name":"setDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingAdmin_","type":"address"}],"name":"setPendingAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200220e3803806200220e833981810160405281019062000037919062000161565b6201518081101562000080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000779062000212565b60405180910390fd5b62278d00811115620000c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000c090620001f0565b60405180910390fd5b816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806002819055506000600360006101000a81548160ff021916908315150217905550505062000355565b600081519050620001448162000321565b92915050565b6000815190506200015b816200033b565b92915050565b600080604083850312156200017557600080fd5b6000620001858582860162000133565b925050602062000198858286016200014a565b9150509250929050565b6000620001b1603b8362000234565b9150620001be8262000283565b604082019050919050565b6000620001d860378362000234565b9150620001e582620002d2565b604082019050919050565b600060208201905081810360008301526200020b81620001a2565b9050919050565b600060208201905081810360008301526200022d81620001c9565b9050919050565b600082825260208201905092915050565b6000620002528262000259565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f54696d656c6f636b3a3a636f6e7374727563746f723a2044656c6179206d757360008201527f74206e6f7420657863656564206d6178696d756d2064656c61792e0000000000602082015250565b7f54696d656c6f636b3a3a636f6e7374727563746f723a2044656c6179206d757360008201527f7420657863656564206d696e696d756d2064656c61792e000000000000000000602082015250565b6200032c8162000245565b81146200033857600080fd5b50565b620003468162000279565b81146200035257600080fd5b50565b611ea980620003656000396000f3fe6080604052600436106100e15760003560e01c80636fc1f57e1161007f578063c1a287e211610059578063c1a287e21461029a578063e177246e146102c5578063f2b06537146102ee578063f851a4401461032b576100e8565b80636fc1f57e146102195780637d645fab14610244578063b1b43ae51461026f576100e8565b80633a66f901116100bb5780633a66f9011461015f5780634dd18bf51461019c578063591fcdfe146101c55780636a42b8f8146101ee576100e8565b80630825f38f146100ed5780630e18b6811461011d5780632678224714610134576100e8565b366100e857005b600080fd5b61010760048036038101906101029190610fec565b610356565b60405161011491906114b6565b60405180910390f35b34801561012957600080fd5b5061013261069c565b005b34801561014057600080fd5b50610149610813565b6040516101569190611404565b60405180910390f35b34801561016b57600080fd5b5061018660048036038101906101819190610fec565b610839565b604051610193919061149b565b60405180910390f35b3480156101a857600080fd5b506101c360048036038101906101be9190610fc3565b6109e2565b005b3480156101d157600080fd5b506101ec60048036038101906101e79190610fec565b610bbd565b005b3480156101fa57600080fd5b50610203610d07565b6040516102109190611698565b60405180910390f35b34801561022557600080fd5b5061022e610d0d565b60405161023b9190611480565b60405180910390f35b34801561025057600080fd5b50610259610d20565b6040516102669190611698565b60405180910390f35b34801561027b57600080fd5b50610284610d27565b6040516102919190611698565b60405180910390f35b3480156102a657600080fd5b506102af610d2e565b6040516102bc9190611698565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e791906110bc565b610d35565b005b3480156102fa57600080fd5b5061031560048036038101906103109190611093565b610e68565b6040516103229190611480565b60405180910390f35b34801561033757600080fd5b50610340610e88565b60405161034d9190611404565b60405180910390f35b606060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103dd906114d8565b60405180910390fd5b6000868686868660405160200161040195949392919061141f565b6040516020818303038152906040528051906020012090506004600082815260200190815260200160002060009054906101000a900460ff16610479576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610470906115b8565b60405180910390fd5b82610482610eac565b10156104c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ba90611538565b60405180910390fd5b62127500836104d291906117d0565b6104da610eac565b111561051b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051290611518565b60405180910390fd5b60006004600083815260200190815260200160002060006101000a81548160ff021916908315150217905550606060008651141561055b57849050610587565b8580519060200120856040516020016105759291906113c5565b60405160208183030381529060405290505b6000808973ffffffffffffffffffffffffffffffffffffffff1689846040516105b091906113ed565b60006040518083038185875af1925050503d80600081146105ed576040519150601f19603f3d011682016040523d82523d6000602084013e6105f2565b606091505b509150915081610637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062e90611638565b60405180910390fd5b8973ffffffffffffffffffffffffffffffffffffffff16847fa560e3198060a2f10670c1ec5b403077ea6ae93ca8de1c32b451dc1a943cd6e78b8b8b8b60405161068494939291906116b3565b60405180910390a38094505050505095945050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461072c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610723906115d8565b60405180910390fd5b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c60405160405180910390a2565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190611618565b60405180910390fd5b6002546108d5610eac565b6108df91906117d0565b821015610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890611658565b60405180910390fd5b6000868686868660405160200161093c95949392919061141f565b60405160208183030381529060405280519060200120905060016004600083815260200190815260200160002060006101000a81548160ff0219169083151502179055508673ffffffffffffffffffffffffffffffffffffffff16817f76e2796dc3a81d57b0e8504b647febcbeeb5f4af818e164f11eef8131a6a763f888888886040516109cd94939291906116b3565b60405180910390a38091505095945050505050565b600360009054906101000a900460ff1615610a6a573073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906115f8565b60405180910390fd5b610b14565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90611578565b60405180910390fd5b6001600360006101000a81548160ff0219169083151502179055505b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f69d78e38a01985fbb1462961809b4b2d65531bc93b2b94037f3334b82ca4a75660405160405180910390a250565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c42906114f8565b60405180910390fd5b60008585858585604051602001610c6695949392919061141f565b60405160208183030381529060405280519060200120905060006004600083815260200190815260200160002060006101000a81548160ff0219169083151502179055508573ffffffffffffffffffffffffffffffffffffffff16817f2fffc091a501fd91bfbff27141450d3acb40fb8e6d8382b243ec7a812a3aaf8787878787604051610cf794939291906116b3565b60405180910390a3505050505050565b60025481565b600360009054906101000a900460ff1681565b62278d0081565b6201518081565b6212750081565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90611678565b60405180910390fd5b62015180811015610de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de090611558565b60405180910390fd5b62278d00811115610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690611598565b60405180910390fd5b806002819055506002547f948b1f6a42ee138b7e34058ba85a37f716d55ff25ff05a763f15bed6a04c8d2c60405160405180910390a250565b60046020528060005260406000206000915054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600042905090565b6000610ec7610ec28461172b565b611706565b905082815260208101848484011115610edf57600080fd5b610eea8482856118a4565b509392505050565b6000610f05610f008461175c565b611706565b905082815260208101848484011115610f1d57600080fd5b610f288482856118a4565b509392505050565b600081359050610f3f81611e2e565b92915050565b600081359050610f5481611e45565b92915050565b600082601f830112610f6b57600080fd5b8135610f7b848260208601610eb4565b91505092915050565b600082601f830112610f9557600080fd5b8135610fa5848260208601610ef2565b91505092915050565b600081359050610fbd81611e5c565b92915050565b600060208284031215610fd557600080fd5b6000610fe384828501610f30565b91505092915050565b600080600080600060a0868803121561100457600080fd5b600061101288828901610f30565b955050602061102388828901610fae565b945050604086013567ffffffffffffffff81111561104057600080fd5b61104c88828901610f84565b935050606086013567ffffffffffffffff81111561106957600080fd5b61107588828901610f5a565b925050608061108688828901610fae565b9150509295509295909350565b6000602082840312156110a557600080fd5b60006110b384828501610f45565b91505092915050565b6000602082840312156110ce57600080fd5b60006110dc84828501610fae565b91505092915050565b6110ee81611826565b82525050565b6110fd81611838565b82525050565b61110c81611844565b82525050565b61112361111e8261184e565b611917565b82525050565b60006111348261178d565b61113e81856117a3565b935061114e8185602086016118b3565b6111578161197f565b840191505092915050565b600061116d8261178d565b61117781856117b4565b93506111878185602086016118b3565b80840191505092915050565b600061119e82611798565b6111a881856117bf565b93506111b88185602086016118b3565b6111c18161197f565b840191505092915050565b60006111d96038836117bf565b91506111e482611990565b604082019050919050565b60006111fc6037836117bf565b9150611207826119df565b604082019050919050565b600061121f6033836117bf565b915061122a82611a2e565b604082019050919050565b60006112426045836117bf565b915061124d82611a7d565b606082019050919050565b60006112656034836117bf565b915061127082611af2565b604082019050919050565b6000611288603b836117bf565b915061129382611b41565b604082019050919050565b60006112ab6038836117bf565b91506112b682611b90565b604082019050919050565b60006112ce603d836117bf565b91506112d982611bdf565b604082019050919050565b60006112f16038836117bf565b91506112fc82611c2e565b604082019050919050565b60006113146038836117bf565b915061131f82611c7d565b604082019050919050565b60006113376036836117bf565b915061134282611ccc565b604082019050919050565b600061135a603d836117bf565b915061136582611d1b565b604082019050919050565b600061137d6049836117bf565b915061138882611d6a565b606082019050919050565b60006113a06031836117bf565b91506113ab82611ddf565b604082019050919050565b6113bf8161189a565b82525050565b60006113d18285611112565b6004820191506113e18284611162565b91508190509392505050565b60006113f98284611162565b915081905092915050565b600060208201905061141960008301846110e5565b92915050565b600060a08201905061143460008301886110e5565b61144160208301876113b6565b81810360408301526114538186611193565b905081810360608301526114678185611129565b905061147660808301846113b6565b9695505050505050565b600060208201905061149560008301846110f4565b92915050565b60006020820190506114b06000830184611103565b92915050565b600060208201905081810360008301526114d08184611129565b905092915050565b600060208201905081810360008301526114f1816111cc565b9050919050565b60006020820190508181036000830152611511816111ef565b9050919050565b6000602082019050818103600083015261153181611212565b9050919050565b6000602082019050818103600083015261155181611235565b9050919050565b6000602082019050818103600083015261157181611258565b9050919050565b600060208201905081810360008301526115918161127b565b9050919050565b600060208201905081810360008301526115b18161129e565b9050919050565b600060208201905081810360008301526115d1816112c1565b9050919050565b600060208201905081810360008301526115f1816112e4565b9050919050565b6000602082019050818103600083015261161181611307565b9050919050565b600060208201905081810360008301526116318161132a565b9050919050565b600060208201905081810360008301526116518161134d565b9050919050565b6000602082019050818103600083015261167181611370565b9050919050565b6000602082019050818103600083015261169181611393565b9050919050565b60006020820190506116ad60008301846113b6565b92915050565b60006080820190506116c860008301876113b6565b81810360208301526116da8186611193565b905081810360408301526116ee8185611129565b90506116fd60608301846113b6565b95945050505050565b6000611710611721565b905061171c82826118e6565b919050565b6000604051905090565b600067ffffffffffffffff82111561174657611745611950565b5b61174f8261197f565b9050602081019050919050565b600067ffffffffffffffff82111561177757611776611950565b5b6117808261197f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006117db8261189a565b91506117e68361189a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561181b5761181a611921565b5b828201905092915050565b60006118318261187a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156118d15780820151818401526020810190506118b6565b838111156118e0576000848401525b50505050565b6118ef8261197f565b810181811067ffffffffffffffff8211171561190e5761190d611950565b5b80604052505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20436160008201527f6c6c206d75737420636f6d652066726f6d2061646d696e2e0000000000000000602082015250565b7f54696d656c6f636b3a3a63616e63656c5472616e73616374696f6e3a2043616c60008201527f6c206d75737420636f6d652066726f6d2061646d696e2e000000000000000000602082015250565b7f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260008201527f616e73616374696f6e206973207374616c652e00000000000000000000000000602082015250565b7f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260008201527f616e73616374696f6e206861736e2774207375727061737365642074696d652060208201527f6c6f636b2e000000000000000000000000000000000000000000000000000000604082015250565b7f54696d656c6f636b3a3a73657444656c61793a2044656c6179206d757374206560008201527f7863656564206d696e696d756d2064656c61792e000000000000000000000000602082015250565b7f54696d656c6f636b3a3a73657450656e64696e6741646d696e3a20466972737460008201527f2063616c6c206d75737420636f6d652066726f6d2061646d696e2e0000000000602082015250565b7f54696d656c6f636b3a3a73657444656c61793a2044656c6179206d757374206e60008201527f6f7420657863656564206d6178696d756d2064656c61792e0000000000000000602082015250565b7f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260008201527f616e73616374696f6e206861736e2774206265656e207175657565642e000000602082015250565b7f54696d656c6f636b3a3a61636365707441646d696e3a2043616c6c206d75737460008201527f20636f6d652066726f6d2070656e64696e6741646d696e2e0000000000000000602082015250565b7f54696d656c6f636b3a3a73657450656e64696e6741646d696e3a2043616c6c2060008201527f6d75737420636f6d652066726f6d2054696d656c6f636b2e0000000000000000602082015250565b7f54696d656c6f636b3a3a71756575655472616e73616374696f6e3a2043616c6c60008201527f206d75737420636f6d652066726f6d2061646d696e2e00000000000000000000602082015250565b7f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260008201527f616e73616374696f6e20657865637574696f6e2072657665727465642e000000602082015250565b7f54696d656c6f636b3a3a71756575655472616e73616374696f6e3a204573746960008201527f6d6174656420657865637574696f6e20626c6f636b206d75737420736174697360208201527f66792064656c61792e0000000000000000000000000000000000000000000000604082015250565b7f54696d656c6f636b3a3a73657444656c61793a2043616c6c206d75737420636f60008201527f6d652066726f6d2054696d656c6f636b2e000000000000000000000000000000602082015250565b611e3781611826565b8114611e4257600080fd5b50565b611e4e81611844565b8114611e5957600080fd5b50565b611e658161189a565b8114611e7057600080fd5b5056fea264697066735822122033cdea37aa932d5db4cdf6531657949e9cba317b9e36c6705b8bb7e8311123e664736f6c63430008040033000000000000000000000000582a28fd633eb3cbe46d42837c53342e90fd8ecb0000000000000000000000000000000000000000000000000000000000015180
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000582a28fd633eb3cbe46d42837c53342e90fd8ecb0000000000000000000000000000000000000000000000000000000000015180
-----Decoded View---------------
Arg [0] : admin_ (address): 0x582a28fd633eb3cbe46d42837c53342e90fd8ecb
Arg [1] : delay_ (uint256): 86400
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000582a28fd633eb3cbe46d42837c53342e90fd8ecb
Arg [1] : 0000000000000000000000000000000000000000000000000000000000015180
Deployed ByteCode Sourcemap
1694:5051:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5258:1314;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3408:242;;;;;;;;;;;;;:::i;:::-;;2447:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4203:604;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3658:537;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4815:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2481:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2505:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2367:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2315:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2265:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2994:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2543:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2420:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5258:1314;5392:12;5439:5;;;;;;;;;;5425:19;;:10;:19;;;5417:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;5518:14;5556:6;5564:5;5571:9;5582:4;5588:3;5545:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5535:58;;;;;;5518:75;;5612:18;:26;5631:6;5612:26;;;;;;;;;;;;;;;;;;;;;5604:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;5746:3;5723:19;:17;:19::i;:::-;:26;;5715:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;2301:7;5865:3;:18;;;;:::i;:::-;5842:19;:17;:19::i;:::-;:41;;5834:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;5981:5;5952:18;:26;5971:6;5952:26;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;5999:21;6064:1;6043:9;6037:23;:28;6033:179;;;6093:4;6082:15;;6033:179;;;6181:9;6165:27;;;;;;6195:4;6141:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6130:70;;6033:179;6285:12;6299:23;6326:6;:11;;6345:5;6352:8;6326:35;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6284:77;;;;6380:7;6372:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;6498:6;6471:63;;6490:6;6471:63;6506:5;6513:9;6524:4;6530:3;6471:63;;;;;;;;;:::i;:::-;;;;;;;;6554:10;6547:17;;;;;;5258:1314;;;;;;;:::o;3408:242::-;3471:12;;;;;;;;;;;3457:26;;:10;:26;;;3449:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;3563:10;3555:5;;:18;;;;;;;;;;;;;;;;;;3607:1;3584:12;;:25;;;;;;;;;;;;;;;;;;3636:5;;;;;;;;;;3627:15;;;;;;;;;;;;3408:242::o;2447:27::-;;;;;;;;;;;;;:::o;4203:604::-;4327:7;4369:5;;;;;;;;;;;4355:19;;:10;:19;;;4347:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;4481:5;;4459:19;:17;:19::i;:::-;:27;;;;:::i;:::-;4452:3;:34;;4444:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;4577:14;4615:6;4623:5;4630:9;4641:4;4647:3;4604:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4594:58;;;;;;4577:75;;4692:4;4663:18;:26;4682:6;4663:26;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;4739:6;4714:61;;4731:6;4714:61;4747:5;4754:9;4765:4;4771:3;4714:61;;;;;;;;;:::i;:::-;;;;;;;;4793:6;4786:13;;;4203:604;;;;;;;:::o;3658:537::-;3797:17;;;;;;;;;;;3793:309;;;3861:4;3839:27;;:10;:27;;;3831:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;3793:309;;;3982:5;;;;;;;;;;3968:19;;:10;:19;;;3960:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;4086:4;4066:17;;:24;;;;;;;;;;;;;;;;;;3793:309;4127:13;4112:12;;:28;;;;;;;;;;;;;;;;;;4174:12;;;;;;;;;;;4158:29;;;;;;;;;;;;3658:537;:::o;4815:435::-;4964:5;;;;;;;;;;4950:19;;:10;:19;;;4942:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;5042:14;5080:6;5088:5;5095:9;5106:4;5112:3;5069:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5059:58;;;;;;5042:75;;5157:5;5128:18;:26;5147:6;5128:26;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;5206:6;5180:62;;5198:6;5180:62;5214:5;5221:9;5232:4;5238:3;5180:62;;;;;;;;;:::i;:::-;;;;;;;;4815:435;;;;;;:::o;2481:17::-;;;;:::o;2505:29::-;;;;;;;;;;;;;:::o;2367:44::-;2404:7;2367:44;:::o;2315:45::-;2352:8;2315:45;:::o;2265:43::-;2301:7;2265:43;:::o;2994:406::-;3073:4;3051:27;;:10;:27;;;3043:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;2352:8;3151:6;:23;;3143:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;2404:7;3250:6;:23;;3242:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;3353:6;3345:5;:14;;;;3386:5;;3377:15;;;;;;;;;;2994:406;:::o;2543:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;2420:20::-;;;;;;;;;;;;:::o;6580:162::-;6632:4;6719:15;6712:22;;6580:162;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:139::-;898:5;936:6;923:20;914:29;;952:33;979:5;952:33;:::i;:::-;904:87;;;;:::o;1010:271::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:2;;1132:1;1129;1122:12;1081:2;1172:6;1159:20;1197:78;1271:3;1263:6;1256:4;1248:6;1244:17;1197:78;:::i;:::-;1188:87;;1071:210;;;;;:::o;1301:273::-;1357:5;1406:3;1399:4;1391:6;1387:17;1383:27;1373:2;;1424:1;1421;1414:12;1373:2;1464:6;1451:20;1489:79;1564:3;1556:6;1549:4;1541:6;1537:17;1489:79;:::i;:::-;1480:88;;1363:211;;;;;:::o;1580:139::-;1626:5;1664:6;1651:20;1642:29;;1680:33;1707:5;1680:33;:::i;:::-;1632:87;;;;:::o;1725:262::-;1784:6;1833:2;1821:9;1812:7;1808:23;1804:32;1801:2;;;1849:1;1846;1839:12;1801:2;1892:1;1917:53;1962:7;1953:6;1942:9;1938:22;1917:53;:::i;:::-;1907:63;;1863:117;1791:196;;;;:::o;1993:1068::-;2107:6;2115;2123;2131;2139;2188:3;2176:9;2167:7;2163:23;2159:33;2156:2;;;2205:1;2202;2195:12;2156:2;2248:1;2273:53;2318:7;2309:6;2298:9;2294:22;2273:53;:::i;:::-;2263:63;;2219:117;2375:2;2401:53;2446:7;2437:6;2426:9;2422:22;2401:53;:::i;:::-;2391:63;;2346:118;2531:2;2520:9;2516:18;2503:32;2562:18;2554:6;2551:30;2548:2;;;2594:1;2591;2584:12;2548:2;2622:63;2677:7;2668:6;2657:9;2653:22;2622:63;:::i;:::-;2612:73;;2474:221;2762:2;2751:9;2747:18;2734:32;2793:18;2785:6;2782:30;2779:2;;;2825:1;2822;2815:12;2779:2;2853:62;2907:7;2898:6;2887:9;2883:22;2853:62;:::i;:::-;2843:72;;2705:220;2964:3;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2935:119;2146:915;;;;;;;;:::o;3067:262::-;3126:6;3175:2;3163:9;3154:7;3150:23;3146:32;3143:2;;;3191:1;3188;3181:12;3143:2;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3133:196;;;;:::o;3335:262::-;3394:6;3443:2;3431:9;3422:7;3418:23;3414:32;3411:2;;;3459:1;3456;3449:12;3411:2;3502:1;3527:53;3572:7;3563:6;3552:9;3548:22;3527:53;:::i;:::-;3517:63;;3473:117;3401:196;;;;:::o;3603:118::-;3690:24;3708:5;3690:24;:::i;:::-;3685:3;3678:37;3668:53;;:::o;3727:109::-;3808:21;3823:5;3808:21;:::i;:::-;3803:3;3796:34;3786:50;;:::o;3842:118::-;3929:24;3947:5;3929:24;:::i;:::-;3924:3;3917:37;3907:53;;:::o;3966:153::-;4069:43;4088:23;4105:5;4088:23;:::i;:::-;4069:43;:::i;:::-;4064:3;4057:56;4047:72;;:::o;4125:360::-;4211:3;4239:38;4271:5;4239:38;:::i;:::-;4293:70;4356:6;4351:3;4293:70;:::i;:::-;4286:77;;4372:52;4417:6;4412:3;4405:4;4398:5;4394:16;4372:52;:::i;:::-;4449:29;4471:6;4449:29;:::i;:::-;4444:3;4440:39;4433:46;;4215:270;;;;;:::o;4491:373::-;4595:3;4623:38;4655:5;4623:38;:::i;:::-;4677:88;4758:6;4753:3;4677:88;:::i;:::-;4670:95;;4774:52;4819:6;4814:3;4807:4;4800:5;4796:16;4774:52;:::i;:::-;4851:6;4846:3;4842:16;4835:23;;4599:265;;;;;:::o;4870:364::-;4958:3;4986:39;5019:5;4986:39;:::i;:::-;5041:71;5105:6;5100:3;5041:71;:::i;:::-;5034:78;;5121:52;5166:6;5161:3;5154:4;5147:5;5143:16;5121:52;:::i;:::-;5198:29;5220:6;5198:29;:::i;:::-;5193:3;5189:39;5182:46;;4962:272;;;;;:::o;5240:366::-;5382:3;5403:67;5467:2;5462:3;5403:67;:::i;:::-;5396:74;;5479:93;5568:3;5479:93;:::i;:::-;5597:2;5592:3;5588:12;5581:19;;5386:220;;;:::o;5612:366::-;5754:3;5775:67;5839:2;5834:3;5775:67;:::i;:::-;5768:74;;5851:93;5940:3;5851:93;:::i;:::-;5969:2;5964:3;5960:12;5953:19;;5758:220;;;:::o;5984:366::-;6126:3;6147:67;6211:2;6206:3;6147:67;:::i;:::-;6140:74;;6223:93;6312:3;6223:93;:::i;:::-;6341:2;6336:3;6332:12;6325:19;;6130:220;;;:::o;6356:366::-;6498:3;6519:67;6583:2;6578:3;6519:67;:::i;:::-;6512:74;;6595:93;6684:3;6595:93;:::i;:::-;6713:2;6708:3;6704:12;6697:19;;6502:220;;;:::o;6728:366::-;6870:3;6891:67;6955:2;6950:3;6891:67;:::i;:::-;6884:74;;6967:93;7056:3;6967:93;:::i;:::-;7085:2;7080:3;7076:12;7069:19;;6874:220;;;:::o;7100:366::-;7242:3;7263:67;7327:2;7322:3;7263:67;:::i;:::-;7256:74;;7339:93;7428:3;7339:93;:::i;:::-;7457:2;7452:3;7448:12;7441:19;;7246:220;;;:::o;7472:366::-;7614:3;7635:67;7699:2;7694:3;7635:67;:::i;:::-;7628:74;;7711:93;7800:3;7711:93;:::i;:::-;7829:2;7824:3;7820:12;7813:19;;7618:220;;;:::o;7844:366::-;7986:3;8007:67;8071:2;8066:3;8007:67;:::i;:::-;8000:74;;8083:93;8172:3;8083:93;:::i;:::-;8201:2;8196:3;8192:12;8185:19;;7990:220;;;:::o;8216:366::-;8358:3;8379:67;8443:2;8438:3;8379:67;:::i;:::-;8372:74;;8455:93;8544:3;8455:93;:::i;:::-;8573:2;8568:3;8564:12;8557:19;;8362:220;;;:::o;8588:366::-;8730:3;8751:67;8815:2;8810:3;8751:67;:::i;:::-;8744:74;;8827:93;8916:3;8827:93;:::i;:::-;8945:2;8940:3;8936:12;8929:19;;8734:220;;;:::o;8960:366::-;9102:3;9123:67;9187:2;9182:3;9123:67;:::i;:::-;9116:74;;9199:93;9288:3;9199:93;:::i;:::-;9317:2;9312:3;9308:12;9301:19;;9106:220;;;:::o;9332:366::-;9474:3;9495:67;9559:2;9554:3;9495:67;:::i;:::-;9488:74;;9571:93;9660:3;9571:93;:::i;:::-;9689:2;9684:3;9680:12;9673:19;;9478:220;;;:::o;9704:366::-;9846:3;9867:67;9931:2;9926:3;9867:67;:::i;:::-;9860:74;;9943:93;10032:3;9943:93;:::i;:::-;10061:2;10056:3;10052:12;10045:19;;9850:220;;;:::o;10076:366::-;10218:3;10239:67;10303:2;10298:3;10239:67;:::i;:::-;10232:74;;10315:93;10404:3;10315:93;:::i;:::-;10433:2;10428:3;10424:12;10417:19;;10222:220;;;:::o;10448:118::-;10535:24;10553:5;10535:24;:::i;:::-;10530:3;10523:37;10513:53;;:::o;10572:407::-;10728:3;10743:73;10812:3;10803:6;10743:73;:::i;:::-;10841:1;10836:3;10832:11;10825:18;;10860:93;10949:3;10940:6;10860:93;:::i;:::-;10853:100;;10970:3;10963:10;;10732:247;;;;;:::o;10985:271::-;11115:3;11137:93;11226:3;11217:6;11137:93;:::i;:::-;11130:100;;11247:3;11240:10;;11119:137;;;;:::o;11262:222::-;11355:4;11393:2;11382:9;11378:18;11370:26;;11406:71;11474:1;11463:9;11459:17;11450:6;11406:71;:::i;:::-;11360:124;;;;:::o;11490:842::-;11733:4;11771:3;11760:9;11756:19;11748:27;;11785:71;11853:1;11842:9;11838:17;11829:6;11785:71;:::i;:::-;11866:72;11934:2;11923:9;11919:18;11910:6;11866:72;:::i;:::-;11985:9;11979:4;11975:20;11970:2;11959:9;11955:18;11948:48;12013:78;12086:4;12077:6;12013:78;:::i;:::-;12005:86;;12138:9;12132:4;12128:20;12123:2;12112:9;12108:18;12101:48;12166:76;12237:4;12228:6;12166:76;:::i;:::-;12158:84;;12252:73;12320:3;12309:9;12305:19;12296:6;12252:73;:::i;:::-;11738:594;;;;;;;;:::o;12338:210::-;12425:4;12463:2;12452:9;12448:18;12440:26;;12476:65;12538:1;12527:9;12523:17;12514:6;12476:65;:::i;:::-;12430:118;;;;:::o;12554:222::-;12647:4;12685:2;12674:9;12670:18;12662:26;;12698:71;12766:1;12755:9;12751:17;12742:6;12698:71;:::i;:::-;12652:124;;;;:::o;12782:309::-;12893:4;12931:2;12920:9;12916:18;12908:26;;12980:9;12974:4;12970:20;12966:1;12955:9;12951:17;12944:47;13008:76;13079:4;13070:6;13008:76;:::i;:::-;13000:84;;12898:193;;;;:::o;13097:419::-;13263:4;13301:2;13290:9;13286:18;13278:26;;13350:9;13344:4;13340:20;13336:1;13325:9;13321:17;13314:47;13378:131;13504:4;13378:131;:::i;:::-;13370:139;;13268:248;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13693:248;;;:::o;13947:419::-;14113:4;14151:2;14140:9;14136:18;14128:26;;14200:9;14194:4;14190:20;14186:1;14175:9;14171:17;14164:47;14228:131;14354:4;14228:131;:::i;:::-;14220:139;;14118:248;;;:::o;14372:419::-;14538:4;14576:2;14565:9;14561:18;14553:26;;14625:9;14619:4;14615:20;14611:1;14600:9;14596:17;14589:47;14653:131;14779:4;14653:131;:::i;:::-;14645:139;;14543:248;;;:::o;14797:419::-;14963:4;15001:2;14990:9;14986:18;14978:26;;15050:9;15044:4;15040:20;15036:1;15025:9;15021:17;15014:47;15078:131;15204:4;15078:131;:::i;:::-;15070:139;;14968:248;;;:::o;15222:419::-;15388:4;15426:2;15415:9;15411:18;15403:26;;15475:9;15469:4;15465:20;15461:1;15450:9;15446:17;15439:47;15503:131;15629:4;15503:131;:::i;:::-;15495:139;;15393:248;;;:::o;15647:419::-;15813:4;15851:2;15840:9;15836:18;15828:26;;15900:9;15894:4;15890:20;15886:1;15875:9;15871:17;15864:47;15928:131;16054:4;15928:131;:::i;:::-;15920:139;;15818:248;;;:::o;16072:419::-;16238:4;16276:2;16265:9;16261:18;16253:26;;16325:9;16319:4;16315:20;16311:1;16300:9;16296:17;16289:47;16353:131;16479:4;16353:131;:::i;:::-;16345:139;;16243:248;;;:::o;16497:419::-;16663:4;16701:2;16690:9;16686:18;16678:26;;16750:9;16744:4;16740:20;16736:1;16725:9;16721:17;16714:47;16778:131;16904:4;16778:131;:::i;:::-;16770:139;;16668:248;;;:::o;16922:419::-;17088:4;17126:2;17115:9;17111:18;17103:26;;17175:9;17169:4;17165:20;17161:1;17150:9;17146:17;17139:47;17203:131;17329:4;17203:131;:::i;:::-;17195:139;;17093:248;;;:::o;17347:419::-;17513:4;17551:2;17540:9;17536:18;17528:26;;17600:9;17594:4;17590:20;17586:1;17575:9;17571:17;17564:47;17628:131;17754:4;17628:131;:::i;:::-;17620:139;;17518:248;;;:::o;17772:419::-;17938:4;17976:2;17965:9;17961:18;17953:26;;18025:9;18019:4;18015:20;18011:1;18000:9;17996:17;17989:47;18053:131;18179:4;18053:131;:::i;:::-;18045:139;;17943:248;;;:::o;18197:419::-;18363:4;18401:2;18390:9;18386:18;18378:26;;18450:9;18444:4;18440:20;18436:1;18425:9;18421:17;18414:47;18478:131;18604:4;18478:131;:::i;:::-;18470:139;;18368:248;;;:::o;18622:419::-;18788:4;18826:2;18815:9;18811:18;18803:26;;18875:9;18869:4;18865:20;18861:1;18850:9;18846:17;18839:47;18903:131;19029:4;18903:131;:::i;:::-;18895:139;;18793:248;;;:::o;19047:222::-;19140:4;19178:2;19167:9;19163:18;19155:26;;19191:71;19259:1;19248:9;19244:17;19235:6;19191:71;:::i;:::-;19145:124;;;;:::o;19275:731::-;19490:4;19528:3;19517:9;19513:19;19505:27;;19542:71;19610:1;19599:9;19595:17;19586:6;19542:71;:::i;:::-;19660:9;19654:4;19650:20;19645:2;19634:9;19630:18;19623:48;19688:78;19761:4;19752:6;19688:78;:::i;:::-;19680:86;;19813:9;19807:4;19803:20;19798:2;19787:9;19783:18;19776:48;19841:76;19912:4;19903:6;19841:76;:::i;:::-;19833:84;;19927:72;19995:2;19984:9;19980:18;19971:6;19927:72;:::i;:::-;19495:511;;;;;;;:::o;20012:129::-;20046:6;20073:20;;:::i;:::-;20063:30;;20102:33;20130:4;20122:6;20102:33;:::i;:::-;20053:88;;;:::o;20147:75::-;20180:6;20213:2;20207:9;20197:19;;20187:35;:::o;20228:307::-;20289:4;20379:18;20371:6;20368:30;20365:2;;;20401:18;;:::i;:::-;20365:2;20439:29;20461:6;20439:29;:::i;:::-;20431:37;;20523:4;20517;20513:15;20505:23;;20294:241;;;:::o;20541:308::-;20603:4;20693:18;20685:6;20682:30;20679:2;;;20715:18;;:::i;:::-;20679:2;20753:29;20775:6;20753:29;:::i;:::-;20745:37;;20837:4;20831;20827:15;20819:23;;20608:241;;;:::o;20855:98::-;20906:6;20940:5;20934:12;20924:22;;20913:40;;;:::o;20959:99::-;21011:6;21045:5;21039:12;21029:22;;21018:40;;;:::o;21064:168::-;21147:11;21181:6;21176:3;21169:19;21221:4;21216:3;21212:14;21197:29;;21159:73;;;;:::o;21238:147::-;21339:11;21376:3;21361:18;;21351:34;;;;:::o;21391:169::-;21475:11;21509:6;21504:3;21497:19;21549:4;21544:3;21540:14;21525:29;;21487:73;;;;:::o;21566:305::-;21606:3;21625:20;21643:1;21625:20;:::i;:::-;21620:25;;21659:20;21677:1;21659:20;:::i;:::-;21654:25;;21813:1;21745:66;21741:74;21738:1;21735:81;21732:2;;;21819:18;;:::i;:::-;21732:2;21863:1;21860;21856:9;21849:16;;21610:261;;;;:::o;21877:96::-;21914:7;21943:24;21961:5;21943:24;:::i;:::-;21932:35;;21922:51;;;:::o;21979:90::-;22013:7;22056:5;22049:13;22042:21;22031:32;;22021:48;;;:::o;22075:77::-;22112:7;22141:5;22130:16;;22120:32;;;:::o;22158:149::-;22194:7;22234:66;22227:5;22223:78;22212:89;;22202:105;;;:::o;22313:126::-;22350:7;22390:42;22383:5;22379:54;22368:65;;22358:81;;;:::o;22445:77::-;22482:7;22511:5;22500:16;;22490:32;;;:::o;22528:154::-;22612:6;22607:3;22602;22589:30;22674:1;22665:6;22660:3;22656:16;22649:27;22579:103;;;:::o;22688:307::-;22756:1;22766:113;22780:6;22777:1;22774:13;22766:113;;;22865:1;22860:3;22856:11;22850:18;22846:1;22841:3;22837:11;22830:39;22802:2;22799:1;22795:10;22790:15;;22766:113;;;22897:6;22894:1;22891:13;22888:2;;;22977:1;22968:6;22963:3;22959:16;22952:27;22888:2;22737:258;;;;:::o;23001:281::-;23084:27;23106:4;23084:27;:::i;:::-;23076:6;23072:40;23214:6;23202:10;23199:22;23178:18;23166:10;23163:34;23160:62;23157:2;;;23225:18;;:::i;:::-;23157:2;23265:10;23261:2;23254:22;23044:238;;;:::o;23288:78::-;23326:7;23355:5;23344:16;;23334:32;;;:::o;23372:180::-;23420:77;23417:1;23410:88;23517:4;23514:1;23507:15;23541:4;23538:1;23531:15;23558:180;23606:77;23603:1;23596:88;23703:4;23700:1;23693:15;23727:4;23724:1;23717:15;23744:102;23785:6;23836:2;23832:7;23827:2;23820:5;23816:14;23812:28;23802:38;;23792:54;;;:::o;23852:243::-;23992:34;23988:1;23980:6;23976:14;23969:58;24061:26;24056:2;24048:6;24044:15;24037:51;23958:137;:::o;24101:242::-;24241:34;24237:1;24229:6;24225:14;24218:58;24310:25;24305:2;24297:6;24293:15;24286:50;24207:136;:::o;24349:238::-;24489:34;24485:1;24477:6;24473:14;24466:58;24558:21;24553:2;24545:6;24541:15;24534:46;24455:132;:::o;24593:293::-;24733:34;24729:1;24721:6;24717:14;24710:58;24802:34;24797:2;24789:6;24785:15;24778:59;24871:7;24866:2;24858:6;24854:15;24847:32;24699:187;:::o;24892:239::-;25032:34;25028:1;25020:6;25016:14;25009:58;25101:22;25096:2;25088:6;25084:15;25077:47;24998:133;:::o;25137:246::-;25277:34;25273:1;25265:6;25261:14;25254:58;25346:29;25341:2;25333:6;25329:15;25322:54;25243:140;:::o;25389:243::-;25529:34;25525:1;25517:6;25513:14;25506:58;25598:26;25593:2;25585:6;25581:15;25574:51;25495:137;:::o;25638:248::-;25778:34;25774:1;25766:6;25762:14;25755:58;25847:31;25842:2;25834:6;25830:15;25823:56;25744:142;:::o;25892:243::-;26032:34;26028:1;26020:6;26016:14;26009:58;26101:26;26096:2;26088:6;26084:15;26077:51;25998:137;:::o;26141:243::-;26281:34;26277:1;26269:6;26265:14;26258:58;26350:26;26345:2;26337:6;26333:15;26326:51;26247:137;:::o;26390:241::-;26530:34;26526:1;26518:6;26514:14;26507:58;26599:24;26594:2;26586:6;26582:15;26575:49;26496:135;:::o;26637:248::-;26777:34;26773:1;26765:6;26761:14;26754:58;26846:31;26841:2;26833:6;26829:15;26822:56;26743:142;:::o;26891:297::-;27031:34;27027:1;27019:6;27015:14;27008:58;27100:34;27095:2;27087:6;27083:15;27076:59;27169:11;27164:2;27156:6;27152:15;27145:36;26997:191;:::o;27194:236::-;27334:34;27330:1;27322:6;27318:14;27311:58;27403:19;27398:2;27390:6;27386:15;27379:44;27300:130;:::o;27436:122::-;27509:24;27527:5;27509:24;:::i;:::-;27502:5;27499:35;27489:2;;27548:1;27545;27538:12;27489:2;27479:79;:::o;27564:122::-;27637:24;27655:5;27637:24;:::i;:::-;27630:5;27627:35;27617:2;;27676:1;27673;27666:12;27617:2;27607:79;:::o;27692:122::-;27765:24;27783:5;27765:24;:::i;:::-;27758:5;27755:35;27745:2;;27804:1;27801;27794:12;27745:2;27735:79;:::o
Swarm Source
ipfs://33cdea37aa932d5db4cdf6531657949e9cba317b9e36c6705b8bb7e8311123e6
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.