ETH Price: $2,075.66 (-3.33%)

Contract

0x0599F087dF7900a1F806C5D149387Ee6e0a8BFCB
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Execute150950552022-07-07 10:52:001346 days ago1657191120IN
0x0599F087...6e0a8BFCB
0 ETH0.0021605813.83879304
Queue150658002022-07-02 22:37:351350 days ago1656801455IN
0x0599F087...6e0a8BFCB
0 ETH0.0022873613.68178808
Cast Vote150505832022-06-30 13:32:111352 days ago1656595931IN
0x0599F087...6e0a8BFCB
0 ETH0.0035199648.96326417
Cast Vote150472712022-06-29 22:38:301353 days ago1656542310IN
0x0599F087...6e0a8BFCB
0 ETH0.0041559757.81013617
Cast Vote150464432022-06-29 18:57:531353 days ago1656529073IN
0x0599F087...6e0a8BFCB
0 ETH0.0026120939.29315987
Cast Vote150448632022-06-29 11:43:201354 days ago1656503000IN
0x0599F087...6e0a8BFCB
0 ETH0.001780220.0045552
Execute143250802022-03-05 5:43:541470 days ago1646459034IN
0x0599F087...6e0a8BFCB
0 ETH0.0067166524.20189875
Queue143080972022-03-02 14:15:471472 days ago1646230547IN
0x0599F087...6e0a8BFCB
0 ETH0.0073556434.17224978
Cast Vote143073112022-03-02 11:30:291473 days ago1646220629IN
0x0599F087...6e0a8BFCB
0 ETH0.0026365435.30503089
Cast Vote143005872022-03-01 10:30:041474 days ago1646130604IN
0x0599F087...6e0a8BFCB
0 ETH0.0019267228.98340775
Cast Vote142986742022-03-01 3:26:391474 days ago1646105199IN
0x0599F087...6e0a8BFCB
0 ETH0.0058119480.84492123
Execute131227952021-08-29 21:28:441657 days ago1630272524IN
0x0599F087...6e0a8BFCB
0 ETH0.04447322155
Queue131098432021-08-27 21:23:481659 days ago1630099428IN
0x0599F087...6e0a8BFCB
0 ETH0.01857865111.20346773
Cast Vote130953102021-08-25 15:28:561661 days ago1629905336IN
0x0599F087...6e0a8BFCB
0 ETH0.0079079110
Cast Vote130946602021-08-25 12:51:521661 days ago1629895912IN
0x0599F087...6e0a8BFCB
0 ETH0.0063982189
Cast Vote130946522021-08-25 12:47:211661 days ago1629895641IN
0x0599F087...6e0a8BFCB
0 ETH0.0048166367

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GovernorAlpha

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/*
    Copyright 2021 Empty Set Squad <emptysetsquad@protonmail.com>

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity 0.5.17;
pragma experimental ABIEncoderV2;

/*
 * audit-info: Forked from Compound's GovernorAlpha contract:
 *             https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/GovernorAlpha.sol
 *
 *             Sections that have been changed from the original have been denoted with audit notes
 *             Additionally "Comp" has been renamed to "Stake" throughout
 */
contract GovernorAlpha {
    /*
     * audit-info: Beginning of modified code section
     */

    /// @notice The name of this contract
    string public constant name = "Empty Set Governor Alpha";

    /// @notice The number of votes in support of a proposal required in order for a quorum to be reached and for a vote to succeed
    /// @dev Initial ESDS supply will be approximately 1.6b - 2.0b depending on initial incentive programs
    function quorumVotes() public pure returns (uint) { return 100000000e18; } // 100,000,000 = ~5% of Stake

    /// @notice The number of votes required in order for a voter to become a proposer
    function proposalThreshold() public pure returns (uint) { return 10000000e18; } // 10,000,000 = ~0.5% of Stake

    /*
     * audit-info: End of modified code section
     */

    /// @notice The maximum number of actions that can be included in a proposal
    function proposalMaxOperations() public pure returns (uint) { return 10; } // 10 actions

    /// @notice The delay before voting on a proposal may take place, once proposed
    function votingDelay() public pure returns (uint) { return 1; } // 1 block

    /// @notice The duration of voting on a proposal, in blocks
    function votingPeriod() public pure returns (uint) { return 17280; } // ~3 days in blocks (assuming 15s blocks)

    /// @notice The address of the Empty Set Dollar Protocol Timelock
    TimelockInterface public timelock;

    /// @notice The address of the Empty Set Dollar governance token
    StakeInterface public stake;

    /// @notice The address of the Governor Guardian
    address public guardian;

    /// @notice The total number of proposals
    uint public proposalCount;

    struct Proposal {
        /// @notice Unique id for looking up a proposal
        uint id;

        /// @notice Creator of the proposal
        address proposer;

        /// @notice The timestamp that the proposal will be available for execution, set once the vote succeeds
        uint eta;

        /// @notice the ordered list of target addresses for calls to be made
        address[] targets;

        /// @notice The ordered list of values (i.e. msg.value) to be passed to the calls to be made
        uint[] values;

        /// @notice The ordered list of function signatures to be called
        string[] signatures;

        /// @notice The ordered list of calldata to be passed to each call
        bytes[] calldatas;

        /// @notice The block at which voting begins: holders must delegate their votes prior to this block
        uint startBlock;

        /// @notice The block at which voting ends: votes must be cast prior to this block
        uint endBlock;

        /// @notice Current number of votes in favor of this proposal
        uint forVotes;

        /// @notice Current number of votes in opposition to this proposal
        uint againstVotes;

        /// @notice Flag marking whether the proposal has been canceled
        bool canceled;

        /// @notice Flag marking whether the proposal has been executed
        bool executed;

        /// @notice Receipts of ballots for the entire set of voters
        mapping (address => Receipt) receipts;
    }

    /// @notice Ballot receipt record for a voter
    struct Receipt {
        /// @notice Whether or not a vote has been cast
        bool hasVoted;

        /// @notice Whether or not the voter supports the proposal
        bool support;

        /// @notice The number of votes the voter had, which were cast
        uint96 votes;
    }

    /// @notice Possible states that a proposal may be in
    enum ProposalState {
        Pending,
        Active,
        Canceled,
        Defeated,
        Succeeded,
        Queued,
        Expired,
        Executed
    }

    /// @notice The official record of all proposals ever proposed
    mapping (uint => Proposal) public proposals;

    /// @notice The latest proposal for each proposer
    mapping (address => uint) public latestProposalIds;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the ballot struct used by the contract
    bytes32 public constant BALLOT_TYPEHASH = keccak256("Ballot(uint256 proposalId,bool support)");

    /// @notice An event emitted when a new proposal is created
    event ProposalCreated(uint id, address proposer, address[] targets, uint[] values, string[] signatures, bytes[] calldatas, uint startBlock, uint endBlock, string description);

    /// @notice An event emitted when a vote has been cast on a proposal
    event VoteCast(address voter, uint proposalId, bool support, uint votes);

    /// @notice An event emitted when a proposal has been canceled
    event ProposalCanceled(uint id);

    /// @notice An event emitted when a proposal has been queued in the Timelock
    event ProposalQueued(uint id, uint eta);

    /// @notice An event emitted when a proposal has been executed in the Timelock
    event ProposalExecuted(uint id);

    constructor(address timelock_, address stake_, address guardian_) public {
        timelock = TimelockInterface(timelock_);
        stake = StakeInterface(stake_);
        guardian = guardian_;
    }

    function propose(address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas, string memory description) public returns (uint) {
        require(stake.getPriorVotes(msg.sender, sub256(block.number, 1)) > proposalThreshold(), "GovernorAlpha::propose: proposer votes below proposal threshold");
        require(targets.length == values.length && targets.length == signatures.length && targets.length == calldatas.length, "GovernorAlpha::propose: proposal function information arity mismatch");
        require(targets.length != 0, "GovernorAlpha::propose: must provide actions");
        require(targets.length <= proposalMaxOperations(), "GovernorAlpha::propose: too many actions");

        uint latestProposalId = latestProposalIds[msg.sender];
        if (latestProposalId != 0) {
            ProposalState proposersLatestProposalState = state(latestProposalId);
            require(proposersLatestProposalState != ProposalState.Active, "GovernorAlpha::propose: one live proposal per proposer, found an already active proposal");
            require(proposersLatestProposalState != ProposalState.Pending, "GovernorAlpha::propose: one live proposal per proposer, found an already pending proposal");
        }

        uint startBlock = add256(block.number, votingDelay());
        uint endBlock = add256(startBlock, votingPeriod());

        proposalCount++;
        Proposal memory newProposal = Proposal({
        id: proposalCount,
        proposer: msg.sender,
        eta: 0,
        targets: targets,
        values: values,
        signatures: signatures,
        calldatas: calldatas,
        startBlock: startBlock,
        endBlock: endBlock,
        forVotes: 0,
        againstVotes: 0,
        canceled: false,
        executed: false
        });

        proposals[newProposal.id] = newProposal;
        latestProposalIds[newProposal.proposer] = newProposal.id;

        emit ProposalCreated(newProposal.id, msg.sender, targets, values, signatures, calldatas, startBlock, endBlock, description);
        return newProposal.id;
    }

    function queue(uint proposalId) public {
        require(state(proposalId) == ProposalState.Succeeded, "GovernorAlpha::queue: proposal can only be queued if it is succeeded");
        Proposal storage proposal = proposals[proposalId];
        uint eta = add256(block.timestamp, timelock.delay());
        for (uint i = 0; i < proposal.targets.length; i++) {
            _queueOrRevert(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], eta);
        }
        proposal.eta = eta;
        emit ProposalQueued(proposalId, eta);
    }

    function _queueOrRevert(address target, uint value, string memory signature, bytes memory data, uint eta) internal {
        require(!timelock.queuedTransactions(keccak256(abi.encode(target, value, signature, data, eta))), "GovernorAlpha::_queueOrRevert: proposal action already queued at eta");
        timelock.queueTransaction(target, value, signature, data, eta);
    }

    function execute(uint proposalId) public payable {
        require(state(proposalId) == ProposalState.Queued, "GovernorAlpha::execute: proposal can only be executed if it is queued");
        Proposal storage proposal = proposals[proposalId];
        proposal.executed = true;
        for (uint i = 0; i < proposal.targets.length; i++) {
            timelock.executeTransaction.value(proposal.values[i])(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta);
        }
        emit ProposalExecuted(proposalId);
    }

    function cancel(uint proposalId) public {
        ProposalState state = state(proposalId);
        require(state != ProposalState.Executed, "GovernorAlpha::cancel: cannot cancel executed proposal");

        Proposal storage proposal = proposals[proposalId];
        require(msg.sender == guardian || stake.getPriorVotes(proposal.proposer, sub256(block.number, 1)) < proposalThreshold(), "GovernorAlpha::cancel: proposer above threshold");

        proposal.canceled = true;
        for (uint i = 0; i < proposal.targets.length; i++) {
            timelock.cancelTransaction(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta);
        }

        emit ProposalCanceled(proposalId);
    }

    function getActions(uint proposalId) public view returns (address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas) {
        Proposal storage p = proposals[proposalId];
        return (p.targets, p.values, p.signatures, p.calldatas);
    }

    function getReceipt(uint proposalId, address voter) public view returns (Receipt memory) {
        return proposals[proposalId].receipts[voter];
    }

    function state(uint proposalId) public view returns (ProposalState) {
        require(proposalCount >= proposalId && proposalId > 0, "GovernorAlpha::state: invalid proposal id");
        Proposal storage proposal = proposals[proposalId];
        if (proposal.canceled) {
            return ProposalState.Canceled;
        } else if (block.number <= proposal.startBlock) {
            return ProposalState.Pending;
        } else if (block.number <= proposal.endBlock) {
            return ProposalState.Active;
        } else if (proposal.forVotes <= proposal.againstVotes || proposal.forVotes < quorumVotes()) {
            return ProposalState.Defeated;
        } else if (proposal.eta == 0) {
            return ProposalState.Succeeded;
        } else if (proposal.executed) {
            return ProposalState.Executed;
        } else if (block.timestamp >= add256(proposal.eta, timelock.GRACE_PERIOD())) {
            return ProposalState.Expired;
        } else {
            return ProposalState.Queued;
        }
    }

    function castVote(uint proposalId, bool support) public {
        return _castVote(msg.sender, proposalId, support);
    }

    function castVoteBySig(uint proposalId, bool support, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(BALLOT_TYPEHASH, proposalId, support));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "GovernorAlpha::castVoteBySig: invalid signature");
        return _castVote(signatory, proposalId, support);
    }

    function _castVote(address voter, uint proposalId, bool support) internal {
        require(state(proposalId) == ProposalState.Active, "GovernorAlpha::_castVote: voting is closed");
        Proposal storage proposal = proposals[proposalId];
        Receipt storage receipt = proposal.receipts[voter];
        require(receipt.hasVoted == false, "GovernorAlpha::_castVote: voter already voted");
        uint96 votes = stake.getPriorVotes(voter, proposal.startBlock);

        if (support) {
            proposal.forVotes = add256(proposal.forVotes, votes);
        } else {
            proposal.againstVotes = add256(proposal.againstVotes, votes);
        }

        receipt.hasVoted = true;
        receipt.support = support;
        receipt.votes = votes;

        emit VoteCast(voter, proposalId, support, votes);
    }

    function __acceptAdmin() public {
        require(msg.sender == guardian, "GovernorAlpha::__acceptAdmin: sender must be gov guardian");
        timelock.acceptAdmin();
    }

    function __abdicate() public {
        require(msg.sender == guardian, "GovernorAlpha::__abdicate: sender must be gov guardian");
        guardian = address(0);
    }

    function __queueSetTimelockPendingAdmin(address newPendingAdmin, uint eta) public {
        require(msg.sender == guardian, "GovernorAlpha::__queueSetTimelockPendingAdmin: sender must be gov guardian");
        timelock.queueTransaction(address(timelock), 0, "setPendingAdmin(address)", abi.encode(newPendingAdmin), eta);
    }

    function __executeSetTimelockPendingAdmin(address newPendingAdmin, uint eta) public {
        require(msg.sender == guardian, "GovernorAlpha::__executeSetTimelockPendingAdmin: sender must be gov guardian");
        timelock.executeTransaction(address(timelock), 0, "setPendingAdmin(address)", abi.encode(newPendingAdmin), eta);
    }

    function add256(uint256 a, uint256 b) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, "addition overflow");
        return c;
    }

    function sub256(uint256 a, uint256 b) internal pure returns (uint) {
        require(b <= a, "subtraction underflow");
        return a - b;
    }

    function getChainId() internal pure returns (uint) {
        uint chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

interface TimelockInterface {
    function delay() external view returns (uint);
    function GRACE_PERIOD() external view returns (uint);
    function acceptAdmin() external;
    function queuedTransactions(bytes32 hash) external view returns (bool);
    function queueTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external returns (bytes32);
    function cancelTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external;
    function executeTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external payable returns (bytes memory);
}

interface StakeInterface {
    function getPriorVotes(address account, uint blockNumber) external view returns (uint96);
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"timelock_","type":"address"},{"internalType":"address","name":"stake_","type":"address"},{"internalType":"address","name":"guardian_","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"startBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endBlock","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"support","type":"bool"},{"indexed":false,"internalType":"uint256","name":"votes","type":"uint256"}],"name":"VoteCast","type":"event"},{"constant":true,"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"__abdicate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"__acceptAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newPendingAdmin","type":"address"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"__executeSetTimelockPendingAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newPendingAdmin","type":"address"},{"internalType":"uint256","name":"eta","type":"uint256"}],"name":"__queueSetTimelockPendingAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"bool","name":"support","type":"bool"}],"name":"castVote","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"bool","name":"support","type":"bool"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"castVoteBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"execute","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"getActions","outputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"string[]","name":"signatures","type":"string[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"voter","type":"address"}],"name":"getReceipt","outputs":[{"components":[{"internalType":"bool","name":"hasVoted","type":"bool"},{"internalType":"bool","name":"support","type":"bool"},{"internalType":"uint96","name":"votes","type":"uint96"}],"internalType":"struct GovernorAlpha.Receipt","name":"","type":"tuple"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"guardian","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"latestProposalIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"proposalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"proposalMaxOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposals","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"eta","type":"uint256"},{"internalType":"uint256","name":"startBlock","type":"uint256"},{"internalType":"uint256","name":"endBlock","type":"uint256"},{"internalType":"uint256","name":"forVotes","type":"uint256"},{"internalType":"uint256","name":"againstVotes","type":"uint256"},{"internalType":"bool","name":"canceled","type":"bool"},{"internalType":"bool","name":"executed","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"string[]","name":"signatures","type":"string[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"queue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"quorumVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"stake","outputs":[{"internalType":"contract StakeInterface","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum GovernorAlpha.ProposalState","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"timelock","outputs":[{"internalType":"contract TimelockInterface","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"}]

60806040523480156200001157600080fd5b50604051620039213803806200392183398101604081905262000034916200008a565b600080546001600160a01b039485166001600160a01b0319918216179091556001805493851693821693909317909255600280549190931691161790556200010a565b80516200008481620000f0565b92915050565b600080600060608486031215620000a057600080fd5b6000620000ae868662000077565b9350506020620000c18682870162000077565b9250506040620000d48682870162000077565b9150509250925092565b60006001600160a01b03821662000084565b620000fb81620000de565b81146200010757600080fd5b50565b613807806200011a6000396000f3fe60806040526004361061019c5760003560e01c8063452a9320116100ec578063d33219b41161008a578063ddf0b00911610064578063ddf0b00914610463578063deaaa7cc14610483578063e23a9a5214610498578063fe0d94c1146104c55761019c565b8063d33219b414610419578063da35c6641461042e578063da95691a146104435761019c565b80637bdbe4d0116100c65780637bdbe4d0146103ba57806391500671146103cf578063b58131b0146103ef578063b9a61961146104045761019c565b8063452a9320146103635780634634c61f14610385578063760fbc13146103a55761019c565b806321f43e42116101595780633932abb1116101335780633932abb1146102df5780633a4b66f1146102f45780633e4f49e61461031657806340e58ee5146103435761019c565b806321f43e421461027a57806324bc1a641461029a578063328dd982146102af5761019c565b8063013cf08b146101a157806302a251a3146101df57806306fdde031461020157806315373e3d1461022357806317977c611461024557806320606b7014610265575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461244d565b6104d8565b6040516101d6999897969594939291906135b2565b60405180910390f35b3480156101eb57600080fd5b506101f4610531565b6040516101d691906132df565b34801561020d57600080fd5b50610216610538565b6040516101d6919061339b565b34801561022f57600080fd5b5061024361023e36600461249b565b61056c565b005b34801561025157600080fd5b506101f4610260366004612290565b61057b565b34801561027157600080fd5b506101f461058d565b34801561028657600080fd5b506102436102953660046122b6565b6105a4565b3480156102a657600080fd5b506101f461068b565b3480156102bb57600080fd5b506102cf6102ca36600461244d565b61069a565b6040516101d69493929190613292565b3480156102eb57600080fd5b506101f4610929565b34801561030057600080fd5b5061030961092e565b6040516101d6919061337f565b34801561032257600080fd5b5061033661033136600461244d565b61093d565b6040516101d6919061338d565b34801561034f57600080fd5b5061024361035e36600461244d565b610abf565b34801561036f57600080fd5b50610378610d28565b6040516101d6919061313c565b34801561039157600080fd5b506102436103a03660046124cb565b610d37565b3480156103b157600080fd5b50610243610ecf565b3480156103c657600080fd5b506101f4610f0b565b3480156103db57600080fd5b506102436103ea3660046122b6565b610f10565b3480156103fb57600080fd5b506101f4610fe5565b34801561041057600080fd5b50610243610ff4565b34801561042557600080fd5b50610309611079565b34801561043a57600080fd5b506101f4611088565b34801561044f57600080fd5b506101f461045e3660046122f0565b61108e565b34801561046f57600080fd5b5061024361047e36600461244d565b6114b0565b34801561048f57600080fd5b506101f461171a565b3480156104a457600080fd5b506104b86104b336600461246b565b611726565b6040516101d691906134fc565b6102436104d336600461244d565b611795565b6004602052600090815260409020805460018201546002830154600784015460088501546009860154600a870154600b9097015495966001600160a01b0390951695939492939192909160ff8082169161010090041689565b6143805b90565b60405180604001604052806018815260200177456d7074792053657420476f7665726e6f7220416c70686160401b81525081565b61057733838361195a565b5050565b60056020526000908152604090205481565b60405161059990613126565b604051809103902081565b6002546001600160a01b031633146105d75760405162461bcd60e51b81526004016105ce906133dc565b60405180910390fd5b600080546040516001600160a01b0390911691630825f38f9183919061060190879060200161313c565b604051602081830303815290604052856040518563ffffffff1660e01b81526004016106309493929190613165565b600060405180830381600087803b15801561064a57600080fd5b505af115801561065e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106869190810190612418565b505050565b6a52b7d2dcc80cd2e400000090565b6060806060806000600460008781526020019081526020016000209050806003018160040182600501836006018380548060200260200160405190810160405280929190818152602001828054801561071c57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116106fe575b505050505093508280548060200260200160405190810160405280929190818152602001828054801561076e57602002820191906000526020600020905b81548152602001906001019080831161075a575b5050505050925081805480602002602001604051908101604052809291908181526020016000905b828210156108415760008481526020908190208301805460408051601f600260001961010060018716150201909416939093049283018590048502810185019091528181529283018282801561082d5780601f106108025761010080835404028352916020019161082d565b820191906000526020600020905b81548152906001019060200180831161081057829003601f168201915b505050505081526020019060010190610796565b50505050915080805480602002602001604051908101604052809291908181526020016000905b828210156109135760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b505050505081526020019060010190610868565b5050505090509450945094509450509193509193565b600190565b6001546001600160a01b031681565b600081600354101580156109515750600082115b61096d5760405162461bcd60e51b81526004016105ce906133ec565b6000828152600460205260409020600b81015460ff1615610992576002915050610aba565b806007015443116109a7576000915050610aba565b806008015443116109bc576001915050610aba565b80600a015481600901541115806109dd57506109d661068b565b8160090154105b156109ec576003915050610aba565b60028101546109ff576004915050610aba565b600b810154610100900460ff1615610a1b576007915050610aba565b6002810154600054604080516360d143f160e11b81529051610aa493926001600160a01b03169163c1a287e2916004808301926020929190829003018186803b158015610a6757600080fd5b505afa158015610a7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a9f91908101906123fa565b611b23565b4210610ab4576006915050610aba565b60059150505b919050565b6000610aca8261093d565b90506007816007811115610ada57fe5b1415610af85760405162461bcd60e51b81526004016105ce906134bc565b60008281526004602052604090206002546001600160a01b0316331480610bc35750610b22610fe5565b60018054838201546001600160a01b039182169263782d6fe19290911690610b4b904390611b4f565b6040518363ffffffff1660e01b8152600401610b689291906131b4565b60206040518083038186803b158015610b8057600080fd5b505afa158015610b94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610bb89190810190612533565b6001600160601b0316105b610bdf5760405162461bcd60e51b81526004016105ce9061345c565b600b8101805460ff1916600117905560005b6003820154811015610ceb576000546003830180546001600160a01b039092169163591fcdfe919084908110610c2357fe5b6000918252602090912001546004850180546001600160a01b039092169185908110610c4b57fe5b9060005260206000200154856005018581548110610c6557fe5b90600052602060002001866006018681548110610c7e57fe5b9060005260206000200187600201546040518663ffffffff1660e01b8152600401610cad959493929190613251565b600060405180830381600087803b158015610cc757600080fd5b505af1158015610cdb573d6000803e3d6000fd5b505060019092019150610bf19050565b507f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c83604051610d1b91906132df565b60405180910390a1505050565b6002546001600160a01b031681565b6000604051610d4590613126565b604080519182900382208282019091526018825277456d7074792053657420476f7665726e6f7220416c70686160401b6020909201919091527fc8c7cdd5af5eea5a174c290055ed8b6db2bf1bb0fa604ed68de0480544c02a11610da7611b77565b30604051602001610dbb94939291906132ed565b6040516020818303038152906040528051906020012090506000604051610de190613131565b604051908190038120610dfa9189908990602001613322565b60405160208183030381529060405280519060200120905060008282604051602001610e279291906130f5565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610e64949392919061334a565b6020604051602081039080840390855afa158015610e86573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610eb95760405162461bcd60e51b81526004016105ce9061349c565b610ec4818a8a61195a565b505050505050505050565b6002546001600160a01b03163314610ef95760405162461bcd60e51b81526004016105ce906134ec565b600280546001600160a01b0319169055565b600a90565b6002546001600160a01b03163314610f3a5760405162461bcd60e51b81526004016105ce9061341c565b600080546040516001600160a01b0390911691633a66f90191839190610f6490879060200161313c565b604051602081830303815290604052856040518563ffffffff1660e01b8152600401610f939493929190613165565b602060405180830381600087803b158015610fad57600080fd5b505af1158015610fc1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061068691908101906123fa565b6a084595161401484a00000090565b6002546001600160a01b0316331461101e5760405162461bcd60e51b81526004016105ce906133ac565b6000805460408051630e18b68160e01b815290516001600160a01b0390921692630e18b6819260048084019382900301818387803b15801561105f57600080fd5b505af1158015611073573d6000803e3d6000fd5b50505050565b6000546001600160a01b031681565b60035481565b6000611098610fe5565b600180546001600160a01b03169063782d6fe19033906110b9904390611b4f565b6040518363ffffffff1660e01b81526004016110d692919061314a565b60206040518083038186803b1580156110ee57600080fd5b505afa158015611102573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506111269190810190612533565b6001600160601b03161161114c5760405162461bcd60e51b81526004016105ce9061348c565b8451865114801561115e575083518651145b801561116b575082518651145b6111875760405162461bcd60e51b81526004016105ce9061344c565b85516111a55760405162461bcd60e51b81526004016105ce9061347c565b6111ad610f0b565b865111156111cd5760405162461bcd60e51b81526004016105ce9061342c565b33600090815260056020526040902054801561124a5760006111ee8261093d565b905060018160078111156111fe57fe5b141561121c5760405162461bcd60e51b81526004016105ce906134ac565b600081600781111561122a57fe5b14156112485760405162461bcd60e51b81526004016105ce9061340c565b505b600061125843610a9f610929565b9050600061126882610a9f610531565b600380546001019055905061127b611cda565b604051806101a001604052806003548152602001336001600160a01b03168152602001600081526020018b81526020018a815260200189815260200188815260200184815260200183815260200160008152602001600081526020016000151581526020016000151581525090508060046000836000015181526020019081526020016000206000820151816000015560208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020155606082015181600301908051906020019061135e929190611d4f565b506080820151805161137a916004840191602090910190611db4565b5060a08201518051611396916005840191602090910190611dfb565b5060c082015180516113b2916006840191602090910190611e54565b5060e082015181600701556101008201518160080155610120820151816009015561014082015181600a015561016082015181600b0160006101000a81548160ff02191690831515021790555061018082015181600b0160016101000a81548160ff02191690831515021790555090505080600001516005600083602001516001600160a01b03166001600160a01b03168152602001908152602001600020819055507f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e08160000151338c8c8c8c89898e6040516114989998979695949392919061350a565b60405180910390a15193505050505b95945050505050565b60046114bb8261093d565b60078111156114c657fe5b146114e35760405162461bcd60e51b81526004016105ce906133bc565b600081815260046020818152604080842084548251630d48571f60e31b815292519195946115389442946001600160a01b0390931693636a42b8f8938084019390829003018186803b158015610a6757600080fd5b905060005b60038301548110156116e0576116d883600301828154811061155b57fe5b6000918252602090912001546004850180546001600160a01b03909216918490811061158357fe5b906000526020600020015485600501848154811061159d57fe5b600091825260209182902001805460408051601f600260001961010060018716150201909416939093049283018590048502810185019091528181529283018282801561162b5780601f106116005761010080835404028352916020019161162b565b820191906000526020600020905b81548152906001019060200180831161160e57829003601f168201915b505050505086600601858154811061163f57fe5b600091825260209182902001805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156116cd5780601f106116a2576101008083540402835291602001916116cd565b820191906000526020600020905b8154815290600101906020018083116116b057829003601f168201915b505050505086611b7b565b60010161153d565b50600282018190556040517f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda289290610d1b9085908490613638565b60405161059990613131565b61172e611ead565b5060008281526004602090815260408083206001600160a01b0385168452600c018252918290208251606081018452905460ff80821615158352610100820416151592820192909252620100009091046001600160601b0316918101919091525b92915050565b60056117a08261093d565b60078111156117ab57fe5b146117c85760405162461bcd60e51b81526004016105ce906133cc565b6000818152600460205260408120600b8101805461ff001916610100179055905b600382015481101561191e576000546004830180546001600160a01b0390921691630825f38f91908490811061181b57fe5b906000526020600020015484600301848154811061183557fe5b6000918252602090912001546004860180546001600160a01b03909216918690811061185d57fe5b906000526020600020015486600501868154811061187757fe5b9060005260206000200187600601878154811061189057fe5b9060005260206000200188600201546040518763ffffffff1660e01b81526004016118bf959493929190613251565b6000604051808303818588803b1580156118d857600080fd5b505af11580156118ec573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526119159190810190612418565b506001016117e9565b507f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f8260405161194e91906132df565b60405180910390a15050565b60016119658361093d565b600781111561197057fe5b1461198d5760405162461bcd60e51b81526004016105ce906134cc565b60008281526004602090815260408083206001600160a01b0387168452600c8101909252909120805460ff16156119d65760405162461bcd60e51b81526004016105ce906133fc565b600154600783015460405163782d6fe160e01b81526000926001600160a01b03169163782d6fe191611a0c918a916004016131b4565b60206040518083038186803b158015611a2457600080fd5b505afa158015611a38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611a5c9190810190612533565b90508315611a8557611a7b8360090154826001600160601b0316611b23565b6009840155611aa2565b611a9c83600a0154826001600160601b0316611b23565b600a8401555b8154600160ff199091161761ff00191661010085151502176dffffffffffffffffffffffff00001916620100006001600160601b038316021782556040517f877856338e13f63d0c36822ff0ef736b80934cd90574a3a5bc9262c39d217c4690611b139088908890889086906131c2565b60405180910390a1505050505050565b600082820183811015611b485760405162461bcd60e51b81526004016105ce9061343c565b9392505050565b600082821115611b715760405162461bcd60e51b81526004016105ce906134dc565b50900390565b4690565b6000546040516001600160a01b039091169063f2b0653790611ba990889088908890889088906020016131f7565b604051602081830303815290604052805190602001206040518263ffffffff1660e01b8152600401611bdb91906132df565b60206040518083038186803b158015611bf357600080fd5b505afa158015611c07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611c2b91908101906123dc565b15611c485760405162461bcd60e51b81526004016105ce9061346c565b600054604051633a66f90160e01b81526001600160a01b0390911690633a66f90190611c8090889088908890889088906004016131f7565b602060405180830381600087803b158015611c9a57600080fd5b505af1158015611cae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611cd291908101906123fa565b505050505050565b604051806101a001604052806000815260200160006001600160a01b031681526020016000815260200160608152602001606081526020016060815260200160608152602001600081526020016000815260200160008152602001600081526020016000151581526020016000151581525090565b828054828255906000526020600020908101928215611da4579160200282015b82811115611da457825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611d6f565b50611db0929150611ecd565b5090565b828054828255906000526020600020908101928215611def579160200282015b82811115611def578251825591602001919060010190611dd4565b50611db0929150611ef1565b828054828255906000526020600020908101928215611e48579160200282015b82811115611e485782518051611e38918491602090910190611f0b565b5091602001919060010190611e1b565b50611db0929150611f78565b828054828255906000526020600020908101928215611ea1579160200282015b82811115611ea15782518051611e91918491602090910190611f0b565b5091602001919060010190611e74565b50611db0929150611f9b565b604080516060810182526000808252602082018190529181019190915290565b61053591905b80821115611db05780546001600160a01b0319168155600101611ed3565b61053591905b80821115611db05760008155600101611ef7565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611f4c57805160ff1916838001178555611def565b82800160010185558215611def5791820182811115611def578251825591602001919060010190611dd4565b61053591905b80821115611db0576000611f928282611fbe565b50600101611f7e565b61053591905b80821115611db0576000611fb58282611fbe565b50600101611fa1565b50805460018160011615610100020316600290046000825580601f10611fe45750612002565b601f0160209004906000526020600020908101906120029190611ef1565b50565b803561178f8161378c565b600082601f83011261202157600080fd5b813561203461202f8261366d565b613646565b9150818183526020840193506020810190508385602084028201111561205957600080fd5b60005b83811015612085578161206f8882612005565b845250602092830192919091019060010161205c565b5050505092915050565b600082601f8301126120a057600080fd5b81356120ae61202f8261366d565b81815260209384019390925082018360005b8381101561208557813586016120d688826121e5565b84525060209283019291909101906001016120c0565b600082601f8301126120fd57600080fd5b813561210b61202f8261366d565b81815260209384019390925082018360005b83811015612085578135860161213388826121e5565b845250602092830192919091019060010161211d565b600082601f83011261215a57600080fd5b813561216861202f8261366d565b9150818183526020840193506020810190508385602084028201111561218d57600080fd5b60005b8381101561208557816121a388826121cf565b8452506020928301929190910190600101612190565b803561178f816137a0565b805161178f816137a0565b803561178f816137a9565b805161178f816137a9565b600082601f8301126121f657600080fd5b813561220461202f8261368e565b9150808252602083016020830185838301111561222057600080fd5b61222b838284613740565b50505092915050565b600082601f83011261224557600080fd5b815161225361202f8261368e565b9150808252602083016020830185838301111561226f57600080fd5b61222b83828461374c565b803561178f816137b2565b805161178f816137bb565b6000602082840312156122a257600080fd5b60006122ae8484612005565b949350505050565b600080604083850312156122c957600080fd5b60006122d58585612005565b92505060206122e6858286016121cf565b9150509250929050565b600080600080600060a0868803121561230857600080fd5b853567ffffffffffffffff81111561231f57600080fd5b61232b88828901612010565b955050602086013567ffffffffffffffff81111561234857600080fd5b61235488828901612149565b945050604086013567ffffffffffffffff81111561237157600080fd5b61237d888289016120ec565b935050606086013567ffffffffffffffff81111561239a57600080fd5b6123a68882890161208f565b925050608086013567ffffffffffffffff8111156123c357600080fd5b6123cf888289016121e5565b9150509295509295909350565b6000602082840312156123ee57600080fd5b60006122ae84846121c4565b60006020828403121561240c57600080fd5b60006122ae84846121da565b60006020828403121561242a57600080fd5b815167ffffffffffffffff81111561244157600080fd5b6122ae84828501612234565b60006020828403121561245f57600080fd5b60006122ae84846121cf565b6000806040838503121561247e57600080fd5b600061248a85856121cf565b92505060206122e685828601612005565b600080604083850312156124ae57600080fd5b60006124ba85856121cf565b92505060206122e6858286016121b9565b600080600080600060a086880312156124e357600080fd5b60006124ef88886121cf565b9550506020612500888289016121b9565b94505060406125118882890161227a565b9350506060612522888289016121cf565b92505060806123cf888289016121cf565b60006020828403121561254557600080fd5b60006122ae8484612285565b600061255d838361258c565b505060200190565b6000611b48838361272e565b600061255d8383612714565b6125868161370d565b82525050565b612586816136d5565b60006125a0826136c8565b6125aa81856136cc565b93506125b5836136b6565b8060005b838110156125e35781516125cd8882612551565b97506125d8836136b6565b9250506001016125b9565b509495945050505050565b60006125f9826136c8565b61260381856136cc565b935083602082028501612615856136b6565b8060005b8581101561264f57848403895281516126328582612565565b945061263d836136b6565b60209a909a0199925050600101612619565b5091979650505050505050565b6000612667826136c8565b61267181856136cc565b935083602082028501612683856136b6565b8060005b8581101561264f57848403895281516126a08582612565565b94506126ab836136b6565b60209a909a0199925050600101612687565b60006126c8826136c8565b6126d281856136cc565b93506126dd836136b6565b8060005b838110156125e35781516126f58882612571565b9750612700836136b6565b9250506001016126e1565b612586816136e0565b61258681610535565b61258661272982610535565b610535565b6000612739826136c8565b61274381856136cc565b935061275381856020860161374c565b61275c81613778565b9093019392505050565b60008154600181166000811461278357600181146127a9576127e8565b607f600283041661279481876136cc565b60ff19841681529550506020850192506127e8565b600282046127b781876136cc565b95506127c2856136bc565b60005b828110156127e1578154888201526001909101906020016127c5565b8701945050505b505092915050565b61258681613714565b6125868161371f565b6125868161372a565b60006128186039836136cc565b7f476f7665726e6f72416c7068613a3a5f5f61636365707441646d696e3a20736581527f6e646572206d75737420626520676f7620677561726469616e00000000000000602082015260400192915050565b60006128776044836136cc565b7f476f7665726e6f72416c7068613a3a71756575653a2070726f706f73616c206381527f616e206f6e6c79206265207175657565642069662069742069732073756363656020820152631959195960e21b604082015260600192915050565b60006128e36045836136cc565b7f476f7665726e6f72416c7068613a3a657865637574653a2070726f706f73616c81527f2063616e206f6e6c7920626520657865637574656420696620697420697320716020820152641d595d595960da1b604082015260600192915050565b6000612950600283610aba565b61190160f01b815260020192915050565b600061296e604c836136cc565b7f476f7665726e6f72416c7068613a3a5f5f6578656375746553657454696d656c81527f6f636b50656e64696e6741646d696e3a2073656e646572206d7573742062652060208201526b33b7bb1033bab0b93234b0b760a11b604082015260600192915050565b60006129e26018836136cc565b7f73657450656e64696e6741646d696e2861646472657373290000000000000000815260200192915050565b6000612a1b6029836136cc565b7f476f7665726e6f72416c7068613a3a73746174653a20696e76616c69642070728152681bdc1bdcd85b081a5960ba1b602082015260400192915050565b6000612a66602d836136cc565b7f476f7665726e6f72416c7068613a3a5f63617374566f74653a20766f7465722081526c185b1c9958591e481d9bdd1959609a1b602082015260400192915050565b6000612ab56059836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206f6e65206c69766581527f2070726f706f73616c207065722070726f706f7365722c20666f756e6420616e60208201527f20616c72656164792070656e64696e672070726f706f73616c00000000000000604082015260600192915050565b6000612b3a604a836136cc565b7f476f7665726e6f72416c7068613a3a5f5f717565756553657454696d656c6f6381527f6b50656e64696e6741646d696e3a2073656e646572206d75737420626520676f6020820152693b1033bab0b93234b0b760b11b604082015260600192915050565b6000612bac6028836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a20746f6f206d616e7981526720616374696f6e7360c01b602082015260400192915050565b6000612bf66011836136cc565b706164646974696f6e206f766572666c6f7760781b815260200192915050565b6000612c23604383610aba565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000612c8e602783610aba565b7f42616c6c6f742875696e743235362070726f706f73616c49642c626f6f6c20738152667570706f72742960c81b602082015260270192915050565b6000612cd76044836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a2070726f706f73616c81527f2066756e6374696f6e20696e666f726d6174696f6e206172697479206d69736d6020820152630c2e8c6d60e31b604082015260600192915050565b6000612d43602f836136cc565b7f476f7665726e6f72416c7068613a3a63616e63656c3a2070726f706f7365722081526e18589bdd99481d1a1c995cda1bdb19608a1b602082015260400192915050565b6000612d946044836136cc565b7f476f7665726e6f72416c7068613a3a5f71756575654f725265766572743a207081527f726f706f73616c20616374696f6e20616c7265616479207175657565642061746020820152632065746160e01b604082015260600192915050565b6000612e00602c836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206d7573742070726f81526b7669646520616374696f6e7360a01b602082015260400192915050565b6000612e4e603f836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a2070726f706f73657281527f20766f7465732062656c6f772070726f706f73616c207468726573686f6c6400602082015260400192915050565b6000612ead602f836136cc565b7f476f7665726e6f72416c7068613a3a63617374566f746542795369673a20696e81526e76616c6964207369676e617475726560881b602082015260400192915050565b6000612efe6058836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206f6e65206c69766581527f2070726f706f73616c207065722070726f706f7365722c20666f756e6420616e60208201527f20616c7265616479206163746976652070726f706f73616c0000000000000000604082015260600192915050565b6000612f836036836136cc565b7f476f7665726e6f72416c7068613a3a63616e63656c3a2063616e6e6f742063618152751b98d95b08195e1958dd5d1959081c1c9bdc1bdcd85b60521b602082015260400192915050565b6000612fdb602a836136cc565b7f476f7665726e6f72416c7068613a3a5f63617374566f74653a20766f74696e67815269081a5cc818db1bdcd95960b21b602082015260400192915050565b60006130276015836136cc565b747375627472616374696f6e20756e646572666c6f7760581b815260200192915050565b60006130586036836136cc565b7f476f7665726e6f72416c7068613a3a5f5f61626469636174653a2073656e6465815275391036bab9ba1031329033b7bb1033bab0b93234b0b760511b602082015260400192915050565b805160608301906130b4848261270b565b5060208201516130c7602085018261270b565b50604082015161107360408501826130ec565b612586816136fb565b61258681613735565b61258681613701565b600061310082612943565b915061310c828561271d565b60208201915061311c828461271d565b5060200192915050565b600061178f82612c16565b600061178f82612c81565b6020810161178f828461258c565b60408101613158828561257d565b611b486020830184612714565b60a08101613173828761258c565b6131806020830186612802565b8181036040830152613191816129d5565b905081810360608301526131a5818561272e565b90506114a76080830184612714565b60408101613158828561258c565b608081016131d0828761258c565b6131dd6020830186612714565b6131ea604083018561270b565b6114a760608301846130e3565b60a08101613205828861258c565b6132126020830187612714565b8181036040830152613224818661272e565b90508181036060830152613238818561272e565b90506132476080830184612714565b9695505050505050565b60a0810161325f828861258c565b61326c6020830187612714565b818103604083015261327e8186612766565b905081810360608301526132388185612766565b608080825281016132a38187612595565b905081810360208301526132b781866126bd565b905081810360408301526132cb818561265c565b9050818103606083015261324781846125ee565b6020810161178f8284612714565b608081016132fb8287612714565b6133086020830186612714565b6133156040830185612714565b6114a7606083018461258c565b606081016133308286612714565b61333d6020830185612714565b6122ae604083018461270b565b608081016133588287612714565b61336560208301866130da565b6133726040830185612714565b6114a76060830184612714565b6020810161178f82846127f0565b6020810161178f82846127f9565b60208082528101611b48818461272e565b6020808252810161178f8161280b565b6020808252810161178f8161286a565b6020808252810161178f816128d6565b6020808252810161178f81612961565b6020808252810161178f81612a0e565b6020808252810161178f81612a59565b6020808252810161178f81612aa8565b6020808252810161178f81612b2d565b6020808252810161178f81612b9f565b6020808252810161178f81612be9565b6020808252810161178f81612cca565b6020808252810161178f81612d36565b6020808252810161178f81612d87565b6020808252810161178f81612df3565b6020808252810161178f81612e41565b6020808252810161178f81612ea0565b6020808252810161178f81612ef1565b6020808252810161178f81612f76565b6020808252810161178f81612fce565b6020808252810161178f8161301a565b6020808252810161178f8161304b565b6060810161178f82846130a3565b6101208101613519828c612714565b613526602083018b61257d565b8181036040830152613538818a612595565b9050818103606083015261354c81896126bd565b90508181036080830152613560818861265c565b905081810360a083015261357481876125ee565b905061358360c0830186612714565b61359060e0830185612714565b8181036101008301526135a3818461272e565b9b9a5050505050505050505050565b61012081016135c1828c612714565b6135ce602083018b61258c565b6135db604083018a612714565b6135e86060830189612714565b6135f56080830188612714565b61360260a0830187612714565b61360f60c0830186612714565b61361c60e083018561270b565b61362a61010083018461270b565b9a9950505050505050505050565b604081016131588285612714565b60405181810167ffffffffffffffff8111828210171561366557600080fd5b604052919050565b600067ffffffffffffffff82111561368457600080fd5b5060209081020190565b600067ffffffffffffffff8211156136a557600080fd5b506020601f91909101601f19160190565b60200190565b60009081526020902090565b5190565b90815260200190565b600061178f826136ef565b151590565b80610aba81613782565b6001600160a01b031690565b60ff1690565b6001600160601b031690565b600061178f825b600061178f826136d5565b600061178f826136e5565b600061178f82610535565b600061178f82613701565b82818337506000910152565b60005b8381101561376757818101518382015260200161374f565b838111156110735750506000910152565b601f01601f191690565b6008811061200257fe5b613795816136d5565b811461200257600080fd5b613795816136e0565b61379581610535565b613795816136fb565b6137958161370156fea365627a7a72315820edbf28e120aad0cfaafe0fe5aa76c06caff60bf9108f1e14623d087a6a28f3346c6578706572696d656e74616cf564736f6c634300051100400000000000000000000000001bba92f379375387bf8f927058da14d47464cb7a00000000000000000000000024ae124c4cc33d6791f8e8b63520ed7107ac8b3e000000000000000000000000460661bd4a5364a3abcc9cfc4a8ce7038d05ea22

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063452a9320116100ec578063d33219b41161008a578063ddf0b00911610064578063ddf0b00914610463578063deaaa7cc14610483578063e23a9a5214610498578063fe0d94c1146104c55761019c565b8063d33219b414610419578063da35c6641461042e578063da95691a146104435761019c565b80637bdbe4d0116100c65780637bdbe4d0146103ba57806391500671146103cf578063b58131b0146103ef578063b9a61961146104045761019c565b8063452a9320146103635780634634c61f14610385578063760fbc13146103a55761019c565b806321f43e42116101595780633932abb1116101335780633932abb1146102df5780633a4b66f1146102f45780633e4f49e61461031657806340e58ee5146103435761019c565b806321f43e421461027a57806324bc1a641461029a578063328dd982146102af5761019c565b8063013cf08b146101a157806302a251a3146101df57806306fdde031461020157806315373e3d1461022357806317977c611461024557806320606b7014610265575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461244d565b6104d8565b6040516101d6999897969594939291906135b2565b60405180910390f35b3480156101eb57600080fd5b506101f4610531565b6040516101d691906132df565b34801561020d57600080fd5b50610216610538565b6040516101d6919061339b565b34801561022f57600080fd5b5061024361023e36600461249b565b61056c565b005b34801561025157600080fd5b506101f4610260366004612290565b61057b565b34801561027157600080fd5b506101f461058d565b34801561028657600080fd5b506102436102953660046122b6565b6105a4565b3480156102a657600080fd5b506101f461068b565b3480156102bb57600080fd5b506102cf6102ca36600461244d565b61069a565b6040516101d69493929190613292565b3480156102eb57600080fd5b506101f4610929565b34801561030057600080fd5b5061030961092e565b6040516101d6919061337f565b34801561032257600080fd5b5061033661033136600461244d565b61093d565b6040516101d6919061338d565b34801561034f57600080fd5b5061024361035e36600461244d565b610abf565b34801561036f57600080fd5b50610378610d28565b6040516101d6919061313c565b34801561039157600080fd5b506102436103a03660046124cb565b610d37565b3480156103b157600080fd5b50610243610ecf565b3480156103c657600080fd5b506101f4610f0b565b3480156103db57600080fd5b506102436103ea3660046122b6565b610f10565b3480156103fb57600080fd5b506101f4610fe5565b34801561041057600080fd5b50610243610ff4565b34801561042557600080fd5b50610309611079565b34801561043a57600080fd5b506101f4611088565b34801561044f57600080fd5b506101f461045e3660046122f0565b61108e565b34801561046f57600080fd5b5061024361047e36600461244d565b6114b0565b34801561048f57600080fd5b506101f461171a565b3480156104a457600080fd5b506104b86104b336600461246b565b611726565b6040516101d691906134fc565b6102436104d336600461244d565b611795565b6004602052600090815260409020805460018201546002830154600784015460088501546009860154600a870154600b9097015495966001600160a01b0390951695939492939192909160ff8082169161010090041689565b6143805b90565b60405180604001604052806018815260200177456d7074792053657420476f7665726e6f7220416c70686160401b81525081565b61057733838361195a565b5050565b60056020526000908152604090205481565b60405161059990613126565b604051809103902081565b6002546001600160a01b031633146105d75760405162461bcd60e51b81526004016105ce906133dc565b60405180910390fd5b600080546040516001600160a01b0390911691630825f38f9183919061060190879060200161313c565b604051602081830303815290604052856040518563ffffffff1660e01b81526004016106309493929190613165565b600060405180830381600087803b15801561064a57600080fd5b505af115801561065e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106869190810190612418565b505050565b6a52b7d2dcc80cd2e400000090565b6060806060806000600460008781526020019081526020016000209050806003018160040182600501836006018380548060200260200160405190810160405280929190818152602001828054801561071c57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116106fe575b505050505093508280548060200260200160405190810160405280929190818152602001828054801561076e57602002820191906000526020600020905b81548152602001906001019080831161075a575b5050505050925081805480602002602001604051908101604052809291908181526020016000905b828210156108415760008481526020908190208301805460408051601f600260001961010060018716150201909416939093049283018590048502810185019091528181529283018282801561082d5780601f106108025761010080835404028352916020019161082d565b820191906000526020600020905b81548152906001019060200180831161081057829003601f168201915b505050505081526020019060010190610796565b50505050915080805480602002602001604051908101604052809291908181526020016000905b828210156109135760008481526020908190208301805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b505050505081526020019060010190610868565b5050505090509450945094509450509193509193565b600190565b6001546001600160a01b031681565b600081600354101580156109515750600082115b61096d5760405162461bcd60e51b81526004016105ce906133ec565b6000828152600460205260409020600b81015460ff1615610992576002915050610aba565b806007015443116109a7576000915050610aba565b806008015443116109bc576001915050610aba565b80600a015481600901541115806109dd57506109d661068b565b8160090154105b156109ec576003915050610aba565b60028101546109ff576004915050610aba565b600b810154610100900460ff1615610a1b576007915050610aba565b6002810154600054604080516360d143f160e11b81529051610aa493926001600160a01b03169163c1a287e2916004808301926020929190829003018186803b158015610a6757600080fd5b505afa158015610a7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a9f91908101906123fa565b611b23565b4210610ab4576006915050610aba565b60059150505b919050565b6000610aca8261093d565b90506007816007811115610ada57fe5b1415610af85760405162461bcd60e51b81526004016105ce906134bc565b60008281526004602052604090206002546001600160a01b0316331480610bc35750610b22610fe5565b60018054838201546001600160a01b039182169263782d6fe19290911690610b4b904390611b4f565b6040518363ffffffff1660e01b8152600401610b689291906131b4565b60206040518083038186803b158015610b8057600080fd5b505afa158015610b94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610bb89190810190612533565b6001600160601b0316105b610bdf5760405162461bcd60e51b81526004016105ce9061345c565b600b8101805460ff1916600117905560005b6003820154811015610ceb576000546003830180546001600160a01b039092169163591fcdfe919084908110610c2357fe5b6000918252602090912001546004850180546001600160a01b039092169185908110610c4b57fe5b9060005260206000200154856005018581548110610c6557fe5b90600052602060002001866006018681548110610c7e57fe5b9060005260206000200187600201546040518663ffffffff1660e01b8152600401610cad959493929190613251565b600060405180830381600087803b158015610cc757600080fd5b505af1158015610cdb573d6000803e3d6000fd5b505060019092019150610bf19050565b507f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c83604051610d1b91906132df565b60405180910390a1505050565b6002546001600160a01b031681565b6000604051610d4590613126565b604080519182900382208282019091526018825277456d7074792053657420476f7665726e6f7220416c70686160401b6020909201919091527fc8c7cdd5af5eea5a174c290055ed8b6db2bf1bb0fa604ed68de0480544c02a11610da7611b77565b30604051602001610dbb94939291906132ed565b6040516020818303038152906040528051906020012090506000604051610de190613131565b604051908190038120610dfa9189908990602001613322565b60405160208183030381529060405280519060200120905060008282604051602001610e279291906130f5565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610e64949392919061334a565b6020604051602081039080840390855afa158015610e86573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610eb95760405162461bcd60e51b81526004016105ce9061349c565b610ec4818a8a61195a565b505050505050505050565b6002546001600160a01b03163314610ef95760405162461bcd60e51b81526004016105ce906134ec565b600280546001600160a01b0319169055565b600a90565b6002546001600160a01b03163314610f3a5760405162461bcd60e51b81526004016105ce9061341c565b600080546040516001600160a01b0390911691633a66f90191839190610f6490879060200161313c565b604051602081830303815290604052856040518563ffffffff1660e01b8152600401610f939493929190613165565b602060405180830381600087803b158015610fad57600080fd5b505af1158015610fc1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061068691908101906123fa565b6a084595161401484a00000090565b6002546001600160a01b0316331461101e5760405162461bcd60e51b81526004016105ce906133ac565b6000805460408051630e18b68160e01b815290516001600160a01b0390921692630e18b6819260048084019382900301818387803b15801561105f57600080fd5b505af1158015611073573d6000803e3d6000fd5b50505050565b6000546001600160a01b031681565b60035481565b6000611098610fe5565b600180546001600160a01b03169063782d6fe19033906110b9904390611b4f565b6040518363ffffffff1660e01b81526004016110d692919061314a565b60206040518083038186803b1580156110ee57600080fd5b505afa158015611102573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506111269190810190612533565b6001600160601b03161161114c5760405162461bcd60e51b81526004016105ce9061348c565b8451865114801561115e575083518651145b801561116b575082518651145b6111875760405162461bcd60e51b81526004016105ce9061344c565b85516111a55760405162461bcd60e51b81526004016105ce9061347c565b6111ad610f0b565b865111156111cd5760405162461bcd60e51b81526004016105ce9061342c565b33600090815260056020526040902054801561124a5760006111ee8261093d565b905060018160078111156111fe57fe5b141561121c5760405162461bcd60e51b81526004016105ce906134ac565b600081600781111561122a57fe5b14156112485760405162461bcd60e51b81526004016105ce9061340c565b505b600061125843610a9f610929565b9050600061126882610a9f610531565b600380546001019055905061127b611cda565b604051806101a001604052806003548152602001336001600160a01b03168152602001600081526020018b81526020018a815260200189815260200188815260200184815260200183815260200160008152602001600081526020016000151581526020016000151581525090508060046000836000015181526020019081526020016000206000820151816000015560208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160020155606082015181600301908051906020019061135e929190611d4f565b506080820151805161137a916004840191602090910190611db4565b5060a08201518051611396916005840191602090910190611dfb565b5060c082015180516113b2916006840191602090910190611e54565b5060e082015181600701556101008201518160080155610120820151816009015561014082015181600a015561016082015181600b0160006101000a81548160ff02191690831515021790555061018082015181600b0160016101000a81548160ff02191690831515021790555090505080600001516005600083602001516001600160a01b03166001600160a01b03168152602001908152602001600020819055507f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e08160000151338c8c8c8c89898e6040516114989998979695949392919061350a565b60405180910390a15193505050505b95945050505050565b60046114bb8261093d565b60078111156114c657fe5b146114e35760405162461bcd60e51b81526004016105ce906133bc565b600081815260046020818152604080842084548251630d48571f60e31b815292519195946115389442946001600160a01b0390931693636a42b8f8938084019390829003018186803b158015610a6757600080fd5b905060005b60038301548110156116e0576116d883600301828154811061155b57fe5b6000918252602090912001546004850180546001600160a01b03909216918490811061158357fe5b906000526020600020015485600501848154811061159d57fe5b600091825260209182902001805460408051601f600260001961010060018716150201909416939093049283018590048502810185019091528181529283018282801561162b5780601f106116005761010080835404028352916020019161162b565b820191906000526020600020905b81548152906001019060200180831161160e57829003601f168201915b505050505086600601858154811061163f57fe5b600091825260209182902001805460408051601f60026000196101006001871615020190941693909304928301859004850281018501909152818152928301828280156116cd5780601f106116a2576101008083540402835291602001916116cd565b820191906000526020600020905b8154815290600101906020018083116116b057829003601f168201915b505050505086611b7b565b60010161153d565b50600282018190556040517f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda289290610d1b9085908490613638565b60405161059990613131565b61172e611ead565b5060008281526004602090815260408083206001600160a01b0385168452600c018252918290208251606081018452905460ff80821615158352610100820416151592820192909252620100009091046001600160601b0316918101919091525b92915050565b60056117a08261093d565b60078111156117ab57fe5b146117c85760405162461bcd60e51b81526004016105ce906133cc565b6000818152600460205260408120600b8101805461ff001916610100179055905b600382015481101561191e576000546004830180546001600160a01b0390921691630825f38f91908490811061181b57fe5b906000526020600020015484600301848154811061183557fe5b6000918252602090912001546004860180546001600160a01b03909216918690811061185d57fe5b906000526020600020015486600501868154811061187757fe5b9060005260206000200187600601878154811061189057fe5b9060005260206000200188600201546040518763ffffffff1660e01b81526004016118bf959493929190613251565b6000604051808303818588803b1580156118d857600080fd5b505af11580156118ec573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526119159190810190612418565b506001016117e9565b507f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f8260405161194e91906132df565b60405180910390a15050565b60016119658361093d565b600781111561197057fe5b1461198d5760405162461bcd60e51b81526004016105ce906134cc565b60008281526004602090815260408083206001600160a01b0387168452600c8101909252909120805460ff16156119d65760405162461bcd60e51b81526004016105ce906133fc565b600154600783015460405163782d6fe160e01b81526000926001600160a01b03169163782d6fe191611a0c918a916004016131b4565b60206040518083038186803b158015611a2457600080fd5b505afa158015611a38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611a5c9190810190612533565b90508315611a8557611a7b8360090154826001600160601b0316611b23565b6009840155611aa2565b611a9c83600a0154826001600160601b0316611b23565b600a8401555b8154600160ff199091161761ff00191661010085151502176dffffffffffffffffffffffff00001916620100006001600160601b038316021782556040517f877856338e13f63d0c36822ff0ef736b80934cd90574a3a5bc9262c39d217c4690611b139088908890889086906131c2565b60405180910390a1505050505050565b600082820183811015611b485760405162461bcd60e51b81526004016105ce9061343c565b9392505050565b600082821115611b715760405162461bcd60e51b81526004016105ce906134dc565b50900390565b4690565b6000546040516001600160a01b039091169063f2b0653790611ba990889088908890889088906020016131f7565b604051602081830303815290604052805190602001206040518263ffffffff1660e01b8152600401611bdb91906132df565b60206040518083038186803b158015611bf357600080fd5b505afa158015611c07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611c2b91908101906123dc565b15611c485760405162461bcd60e51b81526004016105ce9061346c565b600054604051633a66f90160e01b81526001600160a01b0390911690633a66f90190611c8090889088908890889088906004016131f7565b602060405180830381600087803b158015611c9a57600080fd5b505af1158015611cae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611cd291908101906123fa565b505050505050565b604051806101a001604052806000815260200160006001600160a01b031681526020016000815260200160608152602001606081526020016060815260200160608152602001600081526020016000815260200160008152602001600081526020016000151581526020016000151581525090565b828054828255906000526020600020908101928215611da4579160200282015b82811115611da457825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611d6f565b50611db0929150611ecd565b5090565b828054828255906000526020600020908101928215611def579160200282015b82811115611def578251825591602001919060010190611dd4565b50611db0929150611ef1565b828054828255906000526020600020908101928215611e48579160200282015b82811115611e485782518051611e38918491602090910190611f0b565b5091602001919060010190611e1b565b50611db0929150611f78565b828054828255906000526020600020908101928215611ea1579160200282015b82811115611ea15782518051611e91918491602090910190611f0b565b5091602001919060010190611e74565b50611db0929150611f9b565b604080516060810182526000808252602082018190529181019190915290565b61053591905b80821115611db05780546001600160a01b0319168155600101611ed3565b61053591905b80821115611db05760008155600101611ef7565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611f4c57805160ff1916838001178555611def565b82800160010185558215611def5791820182811115611def578251825591602001919060010190611dd4565b61053591905b80821115611db0576000611f928282611fbe565b50600101611f7e565b61053591905b80821115611db0576000611fb58282611fbe565b50600101611fa1565b50805460018160011615610100020316600290046000825580601f10611fe45750612002565b601f0160209004906000526020600020908101906120029190611ef1565b50565b803561178f8161378c565b600082601f83011261202157600080fd5b813561203461202f8261366d565b613646565b9150818183526020840193506020810190508385602084028201111561205957600080fd5b60005b83811015612085578161206f8882612005565b845250602092830192919091019060010161205c565b5050505092915050565b600082601f8301126120a057600080fd5b81356120ae61202f8261366d565b81815260209384019390925082018360005b8381101561208557813586016120d688826121e5565b84525060209283019291909101906001016120c0565b600082601f8301126120fd57600080fd5b813561210b61202f8261366d565b81815260209384019390925082018360005b83811015612085578135860161213388826121e5565b845250602092830192919091019060010161211d565b600082601f83011261215a57600080fd5b813561216861202f8261366d565b9150818183526020840193506020810190508385602084028201111561218d57600080fd5b60005b8381101561208557816121a388826121cf565b8452506020928301929190910190600101612190565b803561178f816137a0565b805161178f816137a0565b803561178f816137a9565b805161178f816137a9565b600082601f8301126121f657600080fd5b813561220461202f8261368e565b9150808252602083016020830185838301111561222057600080fd5b61222b838284613740565b50505092915050565b600082601f83011261224557600080fd5b815161225361202f8261368e565b9150808252602083016020830185838301111561226f57600080fd5b61222b83828461374c565b803561178f816137b2565b805161178f816137bb565b6000602082840312156122a257600080fd5b60006122ae8484612005565b949350505050565b600080604083850312156122c957600080fd5b60006122d58585612005565b92505060206122e6858286016121cf565b9150509250929050565b600080600080600060a0868803121561230857600080fd5b853567ffffffffffffffff81111561231f57600080fd5b61232b88828901612010565b955050602086013567ffffffffffffffff81111561234857600080fd5b61235488828901612149565b945050604086013567ffffffffffffffff81111561237157600080fd5b61237d888289016120ec565b935050606086013567ffffffffffffffff81111561239a57600080fd5b6123a68882890161208f565b925050608086013567ffffffffffffffff8111156123c357600080fd5b6123cf888289016121e5565b9150509295509295909350565b6000602082840312156123ee57600080fd5b60006122ae84846121c4565b60006020828403121561240c57600080fd5b60006122ae84846121da565b60006020828403121561242a57600080fd5b815167ffffffffffffffff81111561244157600080fd5b6122ae84828501612234565b60006020828403121561245f57600080fd5b60006122ae84846121cf565b6000806040838503121561247e57600080fd5b600061248a85856121cf565b92505060206122e685828601612005565b600080604083850312156124ae57600080fd5b60006124ba85856121cf565b92505060206122e6858286016121b9565b600080600080600060a086880312156124e357600080fd5b60006124ef88886121cf565b9550506020612500888289016121b9565b94505060406125118882890161227a565b9350506060612522888289016121cf565b92505060806123cf888289016121cf565b60006020828403121561254557600080fd5b60006122ae8484612285565b600061255d838361258c565b505060200190565b6000611b48838361272e565b600061255d8383612714565b6125868161370d565b82525050565b612586816136d5565b60006125a0826136c8565b6125aa81856136cc565b93506125b5836136b6565b8060005b838110156125e35781516125cd8882612551565b97506125d8836136b6565b9250506001016125b9565b509495945050505050565b60006125f9826136c8565b61260381856136cc565b935083602082028501612615856136b6565b8060005b8581101561264f57848403895281516126328582612565565b945061263d836136b6565b60209a909a0199925050600101612619565b5091979650505050505050565b6000612667826136c8565b61267181856136cc565b935083602082028501612683856136b6565b8060005b8581101561264f57848403895281516126a08582612565565b94506126ab836136b6565b60209a909a0199925050600101612687565b60006126c8826136c8565b6126d281856136cc565b93506126dd836136b6565b8060005b838110156125e35781516126f58882612571565b9750612700836136b6565b9250506001016126e1565b612586816136e0565b61258681610535565b61258661272982610535565b610535565b6000612739826136c8565b61274381856136cc565b935061275381856020860161374c565b61275c81613778565b9093019392505050565b60008154600181166000811461278357600181146127a9576127e8565b607f600283041661279481876136cc565b60ff19841681529550506020850192506127e8565b600282046127b781876136cc565b95506127c2856136bc565b60005b828110156127e1578154888201526001909101906020016127c5565b8701945050505b505092915050565b61258681613714565b6125868161371f565b6125868161372a565b60006128186039836136cc565b7f476f7665726e6f72416c7068613a3a5f5f61636365707441646d696e3a20736581527f6e646572206d75737420626520676f7620677561726469616e00000000000000602082015260400192915050565b60006128776044836136cc565b7f476f7665726e6f72416c7068613a3a71756575653a2070726f706f73616c206381527f616e206f6e6c79206265207175657565642069662069742069732073756363656020820152631959195960e21b604082015260600192915050565b60006128e36045836136cc565b7f476f7665726e6f72416c7068613a3a657865637574653a2070726f706f73616c81527f2063616e206f6e6c7920626520657865637574656420696620697420697320716020820152641d595d595960da1b604082015260600192915050565b6000612950600283610aba565b61190160f01b815260020192915050565b600061296e604c836136cc565b7f476f7665726e6f72416c7068613a3a5f5f6578656375746553657454696d656c81527f6f636b50656e64696e6741646d696e3a2073656e646572206d7573742062652060208201526b33b7bb1033bab0b93234b0b760a11b604082015260600192915050565b60006129e26018836136cc565b7f73657450656e64696e6741646d696e2861646472657373290000000000000000815260200192915050565b6000612a1b6029836136cc565b7f476f7665726e6f72416c7068613a3a73746174653a20696e76616c69642070728152681bdc1bdcd85b081a5960ba1b602082015260400192915050565b6000612a66602d836136cc565b7f476f7665726e6f72416c7068613a3a5f63617374566f74653a20766f7465722081526c185b1c9958591e481d9bdd1959609a1b602082015260400192915050565b6000612ab56059836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206f6e65206c69766581527f2070726f706f73616c207065722070726f706f7365722c20666f756e6420616e60208201527f20616c72656164792070656e64696e672070726f706f73616c00000000000000604082015260600192915050565b6000612b3a604a836136cc565b7f476f7665726e6f72416c7068613a3a5f5f717565756553657454696d656c6f6381527f6b50656e64696e6741646d696e3a2073656e646572206d75737420626520676f6020820152693b1033bab0b93234b0b760b11b604082015260600192915050565b6000612bac6028836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a20746f6f206d616e7981526720616374696f6e7360c01b602082015260400192915050565b6000612bf66011836136cc565b706164646974696f6e206f766572666c6f7760781b815260200192915050565b6000612c23604383610aba565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000612c8e602783610aba565b7f42616c6c6f742875696e743235362070726f706f73616c49642c626f6f6c20738152667570706f72742960c81b602082015260270192915050565b6000612cd76044836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a2070726f706f73616c81527f2066756e6374696f6e20696e666f726d6174696f6e206172697479206d69736d6020820152630c2e8c6d60e31b604082015260600192915050565b6000612d43602f836136cc565b7f476f7665726e6f72416c7068613a3a63616e63656c3a2070726f706f7365722081526e18589bdd99481d1a1c995cda1bdb19608a1b602082015260400192915050565b6000612d946044836136cc565b7f476f7665726e6f72416c7068613a3a5f71756575654f725265766572743a207081527f726f706f73616c20616374696f6e20616c7265616479207175657565642061746020820152632065746160e01b604082015260600192915050565b6000612e00602c836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206d7573742070726f81526b7669646520616374696f6e7360a01b602082015260400192915050565b6000612e4e603f836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a2070726f706f73657281527f20766f7465732062656c6f772070726f706f73616c207468726573686f6c6400602082015260400192915050565b6000612ead602f836136cc565b7f476f7665726e6f72416c7068613a3a63617374566f746542795369673a20696e81526e76616c6964207369676e617475726560881b602082015260400192915050565b6000612efe6058836136cc565b7f476f7665726e6f72416c7068613a3a70726f706f73653a206f6e65206c69766581527f2070726f706f73616c207065722070726f706f7365722c20666f756e6420616e60208201527f20616c7265616479206163746976652070726f706f73616c0000000000000000604082015260600192915050565b6000612f836036836136cc565b7f476f7665726e6f72416c7068613a3a63616e63656c3a2063616e6e6f742063618152751b98d95b08195e1958dd5d1959081c1c9bdc1bdcd85b60521b602082015260400192915050565b6000612fdb602a836136cc565b7f476f7665726e6f72416c7068613a3a5f63617374566f74653a20766f74696e67815269081a5cc818db1bdcd95960b21b602082015260400192915050565b60006130276015836136cc565b747375627472616374696f6e20756e646572666c6f7760581b815260200192915050565b60006130586036836136cc565b7f476f7665726e6f72416c7068613a3a5f5f61626469636174653a2073656e6465815275391036bab9ba1031329033b7bb1033bab0b93234b0b760511b602082015260400192915050565b805160608301906130b4848261270b565b5060208201516130c7602085018261270b565b50604082015161107360408501826130ec565b612586816136fb565b61258681613735565b61258681613701565b600061310082612943565b915061310c828561271d565b60208201915061311c828461271d565b5060200192915050565b600061178f82612c16565b600061178f82612c81565b6020810161178f828461258c565b60408101613158828561257d565b611b486020830184612714565b60a08101613173828761258c565b6131806020830186612802565b8181036040830152613191816129d5565b905081810360608301526131a5818561272e565b90506114a76080830184612714565b60408101613158828561258c565b608081016131d0828761258c565b6131dd6020830186612714565b6131ea604083018561270b565b6114a760608301846130e3565b60a08101613205828861258c565b6132126020830187612714565b8181036040830152613224818661272e565b90508181036060830152613238818561272e565b90506132476080830184612714565b9695505050505050565b60a0810161325f828861258c565b61326c6020830187612714565b818103604083015261327e8186612766565b905081810360608301526132388185612766565b608080825281016132a38187612595565b905081810360208301526132b781866126bd565b905081810360408301526132cb818561265c565b9050818103606083015261324781846125ee565b6020810161178f8284612714565b608081016132fb8287612714565b6133086020830186612714565b6133156040830185612714565b6114a7606083018461258c565b606081016133308286612714565b61333d6020830185612714565b6122ae604083018461270b565b608081016133588287612714565b61336560208301866130da565b6133726040830185612714565b6114a76060830184612714565b6020810161178f82846127f0565b6020810161178f82846127f9565b60208082528101611b48818461272e565b6020808252810161178f8161280b565b6020808252810161178f8161286a565b6020808252810161178f816128d6565b6020808252810161178f81612961565b6020808252810161178f81612a0e565b6020808252810161178f81612a59565b6020808252810161178f81612aa8565b6020808252810161178f81612b2d565b6020808252810161178f81612b9f565b6020808252810161178f81612be9565b6020808252810161178f81612cca565b6020808252810161178f81612d36565b6020808252810161178f81612d87565b6020808252810161178f81612df3565b6020808252810161178f81612e41565b6020808252810161178f81612ea0565b6020808252810161178f81612ef1565b6020808252810161178f81612f76565b6020808252810161178f81612fce565b6020808252810161178f8161301a565b6020808252810161178f8161304b565b6060810161178f82846130a3565b6101208101613519828c612714565b613526602083018b61257d565b8181036040830152613538818a612595565b9050818103606083015261354c81896126bd565b90508181036080830152613560818861265c565b905081810360a083015261357481876125ee565b905061358360c0830186612714565b61359060e0830185612714565b8181036101008301526135a3818461272e565b9b9a5050505050505050505050565b61012081016135c1828c612714565b6135ce602083018b61258c565b6135db604083018a612714565b6135e86060830189612714565b6135f56080830188612714565b61360260a0830187612714565b61360f60c0830186612714565b61361c60e083018561270b565b61362a61010083018461270b565b9a9950505050505050505050565b604081016131588285612714565b60405181810167ffffffffffffffff8111828210171561366557600080fd5b604052919050565b600067ffffffffffffffff82111561368457600080fd5b5060209081020190565b600067ffffffffffffffff8211156136a557600080fd5b506020601f91909101601f19160190565b60200190565b60009081526020902090565b5190565b90815260200190565b600061178f826136ef565b151590565b80610aba81613782565b6001600160a01b031690565b60ff1690565b6001600160601b031690565b600061178f825b600061178f826136d5565b600061178f826136e5565b600061178f82610535565b600061178f82613701565b82818337506000910152565b60005b8381101561376757818101518382015260200161374f565b838111156110735750506000910152565b601f01601f191690565b6008811061200257fe5b613795816136d5565b811461200257600080fd5b613795816136e0565b61379581610535565b613795816136fb565b6137958161370156fea365627a7a72315820edbf28e120aad0cfaafe0fe5aa76c06caff60bf9108f1e14623d087a6a28f3346c6578706572696d656e74616cf564736f6c63430005110040

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000001bba92f379375387bf8f927058da14d47464cb7a00000000000000000000000024ae124c4cc33d6791f8e8b63520ed7107ac8b3e000000000000000000000000460661bd4a5364a3abcc9cfc4a8ce7038d05ea22

-----Decoded View---------------
Arg [0] : timelock_ (address): 0x1bba92F379375387bf8F927058da14D47464cB7A
Arg [1] : stake_ (address): 0x24aE124c4CC33D6791F8E8B63520ed7107ac8b3e
Arg [2] : guardian_ (address): 0x460661bd4A5364A3ABCc9cfc4a8cE7038d05Ea22

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000001bba92f379375387bf8f927058da14d47464cb7a
Arg [1] : 00000000000000000000000024ae124c4cc33d6791f8e8b63520ed7107ac8b3e
Arg [2] : 000000000000000000000000460661bd4a5364a3abcc9cfc4a8ce7038d05ea22


Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.