ETH Price: $3,365.49 (-1.50%)
Gas: 7 Gwei

Token

Entropy (ERP)
 

Overview

Max Total Supply

1,000,000,000 ERP

Holders

173 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Rhino.fi: Bridge
Balance
829,660.61218475 ERP

Value
$0.00
0x5d22045DAcEAB03B158031eCB7D9d06Fad24609b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Entropyfi is a decentralized lossless prediction market. Entropyfi’s goal is to make crowd wisdom accessible to everyone, such that novel financial derivatives could be built on top of Entropyfi.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Entropy

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 2 : Entropy.sol
// SPDX-License-Identifier: GPL 3.0
pragma solidity ^0.5.16;
pragma experimental ABIEncoderV2;

import "./SafeMath.sol";

contract Entropy {
	/// @notice EIP-20 token name for this token
	string public constant name = "Entropy";

	/// @notice EIP-20 token symbol for this token
	string public constant symbol = "ERP";

	/// @notice EIP-20 token decimals for this token
	uint8 public constant decimals = 18;

	/// @notice Total number of tokens in circulation
	uint256 public totalSupply = 1_000_000_000e18; // 1 billion Erp

	/// @notice Address which may mint new tokens
	address public minter;

	/// @notice The timestamp after which minting may occur
	uint256 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 => uint256) 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, uint256 previousBalance, uint256 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 Erp 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_,
		uint256 mintingAllowedAfter_
	) public {
		require(mintingAllowedAfter_ >= block.timestamp, "Erp::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, "Erp::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, uint256 rawAmount) external {
		require(msg.sender == minter, "Erp::mint: only the minter can mint");
		require(block.timestamp >= mintingAllowedAfter, "Erp::mint: minting not allowed yet");
		require(dst != address(0), "Erp::mint: cannot transfer to the zero address");

		// record the mint
		mintingAllowedAfter = SafeMath.add(block.timestamp, minimumTimeBetweenMints);

		// mint the amount
		uint96 amount = safe96(rawAmount, "Erp::mint: amount exceeds 96 bits");
		require(amount <= SafeMath.div(SafeMath.mul(totalSupply, mintCap), 100), "Erp::mint: exceeded mint cap");
		totalSupply = safe96(SafeMath.add(totalSupply, amount), "Erp::mint: totalSupply exceeds 96 bits");

		// transfer the amount to the recipient
		balances[dst] = add96(balances[dst], amount, "Erp::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 (uint256) {
		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, uint256 rawAmount) external returns (bool) {
		uint96 amount;
		if (rawAmount == uint256(-1)) {
			amount = uint96(-1);
		} else {
			amount = safe96(rawAmount, "Erp::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,
		uint256 rawAmount,
		uint256 deadline,
		uint8 v,
		bytes32 r,
		bytes32 s
	) external {
		uint96 amount;
		if (rawAmount == uint256(-1)) {
			amount = uint96(-1);
		} else {
			amount = safe96(rawAmount, "Erp::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), "Erp::permit: invalid signature");
		require(signatory == owner, "Erp::permit: unauthorized");
		require(now <= deadline, "Erp::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 (uint256) {
		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, uint256 rawAmount) external returns (bool) {
		uint96 amount = safe96(rawAmount, "Erp::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,
		uint256 rawAmount
	) external returns (bool) {
		address spender = msg.sender;
		uint96 spenderAllowance = allowances[src][spender];
		uint96 amount = safe96(rawAmount, "Erp::approve: amount exceeds 96 bits");

		if (spender != src && spenderAllowance != uint96(-1)) {
			uint96 newAllowance = sub96(spenderAllowance, amount, "Erp::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,
		uint256 nonce,
		uint256 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), "Erp::delegateBySig: invalid signature");
		require(nonce == nonces[signatory]++, "Erp::delegateBySig: invalid nonce");
		require(now <= expiry, "Erp::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, uint256 blockNumber) public view returns (uint96) {
		require(blockNumber < block.number, "Erp::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), "Erp::_transferTokens: cannot transfer from the zero address");
		require(dst != address(0), "Erp::_transferTokens: cannot transfer to the zero address");

		balances[src] = sub96(balances[src], amount, "Erp::_transferTokens: transfer amount exceeds balance");
		balances[dst] = add96(balances[dst], amount, "Erp::_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, "Erp::_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, "Erp::_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, "Erp::_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(uint256 n, string memory errorMessage) internal pure returns (uint32) {
		require(n < 2**32, errorMessage);
		return uint32(n);
	}

	function safe96(uint256 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 (uint256) {
		uint256 chainId;
		assembly {
			chainId := chainid()
		}
		return chainId;
	}
}

File 2 of 2 : SafeMath.sol
// SPDX-License-Identifier: GPL 3.0
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;
	}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"minter_","type":"address"},{"internalType":"uint256","name":"mintingAllowedAfter_","type":"uint256"}],"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":[],"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"}]

60806040526b033b2e3c9fd0803ce80000006000553480156200002157600080fd5b5060405162002a5138038062002a51833981016040819052620000449162000171565b42811015620000705760405162461bcd60e51b8152600401620000679062000273565b60405180910390fd5b600080546001600160a01b0385168083526004602052604080842080546001600160601b0319166001600160601b0390941693909317909255825491519092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000de919062000285565b60405180910390a3600180546001600160a01b0319166001600160a01b0384811691909117918290556040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6926200013d926000929116906200024d565b60405180910390a160025550620002ec9050565b80516200015e81620002c7565b92915050565b80516200015e81620002e1565b6000806000606084860312156200018757600080fd5b600062000195868662000151565b9350506020620001a88682870162000151565b9250506040620001bb8682870162000164565b9150509250925092565b620001d081620002b3565b82525050565b620001d0816200029e565b6000620001f060398362000295565b7f4572703a3a636f6e7374727563746f723a206d696e74696e672063616e206f6e81527f6c7920626567696e206166746572206465706c6f796d656e7400000000000000602082015260400192915050565b620001d081620002b0565b604081016200025d8285620001c5565b6200026c6020830184620001d6565b9392505050565b602080825281016200015e81620001e1565b602081016200015e828462000242565b90815260200190565b60006001600160a01b0382166200015e565b90565b60006200015e8260006200015e826200029e565b620002d2816200029e565b8114620002de57600080fd5b50565b620002d281620002b0565b61275580620002fc6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461035b578063e7a324dc1461036e578063f1127ed814610376578063fca3b5aa14610397576101a9565b8063b4b5ea5714610322578063c3cda52014610335578063d505accf14610348576101a9565b8063782d6fe1116100d3578063782d6fe1146102d45780637ecebe00146102f457806395d89b4114610307578063a9059cbb1461030f576101a9565b80636fcfff45146102a657806370a08231146102b957806376c71ca1146102cc576101a9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610256578063587cde1e1461026b5780635c11d62f1461027e5780635c19a95c14610293576101a9565b806330adf81f1461023157806330b36cef14610239578063313ce56714610241576101a9565b806306fdde03146101ae57806307546172146101cc578063095ea7b3146101e157806318160ddd1461020157806320606b701461021657806323b872dd1461021e575b600080fd5b6101b66103aa565b6040516101c391906122e0565b60405180910390f35b6101d46103cd565b6040516101c391906121b3565b6101f46101ef366004611a1b565b6103dc565b6040516101c391906121dc565b61020961049b565b6040516101c391906121ea565b6102096104a1565b6101f461022c366004611932565b6104b8565b610209610601565b61020961060d565b610249610613565b6040516101c3919061241a565b610269610264366004611a1b565b610618565b005b6101d46102793660046118d2565b610833565b61028661084e565b6040516101c391906123f1565b6102696102a13660046118d2565b610856565b6102866102b43660046118d2565b610863565b6102096102c73660046118d2565b61087b565b61024961089f565b6102e76102e2366004611a1b565b6108a4565b6040516101c39190612436565b6102096103023660046118d2565b610ab2565b6101b6610ac4565b6101f461031d366004611a1b565b610ae3565b6102e76103303660046118d2565b610b1f565b610269610343366004611a4b565b610b8f565b61026961035636600461197f565b610d78565b6102096103693660046118f8565b611063565b610209611097565b610389610384366004611ad2565b6110a3565b6040516101c39291906123ff565b6102696103a53660046118d2565b6110d8565b60405180604001604052806007815260200166456e74726f707960c81b81525081565b6001546001600160a01b031681565b6000806000198314156103f25750600019610417565b6104148360405180606001604052806024815260200161258b6024913961116b565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610487908590612428565b60405180910390a360019150505b92915050565b60005481565b6040516104ad9061219d565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602480845291936001600160601b03909116928592610510928892919061258b9083013961116b565b9050866001600160a01b0316836001600160a01b03161415801561053d57506001600160601b0382811614155b156105e757600061056783836040518060600160405280603c815260200161251c603c913961119a565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105dd908590612428565b60405180910390a3505b6105f28787836111d9565b600193505050505b9392505050565b6040516104ad90612192565b60025481565b601281565b6001546001600160a01b0316331461064b5760405162461bcd60e51b815260040161064290612351565b60405180910390fd5b60025442101561066d5760405162461bcd60e51b8152600401610642906123c1565b6001600160a01b0382166106935760405162461bcd60e51b815260040161064290612391565b6106a1426301e1338061137f565b60028190555060006106cb826040518060600160405280602181526020016126216021913961116b565b90506106e76106e0600054600260ff166113a4565b60646113de565b816001600160601b0316111561070f5760405162461bcd60e51b8152600401610642906123b1565b610745610727600054836001600160601b031661137f565b6040518060600160405280602681526020016126ed6026913961116b565b6001600160601b0390811660009081556001600160a01b038516815260046020908152604091829020548251606081019093526024808452610797949190911692859290919061269a90830139611420565b6001600160a01b03841660008181526004602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610801908590612428565b60405180910390a36001600160a01b0380841660009081526005602052604081205461082e92168361145c565b505050565b6005602052600090815260409020546001600160a01b031681565b6301e1338081565b61086033826115ee565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b600281565b60004382106108c55760405162461bcd60e51b815260040161064290612341565b6001600160a01b03831660009081526007602052604090205463ffffffff16806108f3576000915050610495565b6001600160a01b038416600090815260066020908152604080832063ffffffff60001986018116855292529091205416831061096f576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610495565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff168310156109aa576000915050610495565b600060001982015b8163ffffffff168163ffffffff161115610a6d57600282820363ffffffff160481036109dc61188f565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a48576020015194506104959350505050565b805163ffffffff16871115610a5f57819350610a66565b6001820392505b50506109b2565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b6040518060400160405280600381526020016204552560ec1b81525081565b600080610b08836040518060600160405280602581526020016125af6025913961116b565b9050610b153385836111d9565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610b4a5760006105fa565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610b9d9061219d565b604080519182900382208282019091526007825266456e74726f707960c81b6020909201919091527f4fd30fa237c7841677b3caf986ec33fa38eb73273c63c6e43333a4c05d99bc6c610bee611678565b30604051602001610c029493929190612290565b6040516020818303038152906040528051906020012090506000604051610c28906121a8565b604051908190038120610c43918a908a908a90602001612252565b60405160208183030381529060405280519060200120905060008282604051602001610c70929190612161565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cad94939291906122c5565b6020604051602081039080840390855afa158015610ccf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d025760405162461bcd60e51b815260040161064290612381565b6001600160a01b03811660009081526008602052604090208054600181019091558914610d415760405162461bcd60e51b815260040161064290612321565b87421115610d615760405162461bcd60e51b8152600401610642906123a1565b610d6b818b6115ee565b505050505b505050505050565b6000600019861415610d8d5750600019610db2565b610daf866040518060600160405280602381526020016126776023913961116b565b90505b6000604051610dc09061219d565b604080519182900382208282019091526007825266456e74726f707960c81b6020909201919091527f4fd30fa237c7841677b3caf986ec33fa38eb73273c63c6e43333a4c05d99bc6c610e11611678565b30604051602001610e259493929190612290565b6040516020818303038152906040528051906020012090506000604051610e4b90612192565b604080519182900382206001600160a01b038d16600090815260086020908152929020805460018101909155610e8d9391928e928e928e9290918e91016121f8565b60405160208183030381529060405280519060200120905060008282604051602001610eba929190612161565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610ef794939291906122c5565b6020604051602081039080840390855afa158015610f19573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f4c5760405162461bcd60e51b815260040161064290612331565b8b6001600160a01b0316816001600160a01b031614610f7d5760405162461bcd60e51b815260040161064290612361565b88421115610f9d5760405162461bcd60e51b8152600401610642906123e1565b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258760405161104d9190612428565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104ad906121a8565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146111025760405162461bcd60e51b815260040161064290612301565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f691611141916001600160a01b039091169084906121c1565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b84106111925760405162461bcd60e51b815260040161064291906122e0565b509192915050565b6000836001600160601b0316836001600160601b0316111582906111d15760405162461bcd60e51b815260040161064291906122e0565b505050900390565b6001600160a01b0383166111ff5760405162461bcd60e51b8152600401610642906123d1565b6001600160a01b0382166112255760405162461bcd60e51b815260040161064290612311565b6001600160a01b038316600090815260046020908152604091829020548251606081019093526035808452611270936001600160601b0390921692859291906126429083013961119a565b6001600160a01b03848116600090815260046020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352602f8084526112d894919091169285929091906126be90830139611420565b6001600160a01b038381166000818152600460205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611345908590612428565b60405180910390a36001600160a01b0380841660009081526005602052604080822054858416835291205461082e9291821691168361145c565b6000828201838110156105fa5760405162461bcd60e51b8152600401610642906122f1565b6000826113b357506000610495565b828202828482816113c057fe5b04146105fa5760405162461bcd60e51b815260040161064290612371565b60006105fa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061167c565b6000838301826001600160601b0380871690831610156114535760405162461bcd60e51b815260040161064291906122e0565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561148757506000816001600160601b0316115b1561082e576001600160a01b0383161561153f576001600160a01b03831660009081526007602052604081205463ffffffff1690816114c7576000611506565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061152d82856040518060600160405280602781526020016125fa6027913961119a565b905061153b868484846116b3565b5050505b6001600160a01b0382161561082e576001600160a01b03821660009081526007602052604081205463ffffffff16908161157a5760006115b9565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006115e082856040518060600160405280602681526020016125d460269139611420565b9050610d70858484846116b3565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461167282848361145c565b50505050565b4690565b6000818361169d5760405162461bcd60e51b815260040161064291906122e0565b5060008385816116a957fe5b0495945050505050565b60006116d74360405180606001604052806033815260200161255860339139611868565b905060008463ffffffff1611801561172057506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561177f576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b0385160217905561181e565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611859929190612444565b60405180910390a25050505050565b600081600160201b84106111925760405162461bcd60e51b815260040161064291906122e0565b604080518082019091526000808252602082015290565b8035610495816124ec565b803561049581612500565b803561049581612509565b803561049581612512565b6000602082840312156118e457600080fd5b60006118f084846118a6565b949350505050565b6000806040838503121561190b57600080fd5b600061191785856118a6565b9250506020611928858286016118a6565b9150509250929050565b60008060006060848603121561194757600080fd5b600061195386866118a6565b9350506020611964868287016118a6565b9250506040611975868287016118b1565b9150509250925092565b600080600080600080600060e0888a03121561199a57600080fd5b60006119a68a8a6118a6565b97505060206119b78a828b016118a6565b96505060406119c88a828b016118b1565b95505060606119d98a828b016118b1565b94505060806119ea8a828b016118c7565b93505060a06119fb8a828b016118b1565b92505060c0611a0c8a828b016118b1565b91505092959891949750929550565b60008060408385031215611a2e57600080fd5b6000611a3a85856118a6565b9250506020611928858286016118b1565b60008060008060008060c08789031215611a6457600080fd5b6000611a7089896118a6565b9650506020611a8189828a016118b1565b9550506040611a9289828a016118b1565b9450506060611aa389828a016118c7565b9350506080611ab489828a016118b1565b92505060a0611ac589828a016118b1565b9150509295509295509295565b60008060408385031215611ae557600080fd5b6000611af185856118a6565b9250506020611928858286016118bc565b611b0b81612471565b82525050565b611b0b8161247c565b611b0b81612481565b611b0b611b2f82612481565b612481565b6000611b3f8261245f565b611b498185612463565b9350611b598185602086016124b6565b611b62816124e2565b9093019392505050565b6000611b7960028361246c565b61190160f01b815260020192915050565b6000611b97601b83612463565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611bd0603d83612463565b7f4572703a3a7365744d696e7465723a206f6e6c7920746865206d696e7465722081527f63616e206368616e676520746865206d696e7465722061646472657373000000602082015260400192915050565b6000611c2f603983612463565b7f4572703a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e7366657220746f20746865207a65726f206164647265737300000000000000602082015260400192915050565b6000611c8e602183612463565b7f4572703a3a64656c656761746542795369673a20696e76616c6964206e6f6e638152606560f81b602082015260400192915050565b6000611cd1601e83612463565b7f4572703a3a7065726d69743a20696e76616c6964207369676e61747572650000815260200192915050565b6000611d0a602683612463565b7f4572703a3a6765745072696f72566f7465733a206e6f742079657420646574658152651c9b5a5b995960d21b602082015260400192915050565b6000611d5260528361246c565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520192915050565b6000611dcc602383612463565b7f4572703a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206d8152621a5b9d60ea1b602082015260400192915050565b6000611e11601983612463565b7f4572703a3a7065726d69743a20756e617574686f72697a656400000000000000815260200192915050565b6000611e4a60438361246c565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611eb5602183612463565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b6000611ef8602583612463565b7f4572703a3a64656c656761746542795369673a20696e76616c6964207369676e815264617475726560d81b602082015260400192915050565b6000611f3f602e83612463565b7f4572703a3a6d696e743a2063616e6e6f74207472616e7366657220746f20746881526d65207a65726f206164647265737360901b602082015260400192915050565b6000611f8f602583612463565b7f4572703a3a64656c656761746542795369673a207369676e61747572652065788152641c1a5c995960da1b602082015260400192915050565b6000611fd6601c83612463565b7f4572703a3a6d696e743a206578636565646564206d696e742063617000000000815260200192915050565b600061200f602283612463565b7f4572703a3a6d696e743a206d696e74696e67206e6f7420616c6c6f7765642079815261195d60f21b602082015260400192915050565b6000612053603b83612463565b7f4572703a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e736665722066726f6d20746865207a65726f20616464726573730000000000602082015260400192915050565b60006120b2601e83612463565b7f4572703a3a7065726d69743a207369676e617475726520657870697265640000815260200192915050565b60006120eb603a8361246c565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b611b0b81612490565b611b0b81612499565b611b0b816124ab565b611b0b8161249f565b600061216c82611b6c565b91506121788285611b23565b6020820191506121888284611b23565b5060200192915050565b600061049582611d45565b600061049582611e3d565b6000610495826120de565b602081016104958284611b02565b604081016121cf8285611b02565b6105fa6020830184611b02565b602081016104958284611b11565b602081016104958284611b1a565b60c081016122068289611b1a565b6122136020830188611b02565b6122206040830187611b02565b61222d6060830186611b1a565b61223a6080830185611b1a565b61224760a0830184611b1a565b979650505050505050565b608081016122608287611b1a565b61226d6020830186611b02565b61227a6040830185611b1a565b6122876060830184611b1a565b95945050505050565b6080810161229e8287611b1a565b6122ab6020830186611b1a565b6122b86040830185611b1a565b6122876060830184611b02565b608081016122d38287611b1a565b61226d6020830186612146565b602080825281016105fa8184611b34565b6020808252810161049581611b8a565b6020808252810161049581611bc3565b6020808252810161049581611c22565b6020808252810161049581611c81565b6020808252810161049581611cc4565b6020808252810161049581611cfd565b6020808252810161049581611dbf565b6020808252810161049581611e04565b6020808252810161049581611ea8565b6020808252810161049581611eeb565b6020808252810161049581611f32565b6020808252810161049581611f82565b6020808252810161049581611fc9565b6020808252810161049581612002565b6020808252810161049581612046565b60208082528101610495816120a5565b60208101610495828461213d565b6040810161240d828561213d565b6105fa6020830184612158565b602081016104958284612146565b60208101610495828461214f565b602081016104958284612158565b60408101612452828561214f565b6105fa602083018461214f565b5190565b90815260200190565b919050565b600061049582612484565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b60006104958261249f565b60005b838110156124d15781810151838201526020016124b9565b838111156116725750506000910152565b601f01601f191690565b6124f581612471565b811461086057600080fd5b6124f581612481565b6124f581612490565b6124f58161249956fe4572703a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63654572703a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734572703a3a617070726f76653a20616d6f756e74206578636565647320393620626974734572703a3a7472616e736665723a20616d6f756e74206578636565647320393620626974734572703a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734572703a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734572703a3a6d696e743a20616d6f756e74206578636565647320393620626974734572703a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654572703a3a7065726d69743a20616d6f756e74206578636565647320393620626974734572703a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f77734572703a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77734572703a3a6d696e743a20746f74616c537570706c7920657863656564732039362062697473a365627a7a72315820462bb0220f0824957a70b89374ef2f1e580ec6dca46989a1a401230a22ddba5f6c6578706572696d656e74616cf564736f6c63430005100040000000000000000000000000d4672df58df081b8342baf0386d4fc45660f47db000000000000000000000000d4672df58df081b8342baf0386d4fc45660f47db000000000000000000000000000000000000000000000000000000006348a680

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461035b578063e7a324dc1461036e578063f1127ed814610376578063fca3b5aa14610397576101a9565b8063b4b5ea5714610322578063c3cda52014610335578063d505accf14610348576101a9565b8063782d6fe1116100d3578063782d6fe1146102d45780637ecebe00146102f457806395d89b4114610307578063a9059cbb1461030f576101a9565b80636fcfff45146102a657806370a08231146102b957806376c71ca1146102cc576101a9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610256578063587cde1e1461026b5780635c11d62f1461027e5780635c19a95c14610293576101a9565b806330adf81f1461023157806330b36cef14610239578063313ce56714610241576101a9565b806306fdde03146101ae57806307546172146101cc578063095ea7b3146101e157806318160ddd1461020157806320606b701461021657806323b872dd1461021e575b600080fd5b6101b66103aa565b6040516101c391906122e0565b60405180910390f35b6101d46103cd565b6040516101c391906121b3565b6101f46101ef366004611a1b565b6103dc565b6040516101c391906121dc565b61020961049b565b6040516101c391906121ea565b6102096104a1565b6101f461022c366004611932565b6104b8565b610209610601565b61020961060d565b610249610613565b6040516101c3919061241a565b610269610264366004611a1b565b610618565b005b6101d46102793660046118d2565b610833565b61028661084e565b6040516101c391906123f1565b6102696102a13660046118d2565b610856565b6102866102b43660046118d2565b610863565b6102096102c73660046118d2565b61087b565b61024961089f565b6102e76102e2366004611a1b565b6108a4565b6040516101c39190612436565b6102096103023660046118d2565b610ab2565b6101b6610ac4565b6101f461031d366004611a1b565b610ae3565b6102e76103303660046118d2565b610b1f565b610269610343366004611a4b565b610b8f565b61026961035636600461197f565b610d78565b6102096103693660046118f8565b611063565b610209611097565b610389610384366004611ad2565b6110a3565b6040516101c39291906123ff565b6102696103a53660046118d2565b6110d8565b60405180604001604052806007815260200166456e74726f707960c81b81525081565b6001546001600160a01b031681565b6000806000198314156103f25750600019610417565b6104148360405180606001604052806024815260200161258b6024913961116b565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610487908590612428565b60405180910390a360019150505b92915050565b60005481565b6040516104ad9061219d565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602480845291936001600160601b03909116928592610510928892919061258b9083013961116b565b9050866001600160a01b0316836001600160a01b03161415801561053d57506001600160601b0382811614155b156105e757600061056783836040518060600160405280603c815260200161251c603c913961119a565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105dd908590612428565b60405180910390a3505b6105f28787836111d9565b600193505050505b9392505050565b6040516104ad90612192565b60025481565b601281565b6001546001600160a01b0316331461064b5760405162461bcd60e51b815260040161064290612351565b60405180910390fd5b60025442101561066d5760405162461bcd60e51b8152600401610642906123c1565b6001600160a01b0382166106935760405162461bcd60e51b815260040161064290612391565b6106a1426301e1338061137f565b60028190555060006106cb826040518060600160405280602181526020016126216021913961116b565b90506106e76106e0600054600260ff166113a4565b60646113de565b816001600160601b0316111561070f5760405162461bcd60e51b8152600401610642906123b1565b610745610727600054836001600160601b031661137f565b6040518060600160405280602681526020016126ed6026913961116b565b6001600160601b0390811660009081556001600160a01b038516815260046020908152604091829020548251606081019093526024808452610797949190911692859290919061269a90830139611420565b6001600160a01b03841660008181526004602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610801908590612428565b60405180910390a36001600160a01b0380841660009081526005602052604081205461082e92168361145c565b505050565b6005602052600090815260409020546001600160a01b031681565b6301e1338081565b61086033826115ee565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b600281565b60004382106108c55760405162461bcd60e51b815260040161064290612341565b6001600160a01b03831660009081526007602052604090205463ffffffff16806108f3576000915050610495565b6001600160a01b038416600090815260066020908152604080832063ffffffff60001986018116855292529091205416831061096f576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610495565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff168310156109aa576000915050610495565b600060001982015b8163ffffffff168163ffffffff161115610a6d57600282820363ffffffff160481036109dc61188f565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a48576020015194506104959350505050565b805163ffffffff16871115610a5f57819350610a66565b6001820392505b50506109b2565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b6040518060400160405280600381526020016204552560ec1b81525081565b600080610b08836040518060600160405280602581526020016125af6025913961116b565b9050610b153385836111d9565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610b4a5760006105fa565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610b9d9061219d565b604080519182900382208282019091526007825266456e74726f707960c81b6020909201919091527f4fd30fa237c7841677b3caf986ec33fa38eb73273c63c6e43333a4c05d99bc6c610bee611678565b30604051602001610c029493929190612290565b6040516020818303038152906040528051906020012090506000604051610c28906121a8565b604051908190038120610c43918a908a908a90602001612252565b60405160208183030381529060405280519060200120905060008282604051602001610c70929190612161565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cad94939291906122c5565b6020604051602081039080840390855afa158015610ccf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d025760405162461bcd60e51b815260040161064290612381565b6001600160a01b03811660009081526008602052604090208054600181019091558914610d415760405162461bcd60e51b815260040161064290612321565b87421115610d615760405162461bcd60e51b8152600401610642906123a1565b610d6b818b6115ee565b505050505b505050505050565b6000600019861415610d8d5750600019610db2565b610daf866040518060600160405280602381526020016126776023913961116b565b90505b6000604051610dc09061219d565b604080519182900382208282019091526007825266456e74726f707960c81b6020909201919091527f4fd30fa237c7841677b3caf986ec33fa38eb73273c63c6e43333a4c05d99bc6c610e11611678565b30604051602001610e259493929190612290565b6040516020818303038152906040528051906020012090506000604051610e4b90612192565b604080519182900382206001600160a01b038d16600090815260086020908152929020805460018101909155610e8d9391928e928e928e9290918e91016121f8565b60405160208183030381529060405280519060200120905060008282604051602001610eba929190612161565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610ef794939291906122c5565b6020604051602081039080840390855afa158015610f19573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f4c5760405162461bcd60e51b815260040161064290612331565b8b6001600160a01b0316816001600160a01b031614610f7d5760405162461bcd60e51b815260040161064290612361565b88421115610f9d5760405162461bcd60e51b8152600401610642906123e1565b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258760405161104d9190612428565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104ad906121a8565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146111025760405162461bcd60e51b815260040161064290612301565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f691611141916001600160a01b039091169084906121c1565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b84106111925760405162461bcd60e51b815260040161064291906122e0565b509192915050565b6000836001600160601b0316836001600160601b0316111582906111d15760405162461bcd60e51b815260040161064291906122e0565b505050900390565b6001600160a01b0383166111ff5760405162461bcd60e51b8152600401610642906123d1565b6001600160a01b0382166112255760405162461bcd60e51b815260040161064290612311565b6001600160a01b038316600090815260046020908152604091829020548251606081019093526035808452611270936001600160601b0390921692859291906126429083013961119a565b6001600160a01b03848116600090815260046020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352602f8084526112d894919091169285929091906126be90830139611420565b6001600160a01b038381166000818152600460205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611345908590612428565b60405180910390a36001600160a01b0380841660009081526005602052604080822054858416835291205461082e9291821691168361145c565b6000828201838110156105fa5760405162461bcd60e51b8152600401610642906122f1565b6000826113b357506000610495565b828202828482816113c057fe5b04146105fa5760405162461bcd60e51b815260040161064290612371565b60006105fa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061167c565b6000838301826001600160601b0380871690831610156114535760405162461bcd60e51b815260040161064291906122e0565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561148757506000816001600160601b0316115b1561082e576001600160a01b0383161561153f576001600160a01b03831660009081526007602052604081205463ffffffff1690816114c7576000611506565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061152d82856040518060600160405280602781526020016125fa6027913961119a565b905061153b868484846116b3565b5050505b6001600160a01b0382161561082e576001600160a01b03821660009081526007602052604081205463ffffffff16908161157a5760006115b9565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006115e082856040518060600160405280602681526020016125d460269139611420565b9050610d70858484846116b3565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461167282848361145c565b50505050565b4690565b6000818361169d5760405162461bcd60e51b815260040161064291906122e0565b5060008385816116a957fe5b0495945050505050565b60006116d74360405180606001604052806033815260200161255860339139611868565b905060008463ffffffff1611801561172057506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561177f576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b0385160217905561181e565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611859929190612444565b60405180910390a25050505050565b600081600160201b84106111925760405162461bcd60e51b815260040161064291906122e0565b604080518082019091526000808252602082015290565b8035610495816124ec565b803561049581612500565b803561049581612509565b803561049581612512565b6000602082840312156118e457600080fd5b60006118f084846118a6565b949350505050565b6000806040838503121561190b57600080fd5b600061191785856118a6565b9250506020611928858286016118a6565b9150509250929050565b60008060006060848603121561194757600080fd5b600061195386866118a6565b9350506020611964868287016118a6565b9250506040611975868287016118b1565b9150509250925092565b600080600080600080600060e0888a03121561199a57600080fd5b60006119a68a8a6118a6565b97505060206119b78a828b016118a6565b96505060406119c88a828b016118b1565b95505060606119d98a828b016118b1565b94505060806119ea8a828b016118c7565b93505060a06119fb8a828b016118b1565b92505060c0611a0c8a828b016118b1565b91505092959891949750929550565b60008060408385031215611a2e57600080fd5b6000611a3a85856118a6565b9250506020611928858286016118b1565b60008060008060008060c08789031215611a6457600080fd5b6000611a7089896118a6565b9650506020611a8189828a016118b1565b9550506040611a9289828a016118b1565b9450506060611aa389828a016118c7565b9350506080611ab489828a016118b1565b92505060a0611ac589828a016118b1565b9150509295509295509295565b60008060408385031215611ae557600080fd5b6000611af185856118a6565b9250506020611928858286016118bc565b611b0b81612471565b82525050565b611b0b8161247c565b611b0b81612481565b611b0b611b2f82612481565b612481565b6000611b3f8261245f565b611b498185612463565b9350611b598185602086016124b6565b611b62816124e2565b9093019392505050565b6000611b7960028361246c565b61190160f01b815260020192915050565b6000611b97601b83612463565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611bd0603d83612463565b7f4572703a3a7365744d696e7465723a206f6e6c7920746865206d696e7465722081527f63616e206368616e676520746865206d696e7465722061646472657373000000602082015260400192915050565b6000611c2f603983612463565b7f4572703a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e7366657220746f20746865207a65726f206164647265737300000000000000602082015260400192915050565b6000611c8e602183612463565b7f4572703a3a64656c656761746542795369673a20696e76616c6964206e6f6e638152606560f81b602082015260400192915050565b6000611cd1601e83612463565b7f4572703a3a7065726d69743a20696e76616c6964207369676e61747572650000815260200192915050565b6000611d0a602683612463565b7f4572703a3a6765745072696f72566f7465733a206e6f742079657420646574658152651c9b5a5b995960d21b602082015260400192915050565b6000611d5260528361246c565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520192915050565b6000611dcc602383612463565b7f4572703a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206d8152621a5b9d60ea1b602082015260400192915050565b6000611e11601983612463565b7f4572703a3a7065726d69743a20756e617574686f72697a656400000000000000815260200192915050565b6000611e4a60438361246c565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611eb5602183612463565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b6000611ef8602583612463565b7f4572703a3a64656c656761746542795369673a20696e76616c6964207369676e815264617475726560d81b602082015260400192915050565b6000611f3f602e83612463565b7f4572703a3a6d696e743a2063616e6e6f74207472616e7366657220746f20746881526d65207a65726f206164647265737360901b602082015260400192915050565b6000611f8f602583612463565b7f4572703a3a64656c656761746542795369673a207369676e61747572652065788152641c1a5c995960da1b602082015260400192915050565b6000611fd6601c83612463565b7f4572703a3a6d696e743a206578636565646564206d696e742063617000000000815260200192915050565b600061200f602283612463565b7f4572703a3a6d696e743a206d696e74696e67206e6f7420616c6c6f7765642079815261195d60f21b602082015260400192915050565b6000612053603b83612463565b7f4572703a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e736665722066726f6d20746865207a65726f20616464726573730000000000602082015260400192915050565b60006120b2601e83612463565b7f4572703a3a7065726d69743a207369676e617475726520657870697265640000815260200192915050565b60006120eb603a8361246c565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b611b0b81612490565b611b0b81612499565b611b0b816124ab565b611b0b8161249f565b600061216c82611b6c565b91506121788285611b23565b6020820191506121888284611b23565b5060200192915050565b600061049582611d45565b600061049582611e3d565b6000610495826120de565b602081016104958284611b02565b604081016121cf8285611b02565b6105fa6020830184611b02565b602081016104958284611b11565b602081016104958284611b1a565b60c081016122068289611b1a565b6122136020830188611b02565b6122206040830187611b02565b61222d6060830186611b1a565b61223a6080830185611b1a565b61224760a0830184611b1a565b979650505050505050565b608081016122608287611b1a565b61226d6020830186611b02565b61227a6040830185611b1a565b6122876060830184611b1a565b95945050505050565b6080810161229e8287611b1a565b6122ab6020830186611b1a565b6122b86040830185611b1a565b6122876060830184611b02565b608081016122d38287611b1a565b61226d6020830186612146565b602080825281016105fa8184611b34565b6020808252810161049581611b8a565b6020808252810161049581611bc3565b6020808252810161049581611c22565b6020808252810161049581611c81565b6020808252810161049581611cc4565b6020808252810161049581611cfd565b6020808252810161049581611dbf565b6020808252810161049581611e04565b6020808252810161049581611ea8565b6020808252810161049581611eeb565b6020808252810161049581611f32565b6020808252810161049581611f82565b6020808252810161049581611fc9565b6020808252810161049581612002565b6020808252810161049581612046565b60208082528101610495816120a5565b60208101610495828461213d565b6040810161240d828561213d565b6105fa6020830184612158565b602081016104958284612146565b60208101610495828461214f565b602081016104958284612158565b60408101612452828561214f565b6105fa602083018461214f565b5190565b90815260200190565b919050565b600061049582612484565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b60006104958261249f565b60005b838110156124d15781810151838201526020016124b9565b838111156116725750506000910152565b601f01601f191690565b6124f581612471565b811461086057600080fd5b6124f581612481565b6124f581612490565b6124f58161249956fe4572703a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63654572703a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734572703a3a617070726f76653a20616d6f756e74206578636565647320393620626974734572703a3a7472616e736665723a20616d6f756e74206578636565647320393620626974734572703a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734572703a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734572703a3a6d696e743a20616d6f756e74206578636565647320393620626974734572703a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654572703a3a7065726d69743a20616d6f756e74206578636565647320393620626974734572703a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f77734572703a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77734572703a3a6d696e743a20746f74616c537570706c7920657863656564732039362062697473a365627a7a72315820462bb0220f0824957a70b89374ef2f1e580ec6dca46989a1a401230a22ddba5f6c6578706572696d656e74616cf564736f6c63430005100040

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

000000000000000000000000d4672df58df081b8342baf0386d4fc45660f47db000000000000000000000000d4672df58df081b8342baf0386d4fc45660f47db000000000000000000000000000000000000000000000000000000006348a680

-----Decoded View---------------
Arg [0] : account (address): 0xD4672DF58DF081b8342BAF0386d4fC45660F47dB
Arg [1] : minter_ (address): 0xD4672DF58DF081b8342BAF0386d4fC45660F47dB
Arg [2] : mintingAllowedAfter_ (uint256): 1665705600

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000d4672df58df081b8342baf0386d4fc45660f47db
Arg [1] : 000000000000000000000000d4672df58df081b8342baf0386d4fc45660f47db
Arg [2] : 000000000000000000000000000000000000000000000000000000006348a680


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.