Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 83 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 16199083 | 685 days ago | IN | 0 ETH | 0.00221153 | ||||
Transfer | 14072230 | 1011 days ago | IN | 0 ETH | 0.00584253 | ||||
Transfer | 13758604 | 1059 days ago | IN | 0 ETH | 0.00642474 | ||||
Transfer | 13537106 | 1094 days ago | IN | 0 ETH | 0.00564077 | ||||
Approve | 13065540 | 1168 days ago | IN | 0 ETH | 0.00136418 | ||||
Transfer | 12567698 | 1245 days ago | IN | 0 ETH | 0.00044024 | ||||
Transfer | 12567648 | 1245 days ago | IN | 0 ETH | 0.00058929 | ||||
Transfer | 12567590 | 1245 days ago | IN | 0 ETH | 0.00046775 | ||||
Transfer | 12567533 | 1245 days ago | IN | 0 ETH | 0.00046775 | ||||
Transfer | 12567497 | 1245 days ago | IN | 0 ETH | 0.00078543 | ||||
Transfer | 12555512 | 1247 days ago | IN | 0 ETH | 0.00143104 | ||||
Approve | 12512444 | 1254 days ago | IN | 0 ETH | 0.00198688 | ||||
Transfer | 12488091 | 1258 days ago | IN | 0 ETH | 0.00115563 | ||||
Delegate | 12469722 | 1261 days ago | IN | 0 ETH | 0.00589182 | ||||
Transfer | 12464316 | 1261 days ago | IN | 0 ETH | 0.00228474 | ||||
Transfer | 12464296 | 1261 days ago | IN | 0 ETH | 0.00195356 | ||||
Transfer | 12464275 | 1261 days ago | IN | 0 ETH | 0.00206362 | ||||
Transfer | 12464248 | 1261 days ago | IN | 0 ETH | 0.00312305 | ||||
Delegate | 12459760 | 1262 days ago | IN | 0 ETH | 0.00929025 | ||||
Delegate | 12441445 | 1265 days ago | IN | 0 ETH | 0.00502176 | ||||
Delegate | 12419583 | 1268 days ago | IN | 0 ETH | 0.01797005 | ||||
Transfer | 12332264 | 1282 days ago | IN | 0 ETH | 0.00276687 | ||||
Transfer | 12332155 | 1282 days ago | IN | 0 ETH | 0.00327816 | ||||
Transfer | 12331840 | 1282 days ago | IN | 0 ETH | 0.00298135 | ||||
Transfer | 12331836 | 1282 days ago | IN | 0 ETH | 0.00298135 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
GSNToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.5.16; pragma experimental ABIEncoderV2; import "./BaseRelayRecipient.sol"; import "./SafeMath.sol"; contract GSNToken is BaseRelayRecipient { /// @notice EIP-20 token name for this token string public constant name = "GSN Token"; /// @notice EIP-20 token symbol for this token string public constant symbol = "GSN"; /// @notice EIP-20 token decimals for this token uint8 public constant decimals = 18; /// @notice Total number of tokens in circulation uint public totalSupply = 1_000_000_000e18; // 1 billion GSN /// @notice Address which may mint new tokens address public minter; /// @notice The timestamp after which minting may occur uint public mintingAllowedAfter; /// @notice Minimum time between mints uint32 public constant minimumTimeBetweenMints = 1 days * 365; /// @notice Cap on the percentage of totalSupply that can be minted at each mint uint8 public constant mintCap = 2; /// @notice Allowance amounts on behalf of others mapping (address => mapping (address => uint96)) internal allowances; /// @notice Official record of token balances for each account mapping (address => uint96) internal balances; /// @notice A record of each accounts delegate mapping (address => address) public delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint96 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @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 delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice The EIP-712 typehash for the permit struct used by the contract bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when the minter address is changed event MinterChanged(address minter, address newMinter); /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /// @notice The standard EIP-20 transfer event event Transfer(address indexed from, address indexed to, uint256 amount); /// @notice The standard EIP-20 approval event event Approval(address indexed owner, address indexed spender, uint256 amount); /** * @notice Construct a new GSN token * @param account The initial account to grant all the tokens * @param minter_ The account with minting ability * @param mintingAllowedAfter_ The timestamp after which minting may occur */ constructor(address account, address minter_, uint mintingAllowedAfter_, address trustedForwarder_) public { require(mintingAllowedAfter_ >= block.timestamp, "Gsn::constructor: minting can only begin after deployment"); balances[account] = uint96(totalSupply); emit Transfer(address(0), account, totalSupply); minter = minter_; emit MinterChanged(address(0), minter); mintingAllowedAfter = mintingAllowedAfter_; trustedForwarder = trustedForwarder_; } /** * @notice Change the minter address * @param minter_ The address of the new minter */ function setMinter(address minter_) external { require(msg.sender == minter, "Gsn::setMinter: only the minter can change the minter address"); emit MinterChanged(minter, minter_); minter = minter_; } /** * @notice Mint new tokens * @param dst The address of the destination account * @param rawAmount The number of tokens to be minted */ function mint(address dst, uint rawAmount) external { require(msg.sender == minter, "Gsn::mint: only the minter can mint"); require(block.timestamp >= mintingAllowedAfter, "Gsn::mint: minting not allowed yet"); require(dst != address(0), "Gsn::mint: cannot transfer to the zero address"); // record the mint mintingAllowedAfter = SafeMath.add(block.timestamp, minimumTimeBetweenMints); // mint the amount uint96 amount = safe96(rawAmount, "Gsn::mint: amount exceeds 96 bits"); require(amount <= SafeMath.div(SafeMath.mul(totalSupply, mintCap), 100), "Gsn::mint: exceeded mint cap"); totalSupply = safe96(SafeMath.add(totalSupply, amount), "Gsn::mint: totalSupply exceeds 96 bits"); // transfer the amount to the recipient balances[dst] = add96(balances[dst], amount, "Gsn::mint: transfer amount overflows"); emit Transfer(address(0), dst, amount); // move delegates _moveDelegates(address(0), delegates[dst], amount); } /** * @notice Get the number of tokens `spender` is approved to spend on behalf of `account` * @param account The address of the account holding the funds * @param spender The address of the account spending the funds * @return The number of tokens approved */ function allowance(address account, address spender) external view returns (uint) { return allowances[account][spender]; } /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param rawAmount The number of tokens that are approved (2^256-1 means infinite) * @return Whether or not the approval succeeded */ function approve(address spender, uint rawAmount) external returns (bool) { uint96 amount; if (rawAmount == uint(-1)) { amount = uint96(-1); } else { amount = safe96(rawAmount, "Gsn::approve: amount exceeds 96 bits"); } allowances[_msgSender()][spender] = amount; emit Approval(_msgSender(), spender, amount); return true; } /** * @notice Triggers an approval from owner to spends * @param owner The address to approve from * @param spender The address to be approved * @param rawAmount The number of tokens that are approved (2^256-1 means infinite) * @param deadline The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function permit(address owner, address spender, uint rawAmount, uint deadline, uint8 v, bytes32 r, bytes32 s) external { uint96 amount; if (rawAmount == uint(-1)) { amount = uint96(-1); } else { amount = safe96(rawAmount, "Gsn::permit: amount exceeds 96 bits"); } bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this))); bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, rawAmount, nonces[owner]++, deadline)); bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "Gsn::permit: invalid signature"); require(signatory == owner, "Gsn::permit: unauthorized"); require(now <= deadline, "Gsn::permit: signature expired"); allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @notice Get the number of tokens held by the `account` * @param account The address of the account to get the balance of * @return The number of tokens held */ function balanceOf(address account) external view returns (uint) { return balances[account]; } /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param rawAmount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transfer(address dst, uint rawAmount) external returns (bool) { uint96 amount = safe96(rawAmount, "Gsn::transfer: amount exceeds 96 bits"); _transferTokens(_msgSender(), dst, amount); return true; } /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param rawAmount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferFrom(address src, address dst, uint rawAmount) external returns (bool) { address spender = _msgSender(); uint96 spenderAllowance = allowances[src][spender]; uint96 amount = safe96(rawAmount, "Gsn::approve: amount exceeds 96 bits"); if (spender != src && spenderAllowance != uint96(-1)) { uint96 newAllowance = sub96(spenderAllowance, amount, "Gsn::transferFrom: transfer amount exceeds spender allowance"); allowances[src][spender] = newAllowance; emit Approval(src, spender, newAllowance); } _transferTokens(src, dst, amount); return true; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) public { return _delegate(_msgSender(), delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig(address delegatee, uint nonce, uint expiry, 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(DELEGATION_TYPEHASH, delegatee, nonce, expiry)); bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "Gsn::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "Gsn::delegateBySig: invalid nonce"); require(now <= expiry, "Gsn::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint96) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) public view returns (uint96) { require(blockNumber < block.number, "Gsn::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = delegates[delegator]; uint96 delegatorBalance = balances[delegator]; delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _transferTokens(address src, address dst, uint96 amount) internal { require(src != address(0), "Gsn::_transferTokens: cannot transfer from the zero address"); require(dst != address(0), "Gsn::_transferTokens: cannot transfer to the zero address"); balances[src] = sub96(balances[src], amount, "Gsn::_transferTokens: transfer amount exceeds balance"); balances[dst] = add96(balances[dst], amount, "Gsn::_transferTokens: transfer amount overflows"); emit Transfer(src, dst, amount); _moveDelegates(delegates[src], delegates[dst], amount); } function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { uint32 srcRepNum = numCheckpoints[srcRep]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint96 srcRepNew = sub96(srcRepOld, amount, "Gsn::_moveVotes: vote amount underflows"); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { uint32 dstRepNum = numCheckpoints[dstRep]; uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint96 dstRepNew = add96(dstRepOld, amount, "Gsn::_moveVotes: vote amount overflows"); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal { uint32 blockNumber = safe32(block.number, "Gsn::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function safe96(uint n, string memory errorMessage) internal pure returns (uint96) { require(n < 2**96, errorMessage); return uint96(n); } function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { uint96 c = a + b; require(c >= a, errorMessage); return c; } function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { require(b <= a, errorMessage); return a - b; } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
// SPDX-License-Identifier:MIT // solhint-disable no-inline-assembly pragma solidity ^0.5.16; /** * A base contract to be inherited by any contract that want to receive relayed transactions * A subclass must use "_msgSender()" instead of "msg.sender" */ contract BaseRelayRecipient { /* * Forwarder singleton we accept calls from */ address public trustedForwarder; function isTrustedForwarder(address forwarder) public view returns(bool) { return forwarder == trustedForwarder; } /** * return the sender of this call. * if the call came through our trusted forwarder, return the original sender. * otherwise, return `msg.sender`. * should be used in the contract anywhere instead of msg.sender */ function _msgSender() internal view returns (address payable ret) { if (msg.data.length >= 20 && isTrustedForwarder(msg.sender)) { // At this point we know that the sender is a trusted forwarder, // so we trust that the last bytes of msg.data are the verified sender address. // extract sender address from the end of msg.data assembly { ret := shr(96,calldataload(sub(calldatasize(),20))) } } else { return msg.sender; } } }
pragma solidity ^0.5.16; pragma experimental ABIEncoderV2; import "./BaseRelayRecipient.sol"; contract GovernorAlpha is BaseRelayRecipient { /// @notice The name of this contract string public constant name = "GSN 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 function quorumVotes() public pure returns (uint) { return 20_000_000e18; } // 2% of GSNToken /// @notice The number of votes required in order for a voter to become a proposer function proposalThreshold() public pure returns (uint) { return 5_000_000e18; } // 0.5% of GSNToken /// @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 40_320; } // ~7 days in blocks (assuming 15s blocks) /// @notice The address of the GSN Protocol Timelock TimelockInterface public timelock; /// @notice The address of the GSN governance token GSNTokenInterface public gsnToken; /// @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 gsnToken_, address trustedForwarder_) public { timelock = TimelockInterface(timelock_); gsnToken = GSNTokenInterface(gsnToken_); trustedForwarder = trustedForwarder_; } function propose(address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas, string memory description) public returns (uint) { address msgSender = _msgSender(); require(gsnToken.getPriorVotes(msgSender, 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[msgSender]; 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: msgSender, 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, msgSender, 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(gsnToken.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(_msgSender(), 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 = gsnToken.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 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 GSNTokenInterface { function getPriorVotes(address account, uint blockNumber) external view returns (uint96); }
// SPDX-License-Identifier:MIT pragma solidity ^0.5.16; contract Migrations { address public owner; // solhint-disable-next-line var-name-mixedcase uint public last_completed_migration; constructor() public { owner = msg.sender; } modifier restricted() { if (msg.sender == owner) _; } function setCompleted(uint completed) public restricted { last_completed_migration = completed; } function upgrade(address newAddress) public restricted { Migrations upgraded = Migrations(newAddress); upgraded.setCompleted(last_completed_migration); } }
pragma solidity >=0.5.0; pragma experimental ABIEncoderV2; /// @title Multicall - Aggregate results from multiple read-only function calls /// @author Michael Elliot <[email protected]> /// @author Joshua Levine <[email protected]> /// @author Nick Johnson <[email protected]> contract Multicall { struct Call { address target; bytes callData; } function aggregate(Call[] memory calls) public returns (uint256 blockNumber, bytes[] memory returnData) { blockNumber = block.number; returnData = new bytes[](calls.length); for(uint256 i = 0; i < calls.length; i++) { (bool success, bytes memory ret) = calls[i].target.call(calls[i].callData); require(success); returnData[i] = ret; } } // Helper functions function getEthBalance(address addr) public view returns (uint256 balance) { balance = addr.balance; } function getBlockHash(uint256 blockNumber) public view returns (bytes32 blockHash) { blockHash = blockhash(blockNumber); } function getLastBlockHash() public view returns (bytes32 blockHash) { blockHash = blockhash(block.number - 1); } function getCurrentBlockTimestamp() public view returns (uint256 timestamp) { timestamp = block.timestamp; } function getCurrentBlockDifficulty() public view returns (uint256 difficulty) { difficulty = block.difficulty; } function getCurrentBlockGasLimit() public view returns (uint256 gaslimit) { gaslimit = block.gaslimit; } function getCurrentBlockCoinbase() public view returns (address coinbase) { coinbase = block.coinbase; } }
pragma solidity ^0.5.16; // From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol // Subject to the MIT license. /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the addition of two unsigned integers, reverting with custom message on overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, errorMessage); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot underflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction underflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot underflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, errorMessage); return c; } /** * @dev Returns the integer division of two unsigned integers. * Reverts on division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. * Reverts with custom message on division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
pragma solidity ^0.5.16; import "./SafeMath.sol"; contract Timelock { using SafeMath for uint; 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 = 2 days; uint public constant MAXIMUM_DELAY = 30 days; address public admin; address public pendingAdmin; uint public delay; mapping (bytes32 => bool) public queuedTransactions; constructor(address admin_, uint delay_) public { require(delay_ >= MINIMUM_DELAY, "Timelock::constructor: Delay must exceed minimum delay."); require(delay_ <= MAXIMUM_DELAY, "Timelock::setDelay: Delay must not exceed maximum delay."); admin = admin_; delay = delay_; } function() 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 { require(msg.sender == address(this), "Timelock::setPendingAdmin: Call must come from Timelock."); 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().add(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.add(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; } }
pragma solidity ^0.5.16; import "./SafeMath.sol"; contract TreasuryVester { using SafeMath for uint; address public uni; address public recipient; uint public vestingAmount; uint public vestingBegin; uint public vestingCliff; uint public vestingEnd; uint public lastUpdate; bool public canDelegate; constructor( address uni_, address recipient_, address approveTo_, uint vestingAmount_, uint vestingBegin_, uint vestingCliff_, uint vestingEnd_, bool canDelegate_ ) public { require(vestingBegin_ >= block.timestamp, 'TreasuryVester::constructor: vesting begin too early'); require(vestingCliff_ >= vestingBegin_, 'TreasuryVester::constructor: cliff is too early'); require(vestingEnd_ > vestingCliff_, 'TreasuryVester::constructor: end is too early'); uni = uni_; if (approveTo_ != address(0)){ IUni(uni).approve(approveTo_, uint256(-1)); } recipient = recipient_; vestingAmount = vestingAmount_; vestingBegin = vestingBegin_; vestingCliff = vestingCliff_; vestingEnd = vestingEnd_; lastUpdate = vestingBegin; canDelegate = canDelegate_; } function delegate(address delegatee) public { require(msg.sender == recipient, 'TreasuryVester::delegate: unauthorized'); require(canDelegate, 'TreasuryVester::delegate: delegate not allowed'); IUni(uni).delegate(delegatee); } function setRecipient(address recipient_) public { require(msg.sender == recipient, 'TreasuryVester::setRecipient: unauthorized'); recipient = recipient_; } function claim() public { require(block.timestamp >= vestingCliff, 'TreasuryVester::claim: not time yet'); uint amount; if (block.timestamp >= vestingEnd) { amount = IUni(uni).balanceOf(address(this)); } else { amount = vestingAmount.mul(block.timestamp - lastUpdate).div(vestingEnd - vestingBegin); lastUpdate = block.timestamp; } IUni(uni).transfer(recipient, amount); } } interface IUni { function balanceOf(address account) external view returns (uint); function transfer(address dst, uint rawAmount) external returns (bool); function delegate(address delegatee) external; function approve(address spender, uint rawAmount) external returns (bool); }
{ "evmVersion": "istanbul", "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"minter_","type":"address"},{"internalType":"uint256","name":"mintingAllowedAfter_","type":"uint256"},{"internalType":"address","name":"trustedForwarder_","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"newMinter","type":"address"}],"name":"MinterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"DELEGATION_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":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minimumTimeBetweenMints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintCap","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingAllowedAfter","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":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"minter_","type":"address"}],"name":"setMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"trustedForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526b033b2e3c9fd0803ce80000006001553480156200002157600080fd5b5060405162002b6438038062002b64833981016040819052620000449162000195565b42821015620000705760405162461bcd60e51b81526004016200006790620002ad565b60405180910390fd5b600180546001600160a01b03861660008181526005602052604080822080546001600160601b0319166001600160601b0390951694909417909355925491519092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000e09190620002bf565b60405180910390a3600280546001600160a01b0319166001600160a01b0385811691909117918290556040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6926200013f9260009291169062000287565b60405180910390a1600391909155600080546001600160a01b0319166001600160a01b0390921691909117905550620003269050565b8051620001828162000301565b92915050565b805162000182816200031b565b60008060008060808587031215620001ac57600080fd5b6000620001ba878762000175565b9450506020620001cd8782880162000175565b9350506040620001e08782880162000188565b9250506060620001f38782880162000175565b91505092959194509250565b6200020a81620002ed565b82525050565b6200020a81620002d8565b60006200022a603983620002cf565b7f47736e3a3a636f6e7374727563746f723a206d696e74696e672063616e206f6e81527f6c7920626567696e206166746572206465706c6f796d656e7400000000000000602082015260400192915050565b6200020a81620002ea565b60408101620002978285620001ff565b620002a6602083018462000210565b9392505050565b6020808252810162000182816200021b565b602081016200018282846200027c565b90815260200190565b60006001600160a01b03821662000182565b90565b6000620001828260006200018282620002d8565b6200030c81620002d8565b81146200031857600080fd5b50565b6200030c81620002ea565b61282e80620003366000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636fcfff4511610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e1461039c578063e7a324dc146103af578063f1127ed8146103b7578063fca3b5aa146103d8576101cf565b8063a9059cbb14610350578063b4b5ea5714610363578063c3cda52014610376578063d505accf14610389576101cf565b8063782d6fe1116100de578063782d6fe11461030d5780637da0a8771461032d5780637ecebe001461033557806395d89b4114610348576101cf565b80636fcfff45146102df57806370a08231146102f257806376c71ca114610305576101cf565b806330b36cef11610171578063572b6c051161014b578063572b6c0514610291578063587cde1e146102a45780635c11d62f146102b75780635c19a95c146102cc576101cf565b806330b36cef1461025f578063313ce5671461026757806340c10f191461027c576101cf565b806318160ddd116101ad57806318160ddd1461022757806320606b701461023c57806323b872dd1461024457806330adf81f14610257576101cf565b806306fdde03146101d457806307546172146101f2578063095ea7b314610207575b600080fd5b6101dc6103eb565b6040516101e991906123bc565b60405180910390f35b6101fa610410565b6040516101e9919061228f565b61021a610215366004611af7565b61041f565b6040516101e991906122b8565b61022f610506565b6040516101e991906122c6565b61022f61050c565b61021a610252366004611a0e565b610523565b61022f610676565b61022f610682565b61026f610688565b6040516101e991906124f6565b61028f61028a366004611af7565b61068d565b005b61021a61029f3660046119ae565b6108a9565b6101fa6102b23660046119ae565b6108bd565b6102bf6108d8565b6040516101e991906124cd565b61028f6102da3660046119ae565b6108e0565b6102bf6102ed3660046119ae565b6108f4565b61022f6103003660046119ae565b61090c565b61026f610930565b61032061031b366004611af7565b610935565b6040516101e99190612512565b6101fa610b43565b61022f6103433660046119ae565b610b52565b6101dc610b64565b61021a61035e366004611af7565b610b83565b6103206103713660046119ae565b610bc6565b61028f610384366004611b27565b610c36565b61028f610397366004611a5b565b610e21565b61022f6103aa3660046119d4565b61110e565b61022f611142565b6103ca6103c5366004611bae565b61114e565b6040516101e99291906124db565b61028f6103e63660046119ae565b611183565b6040518060400160405280600981526020016823a9a7102a37b5b2b760b91b81525081565b6002546001600160a01b031681565b600080600019831415610435575060001961045a565b610457836040518060600160405280602481526020016126ba60249139611216565b90505b8060046000610467611245565b6001600160a01b0390811682526020808301939093526040918201600090812091891680825291909352912080546001600160601b0319166001600160601b0393909316929092179091556104ba611245565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516104f29190612504565b60405180910390a360019150505b92915050565b60015481565b60405161051890612279565b604051809103902081565b60008061052e611245565b6001600160a01b03808716600090815260046020908152604080832093851683529281528282205483516060810190945260248085529495506001600160601b03169391926105859288926126ba90830139611216565b9050866001600160a01b0316836001600160a01b0316141580156105b257506001600160601b0382811614155b1561065c5760006105dc83836040518060600160405280603c81526020016126de603c9139611276565b6001600160a01b038981166000818152600460209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610652908590612504565b60405180910390a3505b6106678787836112b5565b600193505050505b9392505050565b6040516105189061226e565b60035481565b601281565b6002546001600160a01b031633146106c05760405162461bcd60e51b81526004016106b79061246d565b60405180910390fd5b6003544210156106e25760405162461bcd60e51b81526004016106b7906123fd565b6001600160a01b0382166107085760405162461bcd60e51b81526004016106b79061243d565b610716426301e1338061145b565b60038190555060006107408260405180606001604052806021815260200161267460219139611216565b905061075c610755600154600260ff16611480565b60646114ba565b816001600160601b031611156107845760405162461bcd60e51b81526004016106b7906123cd565b6107ba61079c600154836001600160601b031661145b565b60405180606001604052806026815260200161274160269139611216565b6001600160601b039081166001556001600160a01b03841660009081526005602090815260409182902054825160608101909352602480845261080d9491909116928592909190612650908301396114fc565b6001600160a01b03841660008181526005602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610877908590612504565b60405180910390a36001600160a01b038084166000908152600660205260408120546108a4921683611538565b505050565b6000546001600160a01b0390811691161490565b6006602052600090815260409020546001600160a01b031681565b6301e1338081565b6108f16108eb611245565b826116ca565b50565b60086020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600560205260409020546001600160601b031690565b600281565b60004382106109565760405162461bcd60e51b81526004016106b79061245d565b6001600160a01b03831660009081526008602052604090205463ffffffff1680610984576000915050610500565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610a00576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610500565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff16831015610a3b576000915050610500565b600060001982015b8163ffffffff168163ffffffff161115610afe57600282820363ffffffff16048103610a6d61196b565b506001600160a01b038716600090815260076020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610ad9576020015194506105009350505050565b805163ffffffff16871115610af057819350610af7565b6001820392505b5050610a43565b506001600160a01b038516600090815260076020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b6000546001600160a01b031681565b60096020526000908152604090205481565b6040518060400160405280600381526020016223a9a760e91b81525081565b600080610ba88360405180606001604052806025815260200161269560259139611216565b9050610bbc610bb5611245565b85836112b5565b5060019392505050565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610bf157600061066f565b6001600160a01b0383166000908152600760209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610c4490612279565b60408051918290038220828201909152600982526823a9a7102a37b5b2b760b91b6020909201919091527fddfc0d869dfd512b4e5f816c48f47c79f198b4cadbf49f3f88d685816da4fac0610c97611754565b30604051602001610cab949392919061236c565b6040516020818303038152906040528051906020012090506000604051610cd190612284565b604051908190038120610cec918a908a908a9060200161232e565b60405160208183030381529060405280519060200120905060008282604051602001610d1992919061223d565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610d5694939291906123a1565b6020604051602081039080840390855afa158015610d78573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610dab5760405162461bcd60e51b81526004016106b79061242d565b6001600160a01b03811660009081526009602052604090208054600181019091558914610dea5760405162461bcd60e51b81526004016106b79061240d565b87421115610e0a5760405162461bcd60e51b81526004016106b7906124bd565b610e14818b6116ca565b505050505b505050505050565b6000600019861415610e365750600019610e5b565b610e588660405180606001604052806023815260200161279660239139611216565b90505b6000604051610e6990612279565b60408051918290038220828201909152600982526823a9a7102a37b5b2b760b91b6020909201919091527fddfc0d869dfd512b4e5f816c48f47c79f198b4cadbf49f3f88d685816da4fac0610ebc611754565b30604051602001610ed0949392919061236c565b6040516020818303038152906040528051906020012090506000604051610ef69061226e565b604080519182900382206001600160a01b038d16600090815260096020908152929020805460018101909155610f389391928e928e928e9290918e91016122d4565b60405160208183030381529060405280519060200120905060008282604051602001610f6592919061223d565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610fa294939291906123a1565b6020604051602081039080840390855afa158015610fc4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610ff75760405162461bcd60e51b81526004016106b79061249d565b8b6001600160a01b0316816001600160a01b0316146110285760405162461bcd60e51b81526004016106b79061241d565b884211156110485760405162461bcd60e51b81526004016106b7906124ad565b84600460008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516110f89190612504565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526004602090815260408083209390941682529190915220546001600160601b031690565b60405161051890612284565b600760209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6002546001600160a01b031633146111ad5760405162461bcd60e51b81526004016106b7906123dd565b6002546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6916111ec916001600160a01b0390911690849061229d565b60405180910390a1600280546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b841061123d5760405162461bcd60e51b81526004016106b791906123bc565b509192915050565b60006014361080159061125c575061125c336108a9565b15611270575060131936013560601c611273565b50335b90565b6000836001600160601b0316836001600160601b0316111582906112ad5760405162461bcd60e51b81526004016106b791906123bc565b505050900390565b6001600160a01b0383166112db5760405162461bcd60e51b81526004016106b79061244d565b6001600160a01b0382166113015760405162461bcd60e51b81526004016106b79061248d565b6001600160a01b03831660009081526005602090815260409182902054825160608101909352603580845261134c936001600160601b03909216928592919061261b90830139611276565b6001600160a01b03848116600090815260056020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352602f8084526113b49491909116928592909190612767908301396114fc565b6001600160a01b038381166000818152600560205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611421908590612504565b60405180910390a36001600160a01b038084166000908152600660205260408082205485841683529120546108a492918216911683611538565b60008282018381101561066f5760405162461bcd60e51b81526004016106b7906123ed565b60008261148f57506000610500565b8282028284828161149c57fe5b041461066f5760405162461bcd60e51b81526004016106b79061247d565b600061066f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611758565b6000838301826001600160601b03808716908316101561152f5760405162461bcd60e51b81526004016106b791906123bc565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561156357506000816001600160601b0316115b156108a4576001600160a01b0383161561161b576001600160a01b03831660009081526008602052604081205463ffffffff1690816115a35760006115e2565b6001600160a01b0385166000908152600760209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000611609828560405180606001604052806027815260200161271a60279139611276565b90506116178684848461178f565b5050505b6001600160a01b038216156108a4576001600160a01b03821660009081526008602052604081205463ffffffff169081611656576000611695565b6001600160a01b0384166000908152600760209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006116bc82856040518060600160405280602681526020016125f5602691396114fc565b9050610e198584848461178f565b6001600160a01b03808316600081815260066020818152604080842080546005845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461174e828483611538565b50505050565b4690565b600081836117795760405162461bcd60e51b81526004016106b791906123bc565b50600083858161178557fe5b0495945050505050565b60006117b3436040518060600160405280603381526020016127b960339139611944565b905060008463ffffffff161180156117fc57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561185b576001600160a01b0385166000908152600760209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b038516021790556118fa565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600783528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600890935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611935929190612520565b60405180910390a25050505050565b600081600160201b841061123d5760405162461bcd60e51b81526004016106b791906123bc565b604080518082019091526000808252602082015290565b8035610500816125c5565b8035610500816125d9565b8035610500816125e2565b8035610500816125eb565b6000602082840312156119c057600080fd5b60006119cc8484611982565b949350505050565b600080604083850312156119e757600080fd5b60006119f38585611982565b9250506020611a0485828601611982565b9150509250929050565b600080600060608486031215611a2357600080fd5b6000611a2f8686611982565b9350506020611a4086828701611982565b9250506040611a518682870161198d565b9150509250925092565b600080600080600080600060e0888a031215611a7657600080fd5b6000611a828a8a611982565b9750506020611a938a828b01611982565b9650506040611aa48a828b0161198d565b9550506060611ab58a828b0161198d565b9450506080611ac68a828b016119a3565b93505060a0611ad78a828b0161198d565b92505060c0611ae88a828b0161198d565b91505092959891949750929550565b60008060408385031215611b0a57600080fd5b6000611b168585611982565b9250506020611a048582860161198d565b60008060008060008060c08789031215611b4057600080fd5b6000611b4c8989611982565b9650506020611b5d89828a0161198d565b9550506040611b6e89828a0161198d565b9450506060611b7f89828a016119a3565b9350506080611b9089828a0161198d565b92505060a0611ba189828a0161198d565b9150509295509295509295565b60008060408385031215611bc157600080fd5b6000611bcd8585611982565b9250506020611a0485828601611998565b611be78161254d565b82525050565b611be781612558565b611be781611273565b611be7611c0b82611273565b611273565b6000611c1b8261253b565b611c25818561253f565b9350611c3581856020860161258f565b611c3e816125bb565b9093019392505050565b6000611c55601c8361253f565b7f47736e3a3a6d696e743a206578636565646564206d696e742063617000000000815260200192915050565b6000611c8e600283612548565b61190160f01b815260020192915050565b6000611cac603d8361253f565b7f47736e3a3a7365744d696e7465723a206f6e6c7920746865206d696e7465722081527f63616e206368616e676520746865206d696e7465722061646472657373000000602082015260400192915050565b6000611d0b601b8361253f565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611d4460228361253f565b7f47736e3a3a6d696e743a206d696e74696e67206e6f7420616c6c6f7765642079815261195d60f21b602082015260400192915050565b6000611d8860218361253f565b7f47736e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e638152606560f81b602082015260400192915050565b6000611dcb60198361253f565b7f47736e3a3a7065726d69743a20756e617574686f72697a656400000000000000815260200192915050565b6000611e0460258361253f565b7f47736e3a3a64656c656761746542795369673a20696e76616c6964207369676e815264617475726560d81b602082015260400192915050565b6000611e4b605283612548565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520192915050565b6000611ec5602e8361253f565b7f47736e3a3a6d696e743a2063616e6e6f74207472616e7366657220746f20746881526d65207a65726f206164647265737360901b602082015260400192915050565b6000611f15603b8361253f565b7f47736e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e736665722066726f6d20746865207a65726f20616464726573730000000000602082015260400192915050565b6000611f74604383612548565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611fdf60268361253f565b7f47736e3a3a6765745072696f72566f7465733a206e6f742079657420646574658152651c9b5a5b995960d21b602082015260400192915050565b600061202760238361253f565b7f47736e3a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206d8152621a5b9d60ea1b602082015260400192915050565b600061206c60218361253f565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b60006120af60398361253f565b7f47736e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e7366657220746f20746865207a65726f206164647265737300000000000000602082015260400192915050565b600061210e601e8361253f565b7f47736e3a3a7065726d69743a20696e76616c6964207369676e61747572650000815260200192915050565b6000612147601e8361253f565b7f47736e3a3a7065726d69743a207369676e617475726520657870697265640000815260200192915050565b6000612180603a83612548565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006121df60258361253f565b7f47736e3a3a64656c656761746542795369673a207369676e61747572652065788152641c1a5c995960da1b602082015260400192915050565b611be781612569565b611be781612572565b611be781612584565b611be781612578565b600061224882611c81565b91506122548285611bff565b6020820191506122648284611bff565b5060200192915050565b600061050082611e3e565b600061050082611f67565b600061050082612173565b602081016105008284611bde565b604081016122ab8285611bde565b61066f6020830184611bde565b602081016105008284611bed565b602081016105008284611bf6565b60c081016122e28289611bf6565b6122ef6020830188611bde565b6122fc6040830187611bde565b6123096060830186611bf6565b6123166080830185611bf6565b61232360a0830184611bf6565b979650505050505050565b6080810161233c8287611bf6565b6123496020830186611bde565b6123566040830185611bf6565b6123636060830184611bf6565b95945050505050565b6080810161237a8287611bf6565b6123876020830186611bf6565b6123946040830185611bf6565b6123636060830184611bde565b608081016123af8287611bf6565b6123496020830186612222565b6020808252810161066f8184611c10565b6020808252810161050081611c48565b6020808252810161050081611c9f565b6020808252810161050081611cfe565b6020808252810161050081611d37565b6020808252810161050081611d7b565b6020808252810161050081611dbe565b6020808252810161050081611df7565b6020808252810161050081611eb8565b6020808252810161050081611f08565b6020808252810161050081611fd2565b602080825281016105008161201a565b602080825281016105008161205f565b60208082528101610500816120a2565b6020808252810161050081612101565b602080825281016105008161213a565b60208082528101610500816121d2565b602081016105008284612219565b604081016124e98285612219565b61066f6020830184612234565b602081016105008284612222565b60208101610500828461222b565b602081016105008284612234565b6040810161252e828561222b565b61066f602083018461222b565b5190565b90815260200190565b919050565b60006105008261255d565b151590565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b600061050082612578565b60005b838110156125aa578181015183820152602001612592565b8381111561174e5750506000910152565b601f01601f191690565b6125ce8161254d565b81146108f157600080fd5b6125ce81611273565b6125ce81612569565b6125ce8161257256fe47736e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777347736e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636547736e3a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f777347736e3a3a6d696e743a20616d6f756e742065786365656473203936206269747347736e3a3a7472616e736665723a20616d6f756e742065786365656473203936206269747347736e3a3a617070726f76653a20616d6f756e742065786365656473203936206269747347736e3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636547736e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777347736e3a3a6d696e743a20746f74616c537570706c792065786365656473203936206269747347736e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777347736e3a3a7065726d69743a20616d6f756e742065786365656473203936206269747347736e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a365627a7a72315820c6679ed4a7e78eb2f1d65351bfb0dafbec0d8f6f1bcedd03704adee568ea203c6c6578706572696d656e74616cf564736f6c6343000510004000000000000000000000000081ead4918134ae386dbd04346216e20ab8f822c400000000000000000000000081ead4918134ae386dbd04346216e20ab8f822c400000000000000000000000000000000000000000000000000000178f459bb92000000000000000000000000aa3e82b4c4093b4ba13cb5714382c99adbf750ca
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636fcfff4511610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e1461039c578063e7a324dc146103af578063f1127ed8146103b7578063fca3b5aa146103d8576101cf565b8063a9059cbb14610350578063b4b5ea5714610363578063c3cda52014610376578063d505accf14610389576101cf565b8063782d6fe1116100de578063782d6fe11461030d5780637da0a8771461032d5780637ecebe001461033557806395d89b4114610348576101cf565b80636fcfff45146102df57806370a08231146102f257806376c71ca114610305576101cf565b806330b36cef11610171578063572b6c051161014b578063572b6c0514610291578063587cde1e146102a45780635c11d62f146102b75780635c19a95c146102cc576101cf565b806330b36cef1461025f578063313ce5671461026757806340c10f191461027c576101cf565b806318160ddd116101ad57806318160ddd1461022757806320606b701461023c57806323b872dd1461024457806330adf81f14610257576101cf565b806306fdde03146101d457806307546172146101f2578063095ea7b314610207575b600080fd5b6101dc6103eb565b6040516101e991906123bc565b60405180910390f35b6101fa610410565b6040516101e9919061228f565b61021a610215366004611af7565b61041f565b6040516101e991906122b8565b61022f610506565b6040516101e991906122c6565b61022f61050c565b61021a610252366004611a0e565b610523565b61022f610676565b61022f610682565b61026f610688565b6040516101e991906124f6565b61028f61028a366004611af7565b61068d565b005b61021a61029f3660046119ae565b6108a9565b6101fa6102b23660046119ae565b6108bd565b6102bf6108d8565b6040516101e991906124cd565b61028f6102da3660046119ae565b6108e0565b6102bf6102ed3660046119ae565b6108f4565b61022f6103003660046119ae565b61090c565b61026f610930565b61032061031b366004611af7565b610935565b6040516101e99190612512565b6101fa610b43565b61022f6103433660046119ae565b610b52565b6101dc610b64565b61021a61035e366004611af7565b610b83565b6103206103713660046119ae565b610bc6565b61028f610384366004611b27565b610c36565b61028f610397366004611a5b565b610e21565b61022f6103aa3660046119d4565b61110e565b61022f611142565b6103ca6103c5366004611bae565b61114e565b6040516101e99291906124db565b61028f6103e63660046119ae565b611183565b6040518060400160405280600981526020016823a9a7102a37b5b2b760b91b81525081565b6002546001600160a01b031681565b600080600019831415610435575060001961045a565b610457836040518060600160405280602481526020016126ba60249139611216565b90505b8060046000610467611245565b6001600160a01b0390811682526020808301939093526040918201600090812091891680825291909352912080546001600160601b0319166001600160601b0393909316929092179091556104ba611245565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516104f29190612504565b60405180910390a360019150505b92915050565b60015481565b60405161051890612279565b604051809103902081565b60008061052e611245565b6001600160a01b03808716600090815260046020908152604080832093851683529281528282205483516060810190945260248085529495506001600160601b03169391926105859288926126ba90830139611216565b9050866001600160a01b0316836001600160a01b0316141580156105b257506001600160601b0382811614155b1561065c5760006105dc83836040518060600160405280603c81526020016126de603c9139611276565b6001600160a01b038981166000818152600460209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610652908590612504565b60405180910390a3505b6106678787836112b5565b600193505050505b9392505050565b6040516105189061226e565b60035481565b601281565b6002546001600160a01b031633146106c05760405162461bcd60e51b81526004016106b79061246d565b60405180910390fd5b6003544210156106e25760405162461bcd60e51b81526004016106b7906123fd565b6001600160a01b0382166107085760405162461bcd60e51b81526004016106b79061243d565b610716426301e1338061145b565b60038190555060006107408260405180606001604052806021815260200161267460219139611216565b905061075c610755600154600260ff16611480565b60646114ba565b816001600160601b031611156107845760405162461bcd60e51b81526004016106b7906123cd565b6107ba61079c600154836001600160601b031661145b565b60405180606001604052806026815260200161274160269139611216565b6001600160601b039081166001556001600160a01b03841660009081526005602090815260409182902054825160608101909352602480845261080d9491909116928592909190612650908301396114fc565b6001600160a01b03841660008181526005602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610877908590612504565b60405180910390a36001600160a01b038084166000908152600660205260408120546108a4921683611538565b505050565b6000546001600160a01b0390811691161490565b6006602052600090815260409020546001600160a01b031681565b6301e1338081565b6108f16108eb611245565b826116ca565b50565b60086020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600560205260409020546001600160601b031690565b600281565b60004382106109565760405162461bcd60e51b81526004016106b79061245d565b6001600160a01b03831660009081526008602052604090205463ffffffff1680610984576000915050610500565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610a00576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610500565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff16831015610a3b576000915050610500565b600060001982015b8163ffffffff168163ffffffff161115610afe57600282820363ffffffff16048103610a6d61196b565b506001600160a01b038716600090815260076020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610ad9576020015194506105009350505050565b805163ffffffff16871115610af057819350610af7565b6001820392505b5050610a43565b506001600160a01b038516600090815260076020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b6000546001600160a01b031681565b60096020526000908152604090205481565b6040518060400160405280600381526020016223a9a760e91b81525081565b600080610ba88360405180606001604052806025815260200161269560259139611216565b9050610bbc610bb5611245565b85836112b5565b5060019392505050565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610bf157600061066f565b6001600160a01b0383166000908152600760209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610c4490612279565b60408051918290038220828201909152600982526823a9a7102a37b5b2b760b91b6020909201919091527fddfc0d869dfd512b4e5f816c48f47c79f198b4cadbf49f3f88d685816da4fac0610c97611754565b30604051602001610cab949392919061236c565b6040516020818303038152906040528051906020012090506000604051610cd190612284565b604051908190038120610cec918a908a908a9060200161232e565b60405160208183030381529060405280519060200120905060008282604051602001610d1992919061223d565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610d5694939291906123a1565b6020604051602081039080840390855afa158015610d78573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610dab5760405162461bcd60e51b81526004016106b79061242d565b6001600160a01b03811660009081526009602052604090208054600181019091558914610dea5760405162461bcd60e51b81526004016106b79061240d565b87421115610e0a5760405162461bcd60e51b81526004016106b7906124bd565b610e14818b6116ca565b505050505b505050505050565b6000600019861415610e365750600019610e5b565b610e588660405180606001604052806023815260200161279660239139611216565b90505b6000604051610e6990612279565b60408051918290038220828201909152600982526823a9a7102a37b5b2b760b91b6020909201919091527fddfc0d869dfd512b4e5f816c48f47c79f198b4cadbf49f3f88d685816da4fac0610ebc611754565b30604051602001610ed0949392919061236c565b6040516020818303038152906040528051906020012090506000604051610ef69061226e565b604080519182900382206001600160a01b038d16600090815260096020908152929020805460018101909155610f389391928e928e928e9290918e91016122d4565b60405160208183030381529060405280519060200120905060008282604051602001610f6592919061223d565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610fa294939291906123a1565b6020604051602081039080840390855afa158015610fc4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610ff75760405162461bcd60e51b81526004016106b79061249d565b8b6001600160a01b0316816001600160a01b0316146110285760405162461bcd60e51b81526004016106b79061241d565b884211156110485760405162461bcd60e51b81526004016106b7906124ad565b84600460008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516110f89190612504565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526004602090815260408083209390941682529190915220546001600160601b031690565b60405161051890612284565b600760209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6002546001600160a01b031633146111ad5760405162461bcd60e51b81526004016106b7906123dd565b6002546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6916111ec916001600160a01b0390911690849061229d565b60405180910390a1600280546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b841061123d5760405162461bcd60e51b81526004016106b791906123bc565b509192915050565b60006014361080159061125c575061125c336108a9565b15611270575060131936013560601c611273565b50335b90565b6000836001600160601b0316836001600160601b0316111582906112ad5760405162461bcd60e51b81526004016106b791906123bc565b505050900390565b6001600160a01b0383166112db5760405162461bcd60e51b81526004016106b79061244d565b6001600160a01b0382166113015760405162461bcd60e51b81526004016106b79061248d565b6001600160a01b03831660009081526005602090815260409182902054825160608101909352603580845261134c936001600160601b03909216928592919061261b90830139611276565b6001600160a01b03848116600090815260056020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352602f8084526113b49491909116928592909190612767908301396114fc565b6001600160a01b038381166000818152600560205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611421908590612504565b60405180910390a36001600160a01b038084166000908152600660205260408082205485841683529120546108a492918216911683611538565b60008282018381101561066f5760405162461bcd60e51b81526004016106b7906123ed565b60008261148f57506000610500565b8282028284828161149c57fe5b041461066f5760405162461bcd60e51b81526004016106b79061247d565b600061066f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611758565b6000838301826001600160601b03808716908316101561152f5760405162461bcd60e51b81526004016106b791906123bc565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561156357506000816001600160601b0316115b156108a4576001600160a01b0383161561161b576001600160a01b03831660009081526008602052604081205463ffffffff1690816115a35760006115e2565b6001600160a01b0385166000908152600760209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000611609828560405180606001604052806027815260200161271a60279139611276565b90506116178684848461178f565b5050505b6001600160a01b038216156108a4576001600160a01b03821660009081526008602052604081205463ffffffff169081611656576000611695565b6001600160a01b0384166000908152600760209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006116bc82856040518060600160405280602681526020016125f5602691396114fc565b9050610e198584848461178f565b6001600160a01b03808316600081815260066020818152604080842080546005845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461174e828483611538565b50505050565b4690565b600081836117795760405162461bcd60e51b81526004016106b791906123bc565b50600083858161178557fe5b0495945050505050565b60006117b3436040518060600160405280603381526020016127b960339139611944565b905060008463ffffffff161180156117fc57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561185b576001600160a01b0385166000908152600760209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b038516021790556118fa565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600783528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600890935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611935929190612520565b60405180910390a25050505050565b600081600160201b841061123d5760405162461bcd60e51b81526004016106b791906123bc565b604080518082019091526000808252602082015290565b8035610500816125c5565b8035610500816125d9565b8035610500816125e2565b8035610500816125eb565b6000602082840312156119c057600080fd5b60006119cc8484611982565b949350505050565b600080604083850312156119e757600080fd5b60006119f38585611982565b9250506020611a0485828601611982565b9150509250929050565b600080600060608486031215611a2357600080fd5b6000611a2f8686611982565b9350506020611a4086828701611982565b9250506040611a518682870161198d565b9150509250925092565b600080600080600080600060e0888a031215611a7657600080fd5b6000611a828a8a611982565b9750506020611a938a828b01611982565b9650506040611aa48a828b0161198d565b9550506060611ab58a828b0161198d565b9450506080611ac68a828b016119a3565b93505060a0611ad78a828b0161198d565b92505060c0611ae88a828b0161198d565b91505092959891949750929550565b60008060408385031215611b0a57600080fd5b6000611b168585611982565b9250506020611a048582860161198d565b60008060008060008060c08789031215611b4057600080fd5b6000611b4c8989611982565b9650506020611b5d89828a0161198d565b9550506040611b6e89828a0161198d565b9450506060611b7f89828a016119a3565b9350506080611b9089828a0161198d565b92505060a0611ba189828a0161198d565b9150509295509295509295565b60008060408385031215611bc157600080fd5b6000611bcd8585611982565b9250506020611a0485828601611998565b611be78161254d565b82525050565b611be781612558565b611be781611273565b611be7611c0b82611273565b611273565b6000611c1b8261253b565b611c25818561253f565b9350611c3581856020860161258f565b611c3e816125bb565b9093019392505050565b6000611c55601c8361253f565b7f47736e3a3a6d696e743a206578636565646564206d696e742063617000000000815260200192915050565b6000611c8e600283612548565b61190160f01b815260020192915050565b6000611cac603d8361253f565b7f47736e3a3a7365744d696e7465723a206f6e6c7920746865206d696e7465722081527f63616e206368616e676520746865206d696e7465722061646472657373000000602082015260400192915050565b6000611d0b601b8361253f565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611d4460228361253f565b7f47736e3a3a6d696e743a206d696e74696e67206e6f7420616c6c6f7765642079815261195d60f21b602082015260400192915050565b6000611d8860218361253f565b7f47736e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e638152606560f81b602082015260400192915050565b6000611dcb60198361253f565b7f47736e3a3a7065726d69743a20756e617574686f72697a656400000000000000815260200192915050565b6000611e0460258361253f565b7f47736e3a3a64656c656761746542795369673a20696e76616c6964207369676e815264617475726560d81b602082015260400192915050565b6000611e4b605283612548565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520192915050565b6000611ec5602e8361253f565b7f47736e3a3a6d696e743a2063616e6e6f74207472616e7366657220746f20746881526d65207a65726f206164647265737360901b602082015260400192915050565b6000611f15603b8361253f565b7f47736e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e736665722066726f6d20746865207a65726f20616464726573730000000000602082015260400192915050565b6000611f74604383612548565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611fdf60268361253f565b7f47736e3a3a6765745072696f72566f7465733a206e6f742079657420646574658152651c9b5a5b995960d21b602082015260400192915050565b600061202760238361253f565b7f47736e3a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206d8152621a5b9d60ea1b602082015260400192915050565b600061206c60218361253f565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b60006120af60398361253f565b7f47736e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e7366657220746f20746865207a65726f206164647265737300000000000000602082015260400192915050565b600061210e601e8361253f565b7f47736e3a3a7065726d69743a20696e76616c6964207369676e61747572650000815260200192915050565b6000612147601e8361253f565b7f47736e3a3a7065726d69743a207369676e617475726520657870697265640000815260200192915050565b6000612180603a83612548565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006121df60258361253f565b7f47736e3a3a64656c656761746542795369673a207369676e61747572652065788152641c1a5c995960da1b602082015260400192915050565b611be781612569565b611be781612572565b611be781612584565b611be781612578565b600061224882611c81565b91506122548285611bff565b6020820191506122648284611bff565b5060200192915050565b600061050082611e3e565b600061050082611f67565b600061050082612173565b602081016105008284611bde565b604081016122ab8285611bde565b61066f6020830184611bde565b602081016105008284611bed565b602081016105008284611bf6565b60c081016122e28289611bf6565b6122ef6020830188611bde565b6122fc6040830187611bde565b6123096060830186611bf6565b6123166080830185611bf6565b61232360a0830184611bf6565b979650505050505050565b6080810161233c8287611bf6565b6123496020830186611bde565b6123566040830185611bf6565b6123636060830184611bf6565b95945050505050565b6080810161237a8287611bf6565b6123876020830186611bf6565b6123946040830185611bf6565b6123636060830184611bde565b608081016123af8287611bf6565b6123496020830186612222565b6020808252810161066f8184611c10565b6020808252810161050081611c48565b6020808252810161050081611c9f565b6020808252810161050081611cfe565b6020808252810161050081611d37565b6020808252810161050081611d7b565b6020808252810161050081611dbe565b6020808252810161050081611df7565b6020808252810161050081611eb8565b6020808252810161050081611f08565b6020808252810161050081611fd2565b602080825281016105008161201a565b602080825281016105008161205f565b60208082528101610500816120a2565b6020808252810161050081612101565b602080825281016105008161213a565b60208082528101610500816121d2565b602081016105008284612219565b604081016124e98285612219565b61066f6020830184612234565b602081016105008284612222565b60208101610500828461222b565b602081016105008284612234565b6040810161252e828561222b565b61066f602083018461222b565b5190565b90815260200190565b919050565b60006105008261255d565b151590565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b600061050082612578565b60005b838110156125aa578181015183820152602001612592565b8381111561174e5750506000910152565b601f01601f191690565b6125ce8161254d565b81146108f157600080fd5b6125ce81611273565b6125ce81612569565b6125ce8161257256fe47736e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777347736e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636547736e3a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f777347736e3a3a6d696e743a20616d6f756e742065786365656473203936206269747347736e3a3a7472616e736665723a20616d6f756e742065786365656473203936206269747347736e3a3a617070726f76653a20616d6f756e742065786365656473203936206269747347736e3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636547736e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777347736e3a3a6d696e743a20746f74616c537570706c792065786365656473203936206269747347736e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777347736e3a3a7065726d69743a20616d6f756e742065786365656473203936206269747347736e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a365627a7a72315820c6679ed4a7e78eb2f1d65351bfb0dafbec0d8f6f1bcedd03704adee568ea203c6c6578706572696d656e74616cf564736f6c63430005100040
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000081ead4918134ae386dbd04346216e20ab8f822c400000000000000000000000081ead4918134ae386dbd04346216e20ab8f822c400000000000000000000000000000000000000000000000000000178f459bb92000000000000000000000000aa3e82b4c4093b4ba13cb5714382c99adbf750ca
-----Decoded View---------------
Arg [0] : account (address): 0x81ead4918134AE386dbd04346216E20AB8F822C4
Arg [1] : minter_ (address): 0x81ead4918134AE386dbd04346216E20AB8F822C4
Arg [2] : mintingAllowedAfter_ (uint256): 1619007224722
Arg [3] : trustedForwarder_ (address): 0xAa3E82b4c4093b4bA13Cb5714382C99ADBf750cA
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000081ead4918134ae386dbd04346216e20ab8f822c4
Arg [1] : 00000000000000000000000081ead4918134ae386dbd04346216e20ab8f822c4
Arg [2] : 00000000000000000000000000000000000000000000000000000178f459bb92
Arg [3] : 000000000000000000000000aa3e82b4c4093b4ba13cb5714382c99adbf750ca
Deployed Bytecode Sourcemap
121:16874:1:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;121:16874:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216:41;;;:::i;:::-;;;;;;;;;;;;;;;;624:21;;;:::i;:::-;;;;;;;;6487:410;;;;;;;;;:::i;:::-;;;;;;;;508:42;;;:::i;:::-;;;;;;;;1820:122;;;:::i;9500:658::-;;;;;;;;;:::i;2237:137::-;;;:::i;712:31::-;;;:::i;412:35::-;;;:::i;:::-;;;;;;;;4550:1039;;;;;;;;;:::i;:::-;;394:126:0;;;;;;;;;:::i;1285:45:1:-;;;;;;;;;:::i;793:61::-;;;:::i;:::-;;;;;;;;10300:102;;;;;;;;;:::i;1701:49::-;;;;;;;;;:::i;8602:106::-;;;;;;;;;:::i;946:33::-;;;:::i;12437:1185::-;;;;;;;;;:::i;:::-;;;;;;;;356:31:0;;;:::i;2452:39:1:-;;;;;;;;;:::i;315:37::-;;;:::i;8964:235::-;;;;;;;;;:::i;11796:219::-;;;;;;;;;:::i;10825:777::-;;;;;;;;;:::i;7375:1031::-;;;;;;;;;:::i;5885:134::-;;;;;;;;;:::i;2033:117::-;;;:::i;1565:70::-;;;;;;;;;:::i;:::-;;;;;;;;;4155:227;;;;;;;;;:::i;216:41::-;;;;;;;;;;;;;;-1:-1:-1;;;216:41:1;;;;:::o;624:21::-;;;-1:-1:-1;;;;;624:21:1;;:::o;6487:410::-;6555:4;6571:13;-1:-1:-1;;6598:9:1;:21;6594:168;;;-1:-1:-1;;;6594:168:1;;;6694:57;6701:9;6694:57;;;;;;;;;;;;;;;;;:6;:57::i;:::-;6685:66;;6594:168;6808:6;6772:10;:24;6783:12;:10;:12::i;:::-;-1:-1:-1;;;;;6772:24:1;;;;;;;;;;;;;;;;;-1:-1:-1;6772:24:1;;;:33;;;;;;;;;;;;:42;;-1:-1:-1;;;;;;6772:42:1;-1:-1:-1;;;;;6772:42:1;;;;;;;;;;;6839:12;:10;:12::i;:::-;-1:-1:-1;;;;;6830:39:1;;6862:6;6830:39;;;;;;;;;;;;;;;6886:4;6879:11;;;6487:410;;;;;:::o;508:42::-;;;;:::o;1820:122::-;1862:80;;;;;;;;;;;;;;1820:122;:::o;9500:658::-;9582:4;9598:15;9616:12;:10;:12::i;:::-;-1:-1:-1;;;;;9664:15:1;;;9638:23;9664:15;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;9714:57;;;;;;;;;;;;9598:30;;-1:-1:-1;;;;;;9664:24:1;;9638:23;;9714:57;;9721:9;;9714:57;;;;;:6;:57::i;:::-;9698:73;;9797:3;-1:-1:-1;;;;;9786:14:1;:7;-1:-1:-1;;;;;9786:14:1;;;:48;;;;-1:-1:-1;;;;;;9804:30:1;;;;;9786:48;9782:305;;;9850:19;9872:95;9878:16;9896:6;9872:95;;;;;;;;;;;;;;;;;:5;:95::i;:::-;-1:-1:-1;;;;;9981:15:1;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;;:39;;-1:-1:-1;;;;;;9981:39:1;-1:-1:-1;;;;;9981:39:1;;;;;10040:36;9981:39;;-1:-1:-1;9981:24:1;;10040:36;;;;9981:39;;10040:36;;;;;;;;;;9782:305;;10097:33;10113:3;10118;10123:6;10097:15;:33::i;:::-;10147:4;10140:11;;;;;9500:658;;;;;;:::o;2237:137::-;2279:95;;;;;;712:31;;;;:::o;412:35::-;445:2;412:35;:::o;4550:1039::-;4634:6;;-1:-1:-1;;;;;4634:6:1;4620:10;:20;4612:68;;;;-1:-1:-1;;;4612:68:1;;;;;;;;;;;;;;;;;4717:19;;4698:15;:38;;4690:85;;;;-1:-1:-1;;;4690:85:1;;;;;;;;;-1:-1:-1;;;;;4793:17:1;;4785:76;;;;-1:-1:-1;;;4785:76:1;;;;;;;;;4921:54;4934:15;842:12;4921;:54::i;:::-;4899:19;:76;;;;5013:13;5029:54;5036:9;5029:54;;;;;;;;;;;;;;;;;:6;:54::i;:::-;5013:70;;5111:53;5124:34;5137:11;;978:1;5124:34;;:12;:34::i;:::-;5160:3;5111:12;:53::i;:::-;5101:6;-1:-1:-1;;;;;5101:63:1;;;5093:104;;;;-1:-1:-1;;;5093:104:1;;;;;;;;;5221:83;5228:33;5241:11;;5254:6;-1:-1:-1;;;;;5228:33:1;:12;:33::i;:::-;5221:83;;;;;;;;;;;;;;;;;:6;:83::i;:::-;-1:-1:-1;;;;;5207:97:1;;;:11;:97;-1:-1:-1;;;;;5385:13:1;;;;;;:8;:13;;;;;;;;;;5379:68;;;;;;;;;;;;;;5385:13;;;;;5400:6;;5379:68;;;;;;;;:5;:68::i;:::-;-1:-1:-1;;;;;5363:13:1;;;;;;:8;:13;;;;;;:84;;-1:-1:-1;;;;;;5363:84:1;-1:-1:-1;;;;;5363:84:1;;;;;;;;;;;5462:33;;5363:13;;;5462:33;;;;5488:6;;5462:33;;;;;;;;;;-1:-1:-1;;;;;5559:14:1;;;5555:1;5559:14;;;:9;:14;;;;;;5532:50;;5559:14;5575:6;5532:14;:50::i;:::-;4550:1039;;;:::o;394:126:0:-;461:4;497:16;-1:-1:-1;;;;;497:16:0;;;484:29;;;;394:126::o;1285:45:1:-;;;;;;;;;;;;-1:-1:-1;;;;;1285:45:1;;:::o;793:61::-;842:12;793:61;:::o;10300:102::-;10361:34;10371:12;:10;:12::i;:::-;10385:9;10361;:34::i;:::-;10300:102;:::o;1701:49::-;;;;;;;;;;;;;;;:::o;8602:106::-;-1:-1:-1;;;;;8684:17:1;8661:4;8684:17;;;:8;:17;;;;;;-1:-1:-1;;;;;8684:17:1;;8602:106::o;946:33::-;978:1;946:33;:::o;12437:1185::-;12516:6;12556:12;12542:11;:26;12534:77;;;;-1:-1:-1;;;12534:77:1;;;;;;;;;-1:-1:-1;;;;;12644:23:1;;12622:19;12644:23;;;:14;:23;;;;;;;;12681:17;12677:56;;12721:1;12714:8;;;;;12677:56;-1:-1:-1;;;;;12790:20:1;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12811:16:1;;12790:38;;;;;;;;;:48;;:63;-1:-1:-1;12786:145:1;;-1:-1:-1;;;;;12876:20:1;;;;;;:11;:20;;;;;;;;-1:-1:-1;;12897:16:1;;;;12876:38;;;;;;;;:44;-1:-1:-1;;;12876:44:1;;-1:-1:-1;;;;;12876:44:1;;-1:-1:-1;12869:51:1;;12786:145;-1:-1:-1;;;;;12989:20:1;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;12985:86:1;;;13059:1;13052:8;;;;;12985:86;13081:12;-1:-1:-1;;13122:16:1;;13148:418;13163:5;13155:13;;:5;:13;;;13148:418;;;13226:1;13209:13;;;13208:19;;;13200:27;;13268:20;;:::i;:::-;-1:-1:-1;;;;;;13291:20:1;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;13268:51;;;;;;;;;;;;;;;-1:-1:-1;;;13268:51:1;;;-1:-1:-1;;;;;13268:51:1;;;;;;;;;13337:27;;13333:223;;;13391:8;;;;-1:-1:-1;13384:15:1;;-1:-1:-1;;;;13384:15:1;13333:223;13424:12;;:26;;;-1:-1:-1;13420:136:1;;;13478:6;13470:14;;13420:136;;;13540:1;13531:6;:10;13523:18;;13420:136;13148:418;;;;;-1:-1:-1;;;;;;13582:20:1;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;13582:33:1;;;;;-1:-1:-1;;12437:1185:1;;;;:::o;356:31:0:-;;;-1:-1:-1;;;;;356:31:0;;:::o;2452:39:1:-;;;;;;;;;;;;;:::o;315:37::-;;;;;;;;;;;;;;-1:-1:-1;;;315:37:1;;;;:::o;8964:235::-;9029:4;9045:13;9061:58;9068:9;9061:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;9045:74;;9129:42;9145:12;:10;:12::i;:::-;9159:3;9164:6;9129:15;:42::i;:::-;-1:-1:-1;9188:4:1;;8964:235;-1:-1:-1;;;8964:235:1:o;11796:219::-;-1:-1:-1;;;;;11901:23:1;;11861:6;11901:23;;;:14;:23;;;;;;;;11941:16;:67;;12007:1;11941:67;;;-1:-1:-1;;;;;11960:20:1;;;;;;:11;:20;;;;;;;;-1:-1:-1;;11981:16:1;;11960:38;;;;;;;;;:44;-1:-1:-1;;;11960:44:1;;-1:-1:-1;;;;;11960:44:1;11934:74;11796:219;-1:-1:-1;;;11796:219:1:o;10825:777::-;10940:23;1862:80;;;;;;;;;;;;;;;;11020:4;;;;;;;;;-1:-1:-1;;;11020:4:1;;;;;;;;11004:22;11028:12;:10;:12::i;:::-;11050:4;10976:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;10976:80:1;;;10966:91;;;;;;10940:117;;11067:18;2079:71;;;;;;;;;;;;;;;11098:57;;11130:9;;11141:5;;11148:6;;11098:57;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;11098:57:1;;;11088:68;;;;;;11067:89;;11166:14;11222:15;11239:10;11193:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;11193:57:1;;;11183:68;;;;;;11166:85;;11261:17;11281:26;11291:6;11299:1;11302;11305;11281:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;11281:26:1;;-1:-1:-1;;11281:26:1;;;-1:-1:-1;;;;;;;11325:23:1;;11317:73;;;;-1:-1:-1;;;11317:73:1;;;;;;;;;-1:-1:-1;;;;;11417:17:1;;;;;;:6;:17;;;;;:19;;;;;;;;11408:28;;11400:74;;;;-1:-1:-1;;;11400:74:1;;;;;;;;;11499:6;11492:3;:13;;11484:63;;;;-1:-1:-1;;;11484:63:1;;;;;;;;;11564:31;11574:9;11585;11564;:31::i;:::-;11557:38;;;;10825:777;;;;;;;:::o;7375:1031::-;7504:13;-1:-1:-1;;7531:9:1;:21;7527:167;;;-1:-1:-1;;;7527:167:1;;;7627:56;7634:9;7627:56;;;;;;;;;;;;;;;;;:6;:56::i;:::-;7618:65;;7527:167;7704:23;1862:80;;;;;;;;;;;;;;;;7784:4;;;;;;;;;-1:-1:-1;;;7784:4:1;;;;;;;;7768:22;7792:12;:10;:12::i;:::-;7814:4;7740:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;7740:80:1;;;7730:91;;;;;;7704:117;;7831:18;2279:95;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7917:13:1;;;;;;:6;:13;;;;;;;:15;;;;;;;;7862:81;;2279:95;;7890:5;;7897:7;;7906:9;;7917:15;;7934:8;;7862:81;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;7862:81:1;;;7852:92;;;;;;7831:113;;7954:14;8010:15;8027:10;7981:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;7981:57:1;;;7971:68;;;;;;7954:85;;8049:17;8069:26;8079:6;8087:1;8090;8093;8069:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;8069:26:1;;-1:-1:-1;;8069:26:1;;;-1:-1:-1;;;;;;;8113:23:1;;8105:66;;;;-1:-1:-1;;;8105:66:1;;;;;;;;;8202:5;-1:-1:-1;;;;;8189:18:1;:9;-1:-1:-1;;;;;8189:18:1;;8181:56;;;;-1:-1:-1;;;8181:56:1;;;;;;;;;8262:8;8255:3;:15;;8247:58;;;;-1:-1:-1;;;8247:58:1;;;;;;;;;8345:6;8316:10;:17;8327:5;-1:-1:-1;;;;;8316:17:1;-1:-1:-1;;;;;8316:17:1;;;;;;;;;;;;:26;8334:7;-1:-1:-1;;;;;8316:26:1;-1:-1:-1;;;;;8316:26:1;;;;;;;;;;;;;:35;;;;;-1:-1:-1;;;;;8316:35:1;;;;;-1:-1:-1;;;;;8316:35:1;;;;;;8383:7;-1:-1:-1;;;;;8367:32:1;8376:5;-1:-1:-1;;;;;8367:32:1;;8392:6;8367:32;;;;;;;;;;;;;;;7375:1031;;;;;;;;;;;;:::o;5885:134::-;-1:-1:-1;;;;;5984:19:1;;;5961:4;5984:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;-1:-1:-1;;;;;5984:28:1;;5885:134::o;2033:117::-;2079:71;;;;;;1565:70;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1565:70:1;;-1:-1:-1;;;;;1565:70:1;;:::o;4155:227::-;4232:6;;-1:-1:-1;;;;;4232:6:1;4218:10;:20;4210:94;;;;-1:-1:-1;;;4210:94:1;;;;;;;;;4333:6;;4319:30;;;;;;-1:-1:-1;;;;;4333:6:1;;;;4341:7;;4319:30;;;;;;;;;;4359:6;:16;;-1:-1:-1;;;;;;4359:16:1;-1:-1:-1;;;;;4359:16:1;;;;;;;;;;4155:227::o;16322:158::-;16397:6;16434:12;-1:-1:-1;;;16423:9:1;;16415:32;;;;-1:-1:-1;;;16415:32:1;;;;;;;;;;-1:-1:-1;16471:1:1;;16322:158;-1:-1:-1;;16322:158:1:o;772:539:0:-;817:19;871:2;852:8;:21;;;;:55;;;877:30;896:10;877:18;:30::i;:::-;848:457;;;-1:-1:-1;;;1213:14:0;1209:22;1196:36;1193:2;1189:44;1164:83;;;-1:-1:-1;1284:10:0;848:457;772:539;:::o;16676:162:1:-;16762:6;16793:1;-1:-1:-1;;;;;16788:6:1;:1;-1:-1:-1;;;;;16788:6:1;;;16796:12;16780:29;;;;;-1:-1:-1;;;16780:29:1;;;;;;;;;;-1:-1:-1;;;16826:5:1;;;16676:162::o;14001:601::-;-1:-1:-1;;;;;14094:17:1;;14086:89;;;;-1:-1:-1;;;14086:89:1;;;;;;;;;-1:-1:-1;;;;;14193:17:1;;14185:87;;;;-1:-1:-1;;;14185:87:1;;;;;;;;;-1:-1:-1;;;;;14305:13:1;;;;;;:8;:13;;;;;;;;;;14299:85;;;;;;;;;;;;;;-1:-1:-1;;;;;14305:13:1;;;;14320:6;;14299:85;;;;;;;:5;:85::i;:::-;-1:-1:-1;;;;;14283:13:1;;;;;;;:8;:13;;;;;;;;:101;;-1:-1:-1;;;;;;14283:101:1;-1:-1:-1;;;;;14283:101:1;;;;;;14416:13;;;;;;;;;;14410:79;;;;;;;;;;;;;;14416:13;;;;;14431:6;;14410:79;;;;;;;;:5;:79::i;:::-;-1:-1:-1;;;;;14394:13:1;;;;;;;:8;:13;;;;;;;:95;;-1:-1:-1;;;;;;14394:95:1;-1:-1:-1;;;;;14394:95:1;;;;;;;;;;;14504:26;;;;;;;;;;14523:6;;14504:26;;;;;;;;;;-1:-1:-1;;;;;14556:14:1;;;;;;;:9;:14;;;;;;;14572;;;;;;;;14541:54;;14556:14;;;;14572;14588:6;14541:14;:54::i;959:176:5:-;1017:7;1048:5;;;1071:6;;;;1063:46;;;;-1:-1:-1;;;1063:46:5;;;;;;;;2656:459;2714:7;2955:6;2951:45;;-1:-1:-1;2984:1:5;2977:8;;2951:45;3018:5;;;3022:1;3018;:5;:1;3041:5;;;;;:10;3033:56;;;;-1:-1:-1;;;3033:56:5;;;;;;;;4267:130;4325:7;4351:39;4355:1;4358;4351:39;;;;;;;;;;;;;;;;;:3;:39::i;16486:184:1:-;16572:6;16601:5;;;16632:12;-1:-1:-1;;;;;16624:6:1;;;;;;;;16616:29;;;;-1:-1:-1;;;16616:29:1;;;;;;;;;;-1:-1:-1;16662:1:1;16486:184;-1:-1:-1;;;;16486:184:1:o;14608:921::-;14712:6;-1:-1:-1;;;;;14702:16:1;:6;-1:-1:-1;;;;;14702:16:1;;;:30;;;;;14731:1;14722:6;-1:-1:-1;;;;;14722:10:1;;14702:30;14698:825;;;-1:-1:-1;;;;;14752:20:1;;;14748:376;;-1:-1:-1;;;;;14811:22:1;;14792:16;14811:22;;;:14;:22;;;;;;;;;14870:13;:60;;14929:1;14870:60;;;-1:-1:-1;;;;;14886:19:1;;;;;;:11;:19;;;;;;;;-1:-1:-1;;14906:13:1;;14886:34;;;;;;;;;:40;-1:-1:-1;;;14886:40:1;;-1:-1:-1;;;;;14886:40:1;14870:60;14851:79;;14948:16;14967:67;14973:9;14984:6;14967:67;;;;;;;;;;;;;;;;;:5;:67::i;:::-;14948:86;;15052:57;15069:6;15077:9;15088;15099;15052:16;:57::i;:::-;14748:376;;;;-1:-1:-1;;;;;15142:20:1;;;15138:375;;-1:-1:-1;;;;;15201:22:1;;15182:16;15201:22;;;:14;:22;;;;;;;;;15260:13;:60;;15319:1;15260:60;;;-1:-1:-1;;;;;15276:19:1;;;;;;:11;:19;;;;;;;;-1:-1:-1;;15296:13:1;;15276:34;;;;;;;;;:40;-1:-1:-1;;;15276:40:1;;-1:-1:-1;;;;;15276:40:1;15260:60;15241:79;;15338:16;15357:66;15363:9;15374:6;15357:66;;;;;;;;;;;;;;;;;:5;:66::i;:::-;15338:85;;15441:57;15458:6;15466:9;15477;15488;15441:16;:57::i;13628:367::-;-1:-1:-1;;;;;13730:20:1;;;13704:23;13730:20;;;:9;:20;;;;;;;;;;13786:8;:19;;;;;;13815:20;;;;:32;;;-1:-1:-1;;;;;;13815:32:1;;;;;;;13863:54;;13730:20;;;;;-1:-1:-1;;;;;13786:19:1;;;;13815:32;;13730:20;;;13863:54;;13704:23;13863:54;13928:60;13943:15;13960:9;13971:16;13928:14;:60::i;:::-;13628:367;;;;:::o;16844:149::-;16952:9;16844:149;:::o;4872:338:5:-;4958:7;5058:12;5051:5;5043:28;;;;-1:-1:-1;;;5043:28:5;;;;;;;;;;;5081:9;5097:1;5093;:5;;;;;;;4872:338;-1:-1:-1;;;;;4872:338:5:o;15535:617:1:-;15652:18;15673:75;15680:12;15673:75;;;;;;;;;;;;;;;;;:6;:75::i;:::-;15652:96;;15776:1;15761:12;:16;;;:85;;;;-1:-1:-1;;;;;;15781:22:1;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;15804:16:1;;15781:40;;;;;;;;;:50;:65;;;:50;;:65;15761:85;15757:324;;;-1:-1:-1;;;;;15860:22:1;;;;;;:11;:22;;;;;;;;-1:-1:-1;;15883:16:1;;15860:40;;;;;;;;;:57;;-1:-1:-1;;15860:57:1;-1:-1:-1;;;;;;;;15860:57:1;;;;;;15757:324;;;15983:33;;;;;;;;;;;;;;-1:-1:-1;;;;;15983:33:1;;;;;;;;;;-1:-1:-1;;;;;15944:22:1;;-1:-1:-1;15944:22:1;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;-1:-1:-1;;;15944:72:1;-1:-1:-1;;15944:72:1;;;-1:-1:-1;;15944:72:1;;;;;;;;;;;;;;;16028:25;;;:14;:25;;;;;;;:44;;15944:72;16056:16;;16028:44;;;;;;;;;;;;;15757:324;16115:9;-1:-1:-1;;;;;16094:51:1;;16126:8;16136;16094:51;;;;;;;;;;;;;;;;15535:617;;;;;:::o;16158:158::-;16233:6;16270:12;-1:-1:-1;;;16259:9:1;;16251:32;;;;-1:-1:-1;;;16251:32:1;;;;;;;;;121:16874;;;;;;;;;;-1:-1:-1;121:16874:1;;;;;;;;:::o;5:130:-1:-;72:20;;97:33;72:20;97:33;;142:130;209:20;;234:33;209:20;234:33;;416:128;482:20;;507:32;482:20;507:32;;551:126;616:20;;641:31;616:20;641:31;;684:241;;788:2;776:9;767:7;763:23;759:32;756:2;;;804:1;801;794:12;756:2;839:1;856:53;901:7;881:9;856:53;;;846:63;750:175;-1:-1;;;;750:175;932:366;;;1053:2;1041:9;1032:7;1028:23;1024:32;1021:2;;;1069:1;1066;1059:12;1021:2;1104:1;1121:53;1166:7;1146:9;1121:53;;;1111:63;;1083:97;1211:2;1229:53;1274:7;1265:6;1254:9;1250:22;1229:53;;;1219:63;;1190:98;1015:283;;;;;;1305:491;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1459:1;1456;1449:12;1411:2;1494:1;1511:53;1556:7;1536:9;1511:53;;;1501:63;;1473:97;1601:2;1619:53;1664:7;1655:6;1644:9;1640:22;1619:53;;;1609:63;;1580:98;1709:2;1727:53;1772:7;1763:6;1752:9;1748:22;1727:53;;;1717:63;;1688:98;1405:391;;;;;;1803:991;;;;;;;;2007:3;1995:9;1986:7;1982:23;1978:33;1975:2;;;2024:1;2021;2014:12;1975:2;2059:1;2076:53;2121:7;2101:9;2076:53;;;2066:63;;2038:97;2166:2;2184:53;2229:7;2220:6;2209:9;2205:22;2184:53;;;2174:63;;2145:98;2274:2;2292:53;2337:7;2328:6;2317:9;2313:22;2292:53;;;2282:63;;2253:98;2382:2;2400:53;2445:7;2436:6;2425:9;2421:22;2400:53;;;2390:63;;2361:98;2490:3;2509:51;2552:7;2543:6;2532:9;2528:22;2509:51;;;2499:61;;2469:97;2597:3;2616:53;2661:7;2652:6;2641:9;2637:22;2616:53;;;2606:63;;2576:99;2706:3;2725:53;2770:7;2761:6;2750:9;2746:22;2725:53;;;2715:63;;2685:99;1969:825;;;;;;;;;;;2801:366;;;2922:2;2910:9;2901:7;2897:23;2893:32;2890:2;;;2938:1;2935;2928:12;2890:2;2973:1;2990:53;3035:7;3015:9;2990:53;;;2980:63;;2952:97;3080:2;3098:53;3143:7;3134:6;3123:9;3119:22;3098:53;;3174:865;;;;;;;3361:3;3349:9;3340:7;3336:23;3332:33;3329:2;;;3378:1;3375;3368:12;3329:2;3413:1;3430:53;3475:7;3455:9;3430:53;;;3420:63;;3392:97;3520:2;3538:53;3583:7;3574:6;3563:9;3559:22;3538:53;;;3528:63;;3499:98;3628:2;3646:53;3691:7;3682:6;3671:9;3667:22;3646:53;;;3636:63;;3607:98;3736:2;3754:51;3797:7;3788:6;3777:9;3773:22;3754:51;;;3744:61;;3715:96;3842:3;3861:53;3906:7;3897:6;3886:9;3882:22;3861:53;;;3851:63;;3821:99;3951:3;3970:53;4015:7;4006:6;3995:9;3991:22;3970:53;;;3960:63;;3930:99;3323:716;;;;;;;;;4046:364;;;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;4182:1;4179;4172:12;4134:2;4217:1;4234:53;4279:7;4259:9;4234:53;;;4224:63;;4196:97;4324:2;4342:52;4386:7;4377:6;4366:9;4362:22;4342:52;;4417:113;4500:24;4518:5;4500:24;;;4495:3;4488:37;4482:48;;;4537:104;4614:21;4629:5;4614:21;;4648:113;4731:24;4749:5;4731:24;;4768:152;4869:45;4889:24;4907:5;4889:24;;;4869:45;;4927:347;;5039:39;5072:5;5039:39;;;5090:71;5154:6;5149:3;5090:71;;;5083:78;;5166:52;5211:6;5206:3;5199:4;5192:5;5188:16;5166:52;;;5239:29;5261:6;5239:29;;;5230:39;;;;5019:255;-1:-1;;;5019:255;5628:328;;5788:67;5852:2;5847:3;5788:67;;;5888:30;5868:51;;5947:2;5938:12;;5774:182;-1:-1;;5774:182;5965:398;;6143:84;6225:1;6220:3;6143:84;;;-1:-1;;;6240:87;;6355:1;6346:11;;6129:234;-1:-1;;6129:234;6372:398;;6532:67;6596:2;6591:3;6532:67;;;6632:34;6612:55;;6701:31;6696:2;6687:12;;6680:53;6761:2;6752:12;;6518:252;-1:-1;;6518:252;6779:327;;6939:67;7003:2;6998:3;6939:67;;;7039:29;7019:50;;7097:2;7088:12;;6925:181;-1:-1;;6925:181;7115:371;;7275:67;7339:2;7334:3;7275:67;;;7375:34;7355:55;;-1:-1;;;7439:2;7430:12;;7423:26;7477:2;7468:12;;7261:225;-1:-1;;7261:225;7495:370;;7655:67;7719:2;7714:3;7655:67;;;7755:34;7735:55;;-1:-1;;;7819:2;7810:12;;7803:25;7856:2;7847:12;;7641:224;-1:-1;;7641:224;7874:325;;8034:67;8098:2;8093:3;8034:67;;;8134:27;8114:48;;8190:2;8181:12;;8020:179;-1:-1;;8020:179;8208:374;;8368:67;8432:2;8427:3;8368:67;;;8468:34;8448:55;;-1:-1;;;8532:2;8523:12;;8516:29;8573:2;8564:12;;8354:228;-1:-1;;8354:228;8591:492;;8769:85;8851:2;8846:3;8769:85;;;8887:34;8867:55;;8956:34;8951:2;8942:12;;8935:56;-1:-1;;;9020:2;9011:12;;9004:42;9074:2;9065:12;;8755:328;-1:-1;;8755:328;9092:383;;9252:67;9316:2;9311:3;9252:67;;;9352:34;9332:55;;-1:-1;;;9416:2;9407:12;;9400:38;9466:2;9457:12;;9238:237;-1:-1;;9238:237;9484:396;;9644:67;9708:2;9703:3;9644:67;;;9744:34;9724:55;;9813:29;9808:2;9799:12;;9792:51;9871:2;9862:12;;9630:250;-1:-1;;9630:250;9889:477;;10067:85;10149:2;10144:3;10067:85;;;10185:34;10165:55;;10254:34;10249:2;10240:12;;10233:56;-1:-1;;;10318:2;10309:12;;10302:27;10357:2;10348:12;;10053:313;-1:-1;;10053:313;10375:375;;10535:67;10599:2;10594:3;10535:67;;;10635:34;10615:55;;-1:-1;;;10699:2;10690:12;;10683:30;10741:2;10732:12;;10521:229;-1:-1;;10521:229;10759:372;;10919:67;10983:2;10978:3;10919:67;;;11019:34;10999:55;;-1:-1;;;11083:2;11074:12;;11067:27;11122:2;11113:12;;10905:226;-1:-1;;10905:226;11140:370;;11300:67;11364:2;11359:3;11300:67;;;11400:34;11380:55;;-1:-1;;;11464:2;11455:12;;11448:25;11501:2;11492:12;;11286:224;-1:-1;;11286:224;11519:394;;11679:67;11743:2;11738:3;11679:67;;;11779:34;11759:55;;11848:27;11843:2;11834:12;;11827:49;11904:2;11895:12;;11665:248;-1:-1;;11665:248;11922:330;;12082:67;12146:2;12141:3;12082:67;;;12182:32;12162:53;;12243:2;12234:12;;12068:184;-1:-1;;12068:184;12261:330;;12421:67;12485:2;12480:3;12421:67;;;12521:32;12501:53;;12582:2;12573:12;;12407:184;-1:-1;;12407:184;12600:431;;12778:85;12860:2;12855:3;12778:85;;;12896:34;12876:55;;12965:28;12960:2;12951:12;;12944:50;13022:2;13013:12;;12764:267;-1:-1;;12764:267;13040:374;;13200:67;13264:2;13259:3;13200:67;;;13300:34;13280:55;;-1:-1;;;13364:2;13355:12;;13348:29;13405:2;13396:12;;13186:228;-1:-1;;13186:228;13542:110;13623:23;13640:5;13623:23;;13659:107;13738:22;13754:5;13738:22;;13773:124;13855:36;13885:5;13855:36;;13904:110;13985:23;14002:5;13985:23;;14021:650;;14276:148;14420:3;14276:148;;;14269:155;;14435:75;14506:3;14497:6;14435:75;;;14532:2;14527:3;14523:12;14516:19;;14546:75;14617:3;14608:6;14546:75;;;-1:-1;14643:2;14634:12;;14257:414;-1:-1;;14257:414;14678:372;;14877:148;15021:3;14877:148;;15057:372;;15256:148;15400:3;15256:148;;15436:372;;15635:148;15779:3;15635:148;;15815:213;15933:2;15918:18;;15947:71;15922:9;15991:6;15947:71;;16035:324;16181:2;16166:18;;16195:71;16170:9;16239:6;16195:71;;;16277:72;16345:2;16334:9;16330:18;16321:6;16277:72;;16366:201;16478:2;16463:18;;16492:65;16467:9;16530:6;16492:65;;16574:213;16692:2;16677:18;;16706:71;16681:9;16750:6;16706:71;;16794:771;17052:3;17037:19;;17067:71;17041:9;17111:6;17067:71;;;17149:72;17217:2;17206:9;17202:18;17193:6;17149:72;;;17232;17300:2;17289:9;17285:18;17276:6;17232:72;;;17315;17383:2;17372:9;17368:18;17359:6;17315:72;;;17398:73;17466:3;17455:9;17451:19;17442:6;17398:73;;;17482;17550:3;17539:9;17535:19;17526:6;17482:73;;;17023:542;;;;;;;;;;17572:547;17774:3;17759:19;;17789:71;17763:9;17833:6;17789:71;;;17871:72;17939:2;17928:9;17924:18;17915:6;17871:72;;;17954;18022:2;18011:9;18007:18;17998:6;17954:72;;;18037;18105:2;18094:9;18090:18;18081:6;18037:72;;;17745:374;;;;;;;;18126:547;18328:3;18313:19;;18343:71;18317:9;18387:6;18343:71;;;18425:72;18493:2;18482:9;18478:18;18469:6;18425:72;;;18508;18576:2;18565:9;18561:18;18552:6;18508:72;;;18591;18659:2;18648:9;18644:18;18635:6;18591:72;;18680:539;18878:3;18863:19;;18893:71;18867:9;18937:6;18893:71;;;18975:68;19039:2;19028:9;19024:18;19015:6;18975:68;;19226:293;19360:2;19374:47;;;19345:18;;19435:74;19345:18;19495:6;19435:74;;19834:407;20025:2;20039:47;;;20010:18;;20100:131;20010:18;20100:131;;20248:407;20439:2;20453:47;;;20424:18;;20514:131;20424:18;20514:131;;20662:407;20853:2;20867:47;;;20838:18;;20928:131;20838:18;20928:131;;21076:407;21267:2;21281:47;;;21252:18;;21342:131;21252:18;21342:131;;21490:407;21681:2;21695:47;;;21666:18;;21756:131;21666:18;21756:131;;21904:407;22095:2;22109:47;;;22080:18;;22170:131;22080:18;22170:131;;22318:407;22509:2;22523:47;;;22494:18;;22584:131;22494:18;22584:131;;22732:407;22923:2;22937:47;;;22908:18;;22998:131;22908:18;22998:131;;23146:407;23337:2;23351:47;;;23322:18;;23412:131;23322:18;23412:131;;23560:407;23751:2;23765:47;;;23736:18;;23826:131;23736:18;23826:131;;23974:407;24165:2;24179:47;;;24150:18;;24240:131;24150:18;24240:131;;24388:407;24579:2;24593:47;;;24564:18;;24654:131;24564:18;24654:131;;24802:407;24993:2;25007:47;;;24978:18;;25068:131;24978:18;25068:131;;25216:407;25407:2;25421:47;;;25392:18;;25482:131;25392:18;25482:131;;25630:407;25821:2;25835:47;;;25806:18;;25896:131;25806:18;25896:131;;26044:407;26235:2;26249:47;;;26220:18;;26310:131;26220:18;26310:131;;26678:209;26794:2;26779:18;;26808:69;26783:9;26850:6;26808:69;;26894:316;27036:2;27021:18;;27050:69;27025:9;27092:6;27050:69;;;27130:70;27196:2;27185:9;27181:18;27172:6;27130:70;;27217:205;27331:2;27316:18;;27345:67;27320:9;27385:6;27345:67;;27429:211;27546:2;27531:18;;27560:70;27535:9;27603:6;27560:70;;27647:209;27763:2;27748:18;;27777:69;27752:9;27819:6;27777:69;;27863:320;28007:2;27992:18;;28021:70;27996:9;28064:6;28021:70;;;28102:71;28169:2;28158:9;28154:18;28145:6;28102:71;;28190:118;28274:12;;28245:63;28445:163;28548:19;;;28597:4;28588:14;;28541:67;28617:145;28753:3;28731:31;-1:-1;28731:31;28770:91;;28832:24;28850:5;28832:24;;28868:85;28934:13;28927:21;;28910:43;29039:121;-1:-1;;;;;29101:54;;29084:76;29246:88;29318:10;29307:22;;29290:44;29341:81;29412:4;29401:16;;29384:38;29429:104;-1:-1;;;;;29490:38;;29473:60;29540:106;;29618:23;29635:5;29618:23;;29654:268;29719:1;29726:101;29740:6;29737:1;29734:13;29726:101;;;29807:11;;;29801:18;29788:11;;;29781:39;29762:2;29755:10;29726:101;;;29842:6;29839:1;29836:13;29833:2;;;-1:-1;;29907:1;29889:16;;29882:27;29703:219;30011:97;30099:2;30079:14;-1:-1;;30075:28;;30059:49;30116:117;30185:24;30203:5;30185:24;;;30178:5;30175:35;30165:2;;30224:1;30221;30214:12;30240:117;30309:24;30327:5;30309:24;;30488:115;30556:23;30573:5;30556:23;;30610:113;30677:22;30693:5;30677:22;
Swarm Source
bzzr://c6679ed4a7e78eb2f1d65351bfb0dafbec0d8f6f1bcedd03704adee568ea203c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.