More Info
Private Name Tags
ContractCreator
TokenTracker
Multichain Info
No addresses found
Latest 25 from a total of 6,209 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18285652 | 4 hrs ago | IN | 0 ETH | 0 | ||||
Approve | 18269828 | 13 hrs ago | IN | 0 ETH | 0 | ||||
Approve | 18216514 | 42 hrs ago | IN | 0 ETH | 0.00000005 | ||||
Approve | 18166228 | 2 days ago | IN | 0 ETH | 0.00000005 | ||||
Approve | 18081573 | 4 days ago | IN | 0 ETH | 0.00000007 | ||||
Approve | 17989948 | 7 days ago | IN | 0 ETH | 0.00000012 | ||||
Approve | 17988412 | 7 days ago | IN | 0 ETH | 0.0000001 | ||||
Transfer | 17985328 | 7 days ago | IN | 0 ETH | 0.00000017 | ||||
Transfer | 17985312 | 7 days ago | IN | 0 ETH | 0.00000017 | ||||
Transfer | 17985290 | 7 days ago | IN | 0 ETH | 0.00000017 | ||||
Approve | 17956034 | 7 days ago | IN | 0 ETH | 0.00000013 | ||||
Approve | 17869563 | 9 days ago | IN | 0 ETH | 0.0000001 | ||||
Approve | 17844359 | 10 days ago | IN | 0 ETH | 0.00000005 | ||||
Approve | 17804842 | 11 days ago | IN | 0 ETH | 0.00000001 | ||||
Approve | 17795438 | 11 days ago | IN | 0 ETH | 0.00000002 | ||||
Approve | 17772269 | 12 days ago | IN | 0 ETH | 0.00000002 | ||||
Approve | 17659684 | 14 days ago | IN | 0 ETH | 0.00000005 | ||||
Approve | 17546322 | 17 days ago | IN | 0 ETH | 0.00000002 | ||||
Approve | 17546319 | 17 days ago | IN | 0 ETH | 0.00000002 | ||||
Approve | 17542003 | 17 days ago | IN | 0 ETH | 0.00000006 | ||||
Approve | 17509442 | 18 days ago | IN | 0 ETH | 0.00000008 | ||||
Approve | 17453938 | 19 days ago | IN | 0 ETH | 0 | ||||
Approve | 17343706 | 21 days ago | IN | 0 ETH | 0.00000001 | ||||
Transfer | 17316018 | 22 days ago | IN | 0 ETH | 0.00000001 | ||||
Transfer | 17316011 | 22 days ago | IN | 0 ETH | 0.00000001 |
Loading...
Loading
Contract Name:
RingToken
Compiler Version
v0.6.6+commit.6c089d02
Optimization Enabled:
Yes with 999999 runs
Other Settings:
istanbul EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity =0.6.6; pragma experimental ABIEncoderV2; import "./SafeMath.sol"; import "./BlastManager.sol"; contract RingToken is BlastManager { /// @notice EIP-20 token name for this token string public constant name = "Ring Governance Token"; /// @notice EIP-20 token symbol for this token string public constant symbol = "RING"; /// @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 Ring Token /// @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 Ring 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_) public { require(mintingAllowedAfter_ >= block.timestamp, "Ring::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_; } /** * @notice Change the minter address * @param minter_ The address of the new minter */ function setMinter(address minter_) external { require(msg.sender == minter, "Ring::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, "Ring::mint: only the minter can mint"); require(block.timestamp >= mintingAllowedAfter, "Ring::mint: minting not allowed yet"); require(dst != address(0), "Ring::mint: cannot transfer to the zero address"); // record the mint mintingAllowedAfter = SafeMath.add(block.timestamp, minimumTimeBetweenMints); // mint the amount uint96 amount = safe96(rawAmount, "Ring::mint: amount exceeds 96 bits"); require(amount <= SafeMath.div(SafeMath.mul(totalSupply, mintCap), 100), "Ring::mint: exceeded mint cap"); totalSupply = safe96(SafeMath.add(totalSupply, amount), "Ring::mint: totalSupply exceeds 96 bits"); // transfer the amount to the recipient balances[dst] = add96(balances[dst], amount, "Ring::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, "Ring::approve: amount exceeds 96 bits"); } allowances[msg.sender][spender] = amount; emit Approval(msg.sender, 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, "Ring::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), "Ring::permit: invalid signature"); require(signatory == owner, "Ring::permit: unauthorized"); require(now <= deadline, "Ring::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, "Ring::transfer: amount exceeds 96 bits"); _transferTokens(msg.sender, 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 = msg.sender; uint96 spenderAllowance = allowances[src][spender]; uint96 amount = safe96(rawAmount, "Ring::approve: amount exceeds 96 bits"); if (spender != src && spenderAllowance != uint96(-1)) { uint96 newAllowance = sub96(spenderAllowance, amount, "Ring::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(msg.sender, 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), "Ring::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "Ring::delegateBySig: invalid nonce"); require(now <= expiry, "Ring::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, "Ring::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), "Ring::_transferTokens: cannot transfer from the zero address"); require(dst != address(0), "Ring::_transferTokens: cannot transfer to the zero address"); balances[src] = sub96(balances[src], amount, "Ring::_transferTokens: transfer amount exceeds balance"); balances[dst] = add96(balances[dst], amount, "Ring::_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, "Ring::_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, "Ring::_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, "Ring::_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: BUSL-1.1 pragma solidity =0.6.6; import './interfaces/IBlast.sol'; import './interfaces/IBlastPoints.sol'; import './interfaces/IBlastManager.sol'; contract BlastManager is IBlastManager { IBlast public constant BLAST = IBlast(0x4300000000000000000000000000000000000002); address public override manager; modifier onlyManager() { require(msg.sender == manager, "FORBIDDEN"); _; } constructor() public { manager = msg.sender; BLAST.configureAutomaticYield(); BLAST.configureClaimableGas(); } function claimGas(address recipient, bool isMax) external override onlyManager returns (uint256) { if (isMax) { return BLAST.claimMaxGas(address(this), recipient); } else { return BLAST.claimAllGas(address(this), recipient); } } function setManager(address _manager) external override onlyManager { manager = _manager; } function setGasMode(address blastGas) external override onlyManager { IBlast(blastGas).configureClaimableGas(); } function setPointsOperator(address blastPoints, address operator) external override onlyManager { // This method can be called only once, and operator must be an EOA. IBlastPoints(blastPoints).configurePointsOperator(operator); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; interface IBlast{ function configureAutomaticYield() external; function configureClaimableGas() external; function claimAllGas(address contractAddress, address recipient) external returns (uint256); function claimMaxGas(address contractAddress, address recipientOfGas) external returns (uint256); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; interface IBlastManager { function manager() external view returns (address); function claimGas(address recipient, bool isMax) external returns (uint256); function setManager(address _manager) external; function setGasMode(address blastGas) external; function setPointsOperator(address blastPoints, address operator) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; interface IBlastPoints { function configurePointsOperator(address operator) external; }
pragma solidity =0.6.6; // 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; } }
{ "optimizer": { "enabled": true, "runs": 999999 }, "evmVersion": "istanbul", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"minter_","type":"address"},{"internalType":"uint256","name":"mintingAllowedAfter_","type":"uint256"}],"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"},{"inputs":[],"name":"BLAST","outputs":[{"internalType":"contract IBlast","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bool","name":"isMax","type":"bool"}],"name":"claimGas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumTimeBetweenMints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintCap","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingAllowedAfter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"blastGas","type":"address"}],"name":"setGasMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter_","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"blastPoints","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"setPointsOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526b033b2e3c9fd0803ce80000006001553480156200002157600080fd5b50604051620035ff380380620035ff83398101604081905262000044916200024e565b600080546001600160a01b031916331781556040805163388a0bbd60e11b8152905173430000000000000000000000000000000000000292637114177a926004808201939182900301818387803b1580156200009f57600080fd5b505af1158015620000b4573d6000803e3d6000fd5b505050507343000000000000000000000000000000000000026001600160a01b0316634e606c476040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156200010857600080fd5b505af11580156200011d573d6000803e3d6000fd5b50505050428110156200014d5760405162461bcd60e51b81526004016200014490620002aa565b60405180910390fd5b600180546001600160a01b03851660008181526005602052604080822080546001600160601b0319166001600160601b0390951694909417909355925491519092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620001bd919062000307565b60405180910390a3600280546001600160a01b0319166001600160a01b0384811691909117918290556040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6926200021c9260009291169062000290565b60405180910390a160035550620003109050565b80516001600160a01b03811681146200024857600080fd5b92915050565b60008060006060848603121562000263578283fd5b6200026f858562000230565b925062000280856020860162000230565b9150604084015190509250925092565b6001600160a01b0392831681529116602082015260400190565b6020808252603a908201527f52696e673a3a636f6e7374727563746f723a206d696e74696e672063616e206f60408201527f6e6c7920626567696e206166746572206465706c6f796d656e74000000000000606082015260800190565b90815260200190565b6132df80620003206000396000f3fe608060405234801561001057600080fd5b506004361061020b5760003560e01c806370a082311161012a578063c3cda520116100bd578063dd62ed3e1161008c578063e7a324dc11610071578063e7a324dc1461042c578063f1127ed814610434578063fca3b5aa146104555761020b565b8063dd62ed3e14610406578063e220831d146104195761020b565b8063c3cda520146103ba578063c8b11dfe146103cd578063d0ebdbe7146103e0578063d505accf146103f35761020b565b806395d89b41116100f957806395d89b411461038457806397d757761461038c578063a9059cbb14610394578063b4b5ea57146103a75761020b565b806370a082311461033657806376c71ca114610349578063782d6fe1146103515780637ecebe00146103715761020b565b806330b36cef116101a2578063587cde1e11610171578063587cde1e146102e85780635c11d62f146102fb5780635c19a95c146103105780636fcfff45146103235761020b565b806330b36cef146102b0578063313ce567146102b857806340c10f19146102cd578063481c6a75146102e05761020b565b806320606b70116101de57806320606b701461027857806323b872dd146102805780632d195bd21461029357806330adf81f146102a85761020b565b806306fdde0314610210578063075461721461022e578063095ea7b31461024357806318160ddd14610263575b600080fd5b610218610468565b6040516102259190612a4f565b60405180910390f35b6102366104a1565b6040516102259190612932565b6102566102513660046126f4565b6104bd565b604051610225919061297a565b61026b6105e2565b6040516102259190612985565b61026b6105e8565b61025661028e36600461260d565b6105ff565b6102a66102a13660046125be565b6107a1565b005b61026b61085e565b61026b61086a565b6102c0610870565b604051610225919061303e565b6102a66102db3660046126f4565b610875565b610236610b5d565b6102366102f63660046125be565b610b79565b610303610ba1565b6040516102259190613009565b6102a661031e3660046125be565b610ba9565b6103036103313660046125be565b610bb6565b61026b6103443660046125be565b610bce565b6102c0610c04565b61036461035f3660046126f4565b610c09565b604051610225919061304c565b61026b61037f3660046125be565b610eeb565b610218610efd565b610236610f36565b6102566103a23660046126f4565b610f4e565b6103646103b53660046125be565b610f8a565b6102a66103c836600461271e565b611039565b61026b6103db3660046126b9565b6112be565b6102a66103ee3660046125be565b611413565b6102a661040136600461264d565b6114ab565b61026b6104143660046125d9565b6118e0565b6102a66104273660046125d9565b611926565b61026b6119f7565b610447610442366004612777565b611a03565b60405161022592919061301a565b6102a66104633660046125be565b611a3e565b6040518060400160405280601581526020017f52696e6720476f7665726e616e636520546f6b656e000000000000000000000081525081565b60025473ffffffffffffffffffffffffffffffffffffffff1681565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83141561050f57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610534565b6105318360405180606001604052806025815260200161326160259139611b2a565b90505b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff891680855292529182902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105ce90859061304c565b60405180910390a360019150505b92915050565b60015481565b6040516105f49061286e565b604051809103902081565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203380855290835281842054825160608101909352602580845291936bffffffffffffffffffffffff909116928592610669928892919061326190830139611b2a565b90508673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156106b557506bffffffffffffffffffffffff82811614155b156107895760006106df83836040518060600160405280603d81526020016130a7603d9139611b7c565b73ffffffffffffffffffffffffffffffffffffffff8981166000818152600460209081526040808320948a16808452949091529081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff86161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061077f90859061304c565b60405180910390a3505b610794878783611bdf565b5060019695505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146107fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612dca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16634e606c476040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561084357600080fd5b505af1158015610857573d6000803e3d6000fd5b5050505050565b6040516105f4906127f9565b60035481565b601281565b60025473ffffffffffffffffffffffffffffffffffffffff1633146108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612d6d565b600354421015610902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612b1d565b73ffffffffffffffffffffffffffffffffffffffff821661094f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612ebb565b61095d426301e13380611e46565b60038190555060006109878260405180606001604052806022815260200161319760229139611b2a565b90506109a361099c600154600260ff16611e85565b6064611ed9565b816bffffffffffffffffffffffff1611156109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612d36565b610a25610a07600154836bffffffffffffffffffffffff16611e46565b60405180606001604052806027815260200161310a60279139611b2a565b6bffffffffffffffffffffffff90811660015573ffffffffffffffffffffffffffffffffffffffff8416600090815260056020908152604091829020548251606081019093526025808452610a8a949190911692859290919061323c90830139611f1b565b73ffffffffffffffffffffffffffffffffffffffff841660008181526005602052604080822080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b1e90859061304c565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff808416600090815260066020526040812054610b58921683611f76565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b60066020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6301e1338081565b610bb333826121bd565b50565b60086020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff166000908152600560205260409020546bffffffffffffffffffffffff1690565b600281565b6000438210610c44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612b7a565b73ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205463ffffffff1680610c7f5760009150506105dc565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860181168552925290912054168310610d575773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052205464010000000090046bffffffffffffffffffffffff1690506105dc565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020908152604080832083805290915290205463ffffffff16831015610d9f5760009150506105dc565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff161115610e9357600282820363ffffffff16048103610def612572565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260076020908152604080832063ffffffff8581168552908352928190208151808301909252549283168082526401000000009093046bffffffffffffffffffffffff169181019190915290871415610e6e576020015194506105dc9350505050565b805163ffffffff16871115610e8557819350610e8c565b6001820392505b5050610dc5565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff909416835292905220546bffffffffffffffffffffffff6401000000009091041691505092915050565b60096020526000908152604090205481565b6040518060400160405280600481526020017f52494e470000000000000000000000000000000000000000000000000000000081525081565b73430000000000000000000000000000000000000281565b600080610f73836040518060600160405280602681526020016130e460269139611b2a565b9050610f80338583611bdf565b5060019392505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604081205463ffffffff1680610fc2576000611032565b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b9392505050565b60006040516110479061286e565b60408051918290038220828201909152601582527f52696e6720476f7665726e616e636520546f6b656e00000000000000000000006020909201919091527fa5105a344952db8e8650245db47e4f19ac1f116ac6ca34db7ae0d83a39ae372f6110ae612271565b306040516020016110c29493929190612a00565b60405160208183030381529060405280519060200120905060006040516110e8906128e3565b604051908190038120611103918a908a908a906020016129cf565b604051602081830303815290604052805190602001209050600082826040516020016111309291906127c3565b60405160208183030381529060405280519060200120905060006001828888886040516000815260200160405260405161116d9493929190612a31565b6020604051602081039080840390855afa15801561118f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612fac565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260409020805460018101909155891461126d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612e5e565b874211156112a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612ac0565b6112b1818b6121bd565b505050505b505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff163314611310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612dca565b81156113c1576040517f662aa11d0000000000000000000000000000000000000000000000000000000081527343000000000000000000000000000000000000029063662aa11d906113689030908790600401612953565b602060405180830381600087803b15801561138257600080fd5b505af1158015611396573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ba91906127ab565b90506105dc565b6040517f954fa5ee0000000000000000000000000000000000000000000000000000000081527343000000000000000000000000000000000000029063954fa5ee906113689030908790600401612953565b60005473ffffffffffffffffffffffffffffffffffffffff163314611464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612dca565b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8614156114fc57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611521565b61151e8660405180606001604052806024815260200161328660249139611b2a565b90505b600060405161152f9061286e565b60408051918290038220828201909152601582527f52696e6720476f7665726e616e636520546f6b656e00000000000000000000006020909201919091527fa5105a344952db8e8650245db47e4f19ac1f116ac6ca34db7ae0d83a39ae372f611596612271565b306040516020016115aa9493929190612a00565b60405160208183030381529060405280519060200120905060006040516115d0906127f9565b6040805191829003822073ffffffffffffffffffffffffffffffffffffffff8d1660009081526009602090815292902080546001810190915561161f9391928e928e928e9290918e910161298e565b6040516020818303038152906040528051906020012090506000828260405160200161164c9291906127c3565b6040516020818303038152906040528051906020012090506000600182898989604051600081526020016040526040516116899493929190612a31565b6020604051602081039080840390855afa1580156116ab573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611723576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612bd7565b8b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611788576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612f75565b884211156117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612cff565b84600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516118ca919061304c565b60405180910390a3505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff91821660009081526004602090815260408083209390941682529190915220546bffffffffffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff163314611977576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612dca565b6040517f36b91f2b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8316906336b91f2b906119c9908490600401612932565b600060405180830381600087803b1580156119e357600080fd5b505af11580156112b6573d6000803e3d6000fd5b6040516105f4906128e3565b600760209081526000928352604080842090915290825290205463ffffffff81169064010000000090046bffffffffffffffffffffffff1682565b60025473ffffffffffffffffffffffffffffffffffffffff163314611a8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612c0e565b6002546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f691611adb9173ffffffffffffffffffffffffffffffffffffffff909116908490612953565b60405180910390a1600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000816c010000000000000000000000008410611b74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f29190612a4f565b509192915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff1611158290611bd7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f29190612a4f565b505050900390565b73ffffffffffffffffffffffffffffffffffffffff8316611c2c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612ca2565b73ffffffffffffffffffffffffffffffffffffffff8216611c79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612f18565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260056020908152604091829020548251606081019093526036808452611cd6936bffffffffffffffffffffffff909216928592919061316190830139611b7c565b73ffffffffffffffffffffffffffffffffffffffff848116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff968716179055928616825290829020548251606081019093526030808452611d68949190911692859290919061313190830139611f1b565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152600560205260409081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff95909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611dff90859061304c565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff808416600090815260066020526040808220548584168352912054610b5892918216911683611f76565b600082820183811015611032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612c6b565b600082611e94575060006105dc565b82820282848281611ea157fe5b0414611032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612e01565b600061103283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612275565b6000838301826bffffffffffffffffffffffff8087169083161015611f6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f29190612a4f565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611fc057506000816bffffffffffffffffffffffff16115b15610b585773ffffffffffffffffffffffffffffffffffffffff8316156120c35773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604081205463ffffffff16908161201a57600061208a565b73ffffffffffffffffffffffffffffffffffffffff851660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b905060006120b182856040518060600160405280602881526020016131e060289139611b7c565b90506120bf868484846122c6565b5050505b73ffffffffffffffffffffffffffffffffffffffff821615610b585773ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604081205463ffffffff169081612118576000612188565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b905060006121af82856040518060600160405280602781526020016131b960279139611f1b565b90506112b6858484846122c6565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260066020818152604080842080546005845282862054949093528787167fffffffffffffffffffffffff000000000000000000000000000000000000000084168117909155905191909516946bffffffffffffffffffffffff9092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461226b828483611f76565b50505050565b4690565b600081836122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f29190612a4f565b5060008385816122bc57fe5b0495945050505050565b60006122ea4360405180606001604052806034815260200161320860349139612530565b905060008463ffffffff1611801561235e575073ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8901811685529252909120548282169116145b156123fd5773ffffffffffffffffffffffffffffffffffffffff851660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880163ffffffff168452909152902080547fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff166401000000006bffffffffffffffffffffffff8516021790556124d9565b60408051808201825263ffffffff80841682526bffffffffffffffffffffffff808616602080850191825273ffffffffffffffffffffffffffffffffffffffff8b166000818152600783528781208c871682528352878120965187549451909516640100000000027fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff9587167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000958616179590951694909417909555938252600890935292909220805460018801909316929091169190911790555b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051612521929190613065565b60405180910390a25050505050565b6000816401000000008410611b74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f29190612a4f565b604080518082019091526000808252602082015290565b803573ffffffffffffffffffffffffffffffffffffffff811681146105dc57600080fd5b803560ff811681146105dc57600080fd5b6000602082840312156125cf578081fd5b6110328383612589565b600080604083850312156125eb578081fd5b6125f58484612589565b91506126048460208501612589565b90509250929050565b600080600060608486031215612621578081fd5b833561262c81613084565b9250602084013561263c81613084565b929592945050506040919091013590565b600080600080600080600060e0888a031215612667578283fd5b6126718989612589565b96506126808960208a01612589565b9550604088013594506060880135935061269d8960808a016125ad565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156126cb578182fd5b6126d58484612589565b9150602083013580151581146126e9578182fd5b809150509250929050565b60008060408385031215612706578182fd5b6127108484612589565b946020939093013593505050565b60008060008060008060c08789031215612736578182fd5b6127408888612589565b9550602087013594506040870135935061275d88606089016125ad565b92506080870135915060a087013590509295509295509295565b60008060408385031215612789578182fd5b6127938484612589565b9150602083013563ffffffff811681146126e9578182fd5b6000602082840312156127bc578081fd5b5051919050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e636560208201527f2c75696e7432353620646561646c696e65290000000000000000000000000000604082015260520190565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201527f6374290000000000000000000000000000000000000000000000000000000000604082015260430190565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0190565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b901515815260200190565b90815260200190565b95865273ffffffffffffffffffffffffffffffffffffffff94851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845273ffffffffffffffffffffffffffffffffffffffff9290921660208401526040830152606082015260800190565b9384526020840192909252604083015273ffffffffffffffffffffffffffffffffffffffff16606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015612a7b57858101830151858201604001528201612a5f565b81811115612a8c5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526026908201527f52696e673a3a64656c656761746542795369673a207369676e6174757265206560408201527f7870697265640000000000000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f52696e673a3a6d696e743a206d696e74696e67206e6f7420616c6c6f7765642060408201527f7965740000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526027908201527f52696e673a3a6765745072696f72566f7465733a206e6f74207965742064657460408201527f65726d696e656400000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f52696e673a3a7065726d69743a20696e76616c6964207369676e617475726500604082015260600190565b6020808252603e908201527f52696e673a3a7365744d696e7465723a206f6e6c7920746865206d696e74657260408201527f2063616e206368616e676520746865206d696e74657220616464726573730000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252603c908201527f52696e673a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e736665722066726f6d20746865207a65726f206164647265737300000000606082015260800190565b6020808252601f908201527f52696e673a3a7065726d69743a207369676e6174757265206578706972656400604082015260600190565b6020808252601d908201527f52696e673a3a6d696e743a206578636565646564206d696e7420636170000000604082015260600190565b60208082526024908201527f52696e673a3a6d696e743a206f6e6c7920746865206d696e7465722063616e2060408201527f6d696e7400000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526009908201527f464f5242494444454e0000000000000000000000000000000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f52696e673a3a64656c656761746542795369673a20696e76616c6964206e6f6e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f52696e673a3a6d696e743a2063616e6e6f74207472616e7366657220746f207460408201527f6865207a65726f20616464726573730000000000000000000000000000000000606082015260800190565b6020808252603a908201527f52696e673a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e7366657220746f20746865207a65726f2061646472657373000000000000606082015260800190565b6020808252601a908201527f52696e673a3a7065726d69743a20756e617574686f72697a6564000000000000604082015260600190565b60208082526026908201527f52696e673a3a64656c656761746542795369673a20696e76616c69642073696760408201527f6e61747572650000000000000000000000000000000000000000000000000000606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526bffffffffffffffffffffffff16602082015260400190565b60ff91909116815260200190565b6bffffffffffffffffffffffff91909116815260200190565b6bffffffffffffffffffffffff92831681529116602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff81168114610bb357600080fdfe52696e673a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636552696e673a3a7472616e736665723a20616d6f756e742065786365656473203936206269747352696e673a3a6d696e743a20746f74616c537570706c792065786365656473203936206269747352696e673a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777352696e673a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636552696e673a3a6d696e743a20616d6f756e742065786365656473203936206269747352696e673a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777352696e673a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777352696e673a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747352696e673a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f777352696e673a3a617070726f76653a20616d6f756e742065786365656473203936206269747352696e673a3a7065726d69743a20616d6f756e7420657863656564732039362062697473a2646970667358221220888e3293b9a05c167bdb9ae8136f39a064f2dbc4f6267f2a4761d1be0986521664736f6c63430006060033000000000000000000000000ff790875de1f44d4ddc1f905a2b9cf0c11116859000000000000000000000000ff790875de1f44d4ddc1f905a2b9cf0c111168590000000000000000000000000000000000000000000000000000000067c2c58d
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061020b5760003560e01c806370a082311161012a578063c3cda520116100bd578063dd62ed3e1161008c578063e7a324dc11610071578063e7a324dc1461042c578063f1127ed814610434578063fca3b5aa146104555761020b565b8063dd62ed3e14610406578063e220831d146104195761020b565b8063c3cda520146103ba578063c8b11dfe146103cd578063d0ebdbe7146103e0578063d505accf146103f35761020b565b806395d89b41116100f957806395d89b411461038457806397d757761461038c578063a9059cbb14610394578063b4b5ea57146103a75761020b565b806370a082311461033657806376c71ca114610349578063782d6fe1146103515780637ecebe00146103715761020b565b806330b36cef116101a2578063587cde1e11610171578063587cde1e146102e85780635c11d62f146102fb5780635c19a95c146103105780636fcfff45146103235761020b565b806330b36cef146102b0578063313ce567146102b857806340c10f19146102cd578063481c6a75146102e05761020b565b806320606b70116101de57806320606b701461027857806323b872dd146102805780632d195bd21461029357806330adf81f146102a85761020b565b806306fdde0314610210578063075461721461022e578063095ea7b31461024357806318160ddd14610263575b600080fd5b610218610468565b6040516102259190612a4f565b60405180910390f35b6102366104a1565b6040516102259190612932565b6102566102513660046126f4565b6104bd565b604051610225919061297a565b61026b6105e2565b6040516102259190612985565b61026b6105e8565b61025661028e36600461260d565b6105ff565b6102a66102a13660046125be565b6107a1565b005b61026b61085e565b61026b61086a565b6102c0610870565b604051610225919061303e565b6102a66102db3660046126f4565b610875565b610236610b5d565b6102366102f63660046125be565b610b79565b610303610ba1565b6040516102259190613009565b6102a661031e3660046125be565b610ba9565b6103036103313660046125be565b610bb6565b61026b6103443660046125be565b610bce565b6102c0610c04565b61036461035f3660046126f4565b610c09565b604051610225919061304c565b61026b61037f3660046125be565b610eeb565b610218610efd565b610236610f36565b6102566103a23660046126f4565b610f4e565b6103646103b53660046125be565b610f8a565b6102a66103c836600461271e565b611039565b61026b6103db3660046126b9565b6112be565b6102a66103ee3660046125be565b611413565b6102a661040136600461264d565b6114ab565b61026b6104143660046125d9565b6118e0565b6102a66104273660046125d9565b611926565b61026b6119f7565b610447610442366004612777565b611a03565b60405161022592919061301a565b6102a66104633660046125be565b611a3e565b6040518060400160405280601581526020017f52696e6720476f7665726e616e636520546f6b656e000000000000000000000081525081565b60025473ffffffffffffffffffffffffffffffffffffffff1681565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83141561050f57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610534565b6105318360405180606001604052806025815260200161326160259139611b2a565b90505b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff891680855292529182902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105ce90859061304c565b60405180910390a360019150505b92915050565b60015481565b6040516105f49061286e565b604051809103902081565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203380855290835281842054825160608101909352602580845291936bffffffffffffffffffffffff909116928592610669928892919061326190830139611b2a565b90508673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156106b557506bffffffffffffffffffffffff82811614155b156107895760006106df83836040518060600160405280603d81526020016130a7603d9139611b7c565b73ffffffffffffffffffffffffffffffffffffffff8981166000818152600460209081526040808320948a16808452949091529081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff86161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061077f90859061304c565b60405180910390a3505b610794878783611bdf565b5060019695505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146107fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612dca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16634e606c476040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561084357600080fd5b505af1158015610857573d6000803e3d6000fd5b5050505050565b6040516105f4906127f9565b60035481565b601281565b60025473ffffffffffffffffffffffffffffffffffffffff1633146108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612d6d565b600354421015610902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612b1d565b73ffffffffffffffffffffffffffffffffffffffff821661094f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612ebb565b61095d426301e13380611e46565b60038190555060006109878260405180606001604052806022815260200161319760229139611b2a565b90506109a361099c600154600260ff16611e85565b6064611ed9565b816bffffffffffffffffffffffff1611156109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612d36565b610a25610a07600154836bffffffffffffffffffffffff16611e46565b60405180606001604052806027815260200161310a60279139611b2a565b6bffffffffffffffffffffffff90811660015573ffffffffffffffffffffffffffffffffffffffff8416600090815260056020908152604091829020548251606081019093526025808452610a8a949190911692859290919061323c90830139611f1b565b73ffffffffffffffffffffffffffffffffffffffff841660008181526005602052604080822080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b1e90859061304c565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff808416600090815260066020526040812054610b58921683611f76565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b60066020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6301e1338081565b610bb333826121bd565b50565b60086020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff166000908152600560205260409020546bffffffffffffffffffffffff1690565b600281565b6000438210610c44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612b7a565b73ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205463ffffffff1680610c7f5760009150506105dc565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860181168552925290912054168310610d575773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052205464010000000090046bffffffffffffffffffffffff1690506105dc565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020908152604080832083805290915290205463ffffffff16831015610d9f5760009150506105dc565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff161115610e9357600282820363ffffffff16048103610def612572565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260076020908152604080832063ffffffff8581168552908352928190208151808301909252549283168082526401000000009093046bffffffffffffffffffffffff169181019190915290871415610e6e576020015194506105dc9350505050565b805163ffffffff16871115610e8557819350610e8c565b6001820392505b5050610dc5565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff909416835292905220546bffffffffffffffffffffffff6401000000009091041691505092915050565b60096020526000908152604090205481565b6040518060400160405280600481526020017f52494e470000000000000000000000000000000000000000000000000000000081525081565b73430000000000000000000000000000000000000281565b600080610f73836040518060600160405280602681526020016130e460269139611b2a565b9050610f80338583611bdf565b5060019392505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604081205463ffffffff1680610fc2576000611032565b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b9392505050565b60006040516110479061286e565b60408051918290038220828201909152601582527f52696e6720476f7665726e616e636520546f6b656e00000000000000000000006020909201919091527fa5105a344952db8e8650245db47e4f19ac1f116ac6ca34db7ae0d83a39ae372f6110ae612271565b306040516020016110c29493929190612a00565b60405160208183030381529060405280519060200120905060006040516110e8906128e3565b604051908190038120611103918a908a908a906020016129cf565b604051602081830303815290604052805190602001209050600082826040516020016111309291906127c3565b60405160208183030381529060405280519060200120905060006001828888886040516000815260200160405260405161116d9493929190612a31565b6020604051602081039080840390855afa15801561118f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612fac565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260409020805460018101909155891461126d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612e5e565b874211156112a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612ac0565b6112b1818b6121bd565b505050505b505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff163314611310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612dca565b81156113c1576040517f662aa11d0000000000000000000000000000000000000000000000000000000081527343000000000000000000000000000000000000029063662aa11d906113689030908790600401612953565b602060405180830381600087803b15801561138257600080fd5b505af1158015611396573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ba91906127ab565b90506105dc565b6040517f954fa5ee0000000000000000000000000000000000000000000000000000000081527343000000000000000000000000000000000000029063954fa5ee906113689030908790600401612953565b60005473ffffffffffffffffffffffffffffffffffffffff163314611464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612dca565b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8614156114fc57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611521565b61151e8660405180606001604052806024815260200161328660249139611b2a565b90505b600060405161152f9061286e565b60408051918290038220828201909152601582527f52696e6720476f7665726e616e636520546f6b656e00000000000000000000006020909201919091527fa5105a344952db8e8650245db47e4f19ac1f116ac6ca34db7ae0d83a39ae372f611596612271565b306040516020016115aa9493929190612a00565b60405160208183030381529060405280519060200120905060006040516115d0906127f9565b6040805191829003822073ffffffffffffffffffffffffffffffffffffffff8d1660009081526009602090815292902080546001810190915561161f9391928e928e928e9290918e910161298e565b6040516020818303038152906040528051906020012090506000828260405160200161164c9291906127c3565b6040516020818303038152906040528051906020012090506000600182898989604051600081526020016040526040516116899493929190612a31565b6020604051602081039080840390855afa1580156116ab573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611723576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612bd7565b8b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611788576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612f75565b884211156117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612cff565b84600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516118ca919061304c565b60405180910390a3505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff91821660009081526004602090815260408083209390941682529190915220546bffffffffffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff163314611977576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612dca565b6040517f36b91f2b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8316906336b91f2b906119c9908490600401612932565b600060405180830381600087803b1580156119e357600080fd5b505af11580156112b6573d6000803e3d6000fd5b6040516105f4906128e3565b600760209081526000928352604080842090915290825290205463ffffffff81169064010000000090046bffffffffffffffffffffffff1682565b60025473ffffffffffffffffffffffffffffffffffffffff163314611a8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612c0e565b6002546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f691611adb9173ffffffffffffffffffffffffffffffffffffffff909116908490612953565b60405180910390a1600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000816c010000000000000000000000008410611b74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f29190612a4f565b509192915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff1611158290611bd7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f29190612a4f565b505050900390565b73ffffffffffffffffffffffffffffffffffffffff8316611c2c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612ca2565b73ffffffffffffffffffffffffffffffffffffffff8216611c79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612f18565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260056020908152604091829020548251606081019093526036808452611cd6936bffffffffffffffffffffffff909216928592919061316190830139611b7c565b73ffffffffffffffffffffffffffffffffffffffff848116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff968716179055928616825290829020548251606081019093526030808452611d68949190911692859290919061313190830139611f1b565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152600560205260409081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff95909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611dff90859061304c565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff808416600090815260066020526040808220548584168352912054610b5892918216911683611f76565b600082820183811015611032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612c6b565b600082611e94575060006105dc565b82820282848281611ea157fe5b0414611032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612e01565b600061103283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612275565b6000838301826bffffffffffffffffffffffff8087169083161015611f6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f29190612a4f565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611fc057506000816bffffffffffffffffffffffff16115b15610b585773ffffffffffffffffffffffffffffffffffffffff8316156120c35773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604081205463ffffffff16908161201a57600061208a565b73ffffffffffffffffffffffffffffffffffffffff851660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b905060006120b182856040518060600160405280602881526020016131e060289139611b7c565b90506120bf868484846122c6565b5050505b73ffffffffffffffffffffffffffffffffffffffff821615610b585773ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604081205463ffffffff169081612118576000612188565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b905060006121af82856040518060600160405280602781526020016131b960279139611f1b565b90506112b6858484846122c6565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260066020818152604080842080546005845282862054949093528787167fffffffffffffffffffffffff000000000000000000000000000000000000000084168117909155905191909516946bffffffffffffffffffffffff9092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461226b828483611f76565b50505050565b4690565b600081836122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f29190612a4f565b5060008385816122bc57fe5b0495945050505050565b60006122ea4360405180606001604052806034815260200161320860349139612530565b905060008463ffffffff1611801561235e575073ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8901811685529252909120548282169116145b156123fd5773ffffffffffffffffffffffffffffffffffffffff851660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880163ffffffff168452909152902080547fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff166401000000006bffffffffffffffffffffffff8516021790556124d9565b60408051808201825263ffffffff80841682526bffffffffffffffffffffffff808616602080850191825273ffffffffffffffffffffffffffffffffffffffff8b166000818152600783528781208c871682528352878120965187549451909516640100000000027fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff9587167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000958616179590951694909417909555938252600890935292909220805460018801909316929091169190911790555b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051612521929190613065565b60405180910390a25050505050565b6000816401000000008410611b74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f29190612a4f565b604080518082019091526000808252602082015290565b803573ffffffffffffffffffffffffffffffffffffffff811681146105dc57600080fd5b803560ff811681146105dc57600080fd5b6000602082840312156125cf578081fd5b6110328383612589565b600080604083850312156125eb578081fd5b6125f58484612589565b91506126048460208501612589565b90509250929050565b600080600060608486031215612621578081fd5b833561262c81613084565b9250602084013561263c81613084565b929592945050506040919091013590565b600080600080600080600060e0888a031215612667578283fd5b6126718989612589565b96506126808960208a01612589565b9550604088013594506060880135935061269d8960808a016125ad565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156126cb578182fd5b6126d58484612589565b9150602083013580151581146126e9578182fd5b809150509250929050565b60008060408385031215612706578182fd5b6127108484612589565b946020939093013593505050565b60008060008060008060c08789031215612736578182fd5b6127408888612589565b9550602087013594506040870135935061275d88606089016125ad565b92506080870135915060a087013590509295509295509295565b60008060408385031215612789578182fd5b6127938484612589565b9150602083013563ffffffff811681146126e9578182fd5b6000602082840312156127bc578081fd5b5051919050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e636560208201527f2c75696e7432353620646561646c696e65290000000000000000000000000000604082015260520190565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201527f6374290000000000000000000000000000000000000000000000000000000000604082015260430190565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0190565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b901515815260200190565b90815260200190565b95865273ffffffffffffffffffffffffffffffffffffffff94851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845273ffffffffffffffffffffffffffffffffffffffff9290921660208401526040830152606082015260800190565b9384526020840192909252604083015273ffffffffffffffffffffffffffffffffffffffff16606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015612a7b57858101830151858201604001528201612a5f565b81811115612a8c5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526026908201527f52696e673a3a64656c656761746542795369673a207369676e6174757265206560408201527f7870697265640000000000000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f52696e673a3a6d696e743a206d696e74696e67206e6f7420616c6c6f7765642060408201527f7965740000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526027908201527f52696e673a3a6765745072696f72566f7465733a206e6f74207965742064657460408201527f65726d696e656400000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f52696e673a3a7065726d69743a20696e76616c6964207369676e617475726500604082015260600190565b6020808252603e908201527f52696e673a3a7365744d696e7465723a206f6e6c7920746865206d696e74657260408201527f2063616e206368616e676520746865206d696e74657220616464726573730000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252603c908201527f52696e673a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e736665722066726f6d20746865207a65726f206164647265737300000000606082015260800190565b6020808252601f908201527f52696e673a3a7065726d69743a207369676e6174757265206578706972656400604082015260600190565b6020808252601d908201527f52696e673a3a6d696e743a206578636565646564206d696e7420636170000000604082015260600190565b60208082526024908201527f52696e673a3a6d696e743a206f6e6c7920746865206d696e7465722063616e2060408201527f6d696e7400000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526009908201527f464f5242494444454e0000000000000000000000000000000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f52696e673a3a64656c656761746542795369673a20696e76616c6964206e6f6e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f52696e673a3a6d696e743a2063616e6e6f74207472616e7366657220746f207460408201527f6865207a65726f20616464726573730000000000000000000000000000000000606082015260800190565b6020808252603a908201527f52696e673a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e7366657220746f20746865207a65726f2061646472657373000000000000606082015260800190565b6020808252601a908201527f52696e673a3a7065726d69743a20756e617574686f72697a6564000000000000604082015260600190565b60208082526026908201527f52696e673a3a64656c656761746542795369673a20696e76616c69642073696760408201527f6e61747572650000000000000000000000000000000000000000000000000000606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526bffffffffffffffffffffffff16602082015260400190565b60ff91909116815260200190565b6bffffffffffffffffffffffff91909116815260200190565b6bffffffffffffffffffffffff92831681529116602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff81168114610bb357600080fdfe52696e673a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636552696e673a3a7472616e736665723a20616d6f756e742065786365656473203936206269747352696e673a3a6d696e743a20746f74616c537570706c792065786365656473203936206269747352696e673a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777352696e673a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636552696e673a3a6d696e743a20616d6f756e742065786365656473203936206269747352696e673a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777352696e673a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777352696e673a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747352696e673a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f777352696e673a3a617070726f76653a20616d6f756e742065786365656473203936206269747352696e673a3a7065726d69743a20616d6f756e7420657863656564732039362062697473a2646970667358221220888e3293b9a05c167bdb9ae8136f39a064f2dbc4f6267f2a4761d1be0986521664736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ff790875de1f44d4ddc1f905a2b9cf0c11116859000000000000000000000000ff790875de1f44d4ddc1f905a2b9cf0c111168590000000000000000000000000000000000000000000000000000000067c2c58d
-----Decoded View---------------
Arg [0] : account (address): 0xfF790875dE1F44D4DdC1F905A2b9Cf0c11116859
Arg [1] : minter_ (address): 0xfF790875dE1F44D4DdC1F905A2b9Cf0c11116859
Arg [2] : mintingAllowedAfter_ (uint256): 1740817805
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000ff790875de1f44d4ddc1f905a2b9cf0c11116859
Arg [1] : 000000000000000000000000ff790875de1f44d4ddc1f905a2b9cf0c11116859
Arg [2] : 0000000000000000000000000000000000000000000000000000000067c2c58d
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.